vault backup: 2023-05-15 15:42:00

This commit is contained in:
2023-05-15 15:42:00 +08:00
parent 189b28869c
commit 9a966b4509
2 changed files with 18 additions and 7 deletions

View File

@@ -53,8 +53,8 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md", "file": "04. Programming/Machine Learning.md",
"mode": "source", "mode": "preview",
"source": true "source": true
} }
} }
@@ -89,7 +89,7 @@
"state": { "state": {
"type": "search", "type": "search",
"state": { "state": {
"query": "matplot", "query": "mach",
"matchingCase": false, "matchingCase": false,
"explainSearch": false, "explainSearch": false,
"collapseAll": false, "collapseAll": false,
@@ -126,7 +126,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md", "file": "04. Programming/Machine Learning.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -151,7 +151,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md" "file": "04. Programming/Machine Learning.md"
} }
} }
}, },
@@ -204,10 +204,11 @@
}, },
"active": "1f1e98d771d9e088", "active": "1f1e98d771d9e088",
"lastOpenFiles": [ "lastOpenFiles": [
"05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"04. Programming/Machine Learning.md",
"05. 資料收集/核心肌群訓練.md", "05. 資料收集/核心肌群訓練.md",
"05. 資料收集/Capture One.md", "05. 資料收集/Capture One.md",
"05. 資料收集/AI.md", "05. 資料收集/AI.md",
"05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"00. Inbox/My Mindmap.canvas", "00. Inbox/My Mindmap.canvas",
"05. 資料收集/讀書筆記/20230418 - 窮人的經濟學.md", "05. 資料收集/讀書筆記/20230418 - 窮人的經濟學.md",
"01. 個人/00. Informations/Datas.md", "01. 個人/00. Informations/Datas.md",
@@ -232,7 +233,6 @@
"02. 工作/01. Logitech/AE Team.md", "02. 工作/01. Logitech/AE Team.md",
"05. 資料收集/讀書筆記/20201201 - 學習如何學習.md", "05. 資料收集/讀書筆記/20201201 - 學習如何學習.md",
"05. 資料收集/讀書筆記/20201224 - 寫作是最好的自我投資.md", "05. 資料收集/讀書筆記/20201224 - 寫作是最好的自我投資.md",
"05. 資料收集/讀書筆記/20210723 - 高手學習.md",
"00. Inbox/想要的鏡頭/變焦", "00. Inbox/想要的鏡頭/變焦",
"00. Inbox/想要的鏡頭/定焦", "00. Inbox/想要的鏡頭/定焦",
"00. Inbox/想要的鏡頭", "00. Inbox/想要的鏡頭",

View File

@@ -0,0 +1,11 @@
## 問題分類
| 問題類型 | 啟動函數 | 損失函數 |
|:-----------:|:--------:|:--------------------------------------:|
| 二元分類 | sigmoid | binary_crossentropy二元交叉熵 |
| 多元分類 | softmax | categorical_crossentropy分類交叉熵 |
| 多標籤分類 | sigmoid | binary_crossentropy |
| 回歸求值 | None | mse均方誤差 |
| 回歸求0~1值 | sigmoid | mse或binary_crossentropy |