Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View xiongjiamu's full-sized avatar

XXM xiongjiamu

View GitHub Profile
# git clone
git clone https://github.com/Significant-Gravitas/Auto-GPT.git Auto-GPT
# move to the newly created folder
cd Auto-GPT
# fetch all recent commits and branches
git fetch
@xiongjiamu
xiongjiamu / default.custom.yaml
Created April 19, 2023 06:31 — forked from lewangdev/default.custom.yaml
雾凇拼音自定义配置,MacOS-like & Wechat-like Dark/Light Color Scheme For Rime
patch:
# 菜单
menu:
page_size: 8 # 候选词个数
# alternative_select_labels: [ ①, ②, ③, ④, ⑤, ⑥, ⑦, ⑧, ⑨, ⑩ ] # 修改候选项标签
# alternative_select_keys: ASDFGHJKL # 如编码字符占用数字键,则需另设选字键
# ascii_mode、inline、no_inline、vim_mode 等等设定,可参考 /Library/Input Methods/Squirrel.app/Contents/SharedSupport/squirrel.yaml
# 中西文切换
#
# 【good_old_caps_lock】 CapsLock 切换到大写或切换中英。

Contribution License Agreement

This Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”), and conveys certain license rights to Microsoft Corporation and its affiliates (“Microsoft”) for Your contributions to Microsoft open source projects. This Agreement is effective as of the latest signature date below.

Definitions. “Code” means the computer software code, whether in human-readable or machine-executable form, that is delivered by You to Microsoft under this Agreement. “Project” means any of the projects owned or managed by Microsoft and offered under a license approved by the Open Source Initiative (www.opensource.org). “Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any Project, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of discussing and improving that Project, b

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
朴素贝叶斯分类器的联合概率分布
$$
P(X,Y)=P(Y) \cdot P(X \mid Y) = P(X) \cdot P(Y \mid X)
$$
朴素贝叶斯分类器的数学表达式
$$
y = \operatorname*{arg\,max}_{c_k}P(y=c_k) \cdot \Pi_jP(X^{(j)}=x^{(j)} \mid Y =c_k)
$$