vault backup: 2024-04-01 14:58:05

This commit is contained in:
2024-04-01 14:58:05 +08:00
parent 35c23549d8
commit 789a6d58fc
5 changed files with 11 additions and 15 deletions

2
.obsidian/app.json vendored
View File

@@ -1,7 +1,7 @@
{ {
"promptDelete": false, "promptDelete": false,
"newLinkFormat": "relative", "newLinkFormat": "relative",
"attachmentFolderPath": "./assets/数组", "attachmentFolderPath": "./assets/基础概念",
"showUnsupportedFiles": false, "showUnsupportedFiles": false,
"newFileLocation": "current", "newFileLocation": "current",
"useMarkdownLinks": true, "useMarkdownLinks": true,

View File

@@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Books/代码随想录/数组.md", "file": "Books/动手学深度学习/基础概念.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@@ -77,8 +77,7 @@
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 315.5, "width": 315.5
"collapsed": true
}, },
"right": { "right": {
"id": "c501495747cfa761", "id": "c501495747cfa761",
@@ -94,7 +93,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Books/代码随想录/数组.md", "file": "Books/动手学深度学习/基础概念.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -111,7 +110,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Books/代码随想录/数组.md", "file": "Books/动手学深度学习/基础概念.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@@ -134,7 +133,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Books/代码随想录/数组.md" "file": "Books/动手学深度学习/基础概念.md"
} }
} }
}, },
@@ -165,12 +164,14 @@
"notion-like-tables:Create loom": false "notion-like-tables:Create loom": false
} }
}, },
"active": "768c7ad67bbbb63e", "active": "37c3469d51811935",
"lastOpenFiles": [ "lastOpenFiles": [
"Books/动手学深度学习/引言.md",
"Study/DL/动手学深度学习/预备知识.md",
"Books/动手学深度学习/基础概念.md",
"Books/代码随想录/数组.md", "Books/代码随想录/数组.md",
"Books/代码随想录", "Books/代码随想录",
"Books/Untitled.md", "Books/Untitled.md",
"Study/DL/动手学深度学习/预备知识.md",
"Paper/Diffusion/Diffusion Models A Comprehensive Survey of Methods and Applications.md", "Paper/Diffusion/Diffusion Models A Comprehensive Survey of Methods and Applications.md",
"Study/DL/动手学深度学习", "Study/DL/动手学深度学习",
"Paper/Untitled.md", "Paper/Untitled.md",
@@ -179,8 +180,6 @@
"Paper/CLIP/Open-Vocabulary Semantic Segmentation.md", "Paper/CLIP/Open-Vocabulary Semantic Segmentation.md",
"Paper/CLIP/Learning Transferable Visual Models From Natural Language Supervision.md", "Paper/CLIP/Learning Transferable Visual Models From Natural Language Supervision.md",
"Paper/CLIP", "Paper/CLIP",
"Books/动手学深度学习/引言.md",
"Books/动手学深度学习/基础概念.md",
"Paper/Open-Vocabulary Semantic Segmentation.md", "Paper/Open-Vocabulary Semantic Segmentation.md",
"liangOpenVocabularySemanticSegmentation2023.md", "liangOpenVocabularySemanticSegmentation2023.md",
"Paper/未命名.md", "Paper/未命名.md",

View File

@@ -11,3 +11,4 @@ $L(\mathbf{w}, b) = \frac1n\sum_{i=1}^{n} l^i(\mathbf{x}, b)$
$(\mathbf{w}, b) <- (\mathbf{w},b) - \frac{\eta}{|B|} \sum_{i\in{B}}\partial_{(\mathbf{w}, b)}l^i(\mathbf{w},b)$ $(\mathbf{w}, b) <- (\mathbf{w},b) - \frac{\eta}{|B|} \sum_{i\in{B}}\partial_{(\mathbf{w}, b)}l^i(\mathbf{w},b)$
其中$\eta$代表学习率 其中$\eta$代表学习率
# 激活函数 # 激活函数
在MLP中由于多个线性层叠加最终的结果和单层感知机并无区别加入激活函数后可以破坏这种线性叠加。

View File

@@ -1,4 +0,0 @@
# 矩阵计算
| $y$ | $a$ | $au$ | sum(x) | |
| ---- | ---- | ---- | ---- | ---- |
| $\frac{\partial y}{\partial \mathbf x}$ | $0^T$ | $a \frac{\partial u}{\partial \mathbf x}$ | $1^T$ | |