Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jizhang02 committed Sep 4, 2024
1 parent 39acea8 commit 9012f17
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions deep_learning_from_scratch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@
"A first look at neural network diagram \n",
"![A neural network](./figures/dlscratch_nn.png) \n",
"Review a perceptron: \n",
"![A perceptron](./figures/dlscratch_perceptronbias.png) $\n",
"![A perceptron](./figures/dlscratch_perceptronbias.png) \n",
"$\n",
"y = \n",
"\\begin{cases} \n",
"0 & (b+ w_1 x_1 + w_2 x_2 \\leq 0), \\\\\n",
Expand Down Expand Up @@ -437,13 +438,12 @@
"metadata": {},
"source": [
"### A 3-layer neural networks\n",
"\n",
"![From input to 1st layer](./figures/dlscratch_nn3layer1.png)\n",
"From input to 1st layer \n",
"![From 1st to 2nd layer](./figures/dlscratch_nn3layer2.png)\n",
"![From input to 1st layer](./figures/dlscratch_nn3layer1.png) \n",
"From 1st to 2nd layer \n",
"![From 2nd to output layer](./figures/dlscratch_nn3layer3.png)\n",
"From 2nd to output layer"
"![From 1st to 2nd layer](./figures/dlscratch_nn3layer2.png) \n",
"From 2nd to output layer \n",
"![From 2nd to output layer](./figures/dlscratch_nn3layer3.png)\n"
]
},
{
Expand Down Expand Up @@ -593,8 +593,6 @@
}
],
"source": [
"import sys, os\n",
"sys.path.append(os.pardir) # Settings for importing files from a parent directory\n",
"import numpy as np\n",
"from dataset.mnist import load_mnist\n",
"\n",
Expand Down Expand Up @@ -797,7 +795,7 @@
"metadata": {},
"source": [
"## Learning neural networks\n",
"The \"learning\" mentioned here refers to the process of automatically obtaining the optimal weight parameters from the training data.\n",
"The \"learning\" mentioned here refers to the process of automatically obtaining the optimal weight parameters from the training data. \n",
"![From human to machine learning to deep learning](./figures/dlscratch_humanmldl.png)"
]
},
Expand Down Expand Up @@ -918,8 +916,6 @@
}
],
"source": [
"import sys, os\n",
"sys.path.append(os.pardir)\n",
"import numpy as np\n",
"from dataset.mnist import load_mnist\n",
"\n",
Expand Down

0 comments on commit 9012f17

Please sign in to comment.