Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos in mnist.ipynb #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Part 4/model/mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
"In this notebook we'll be designing and creating a simple neural network to recognize handwritten numbers using the [MNIST](https://en.wikipedia.org/wiki/MNIST_database) dataset.\n",
"Neural networks are powerful computing systems which are vaguley inspired by the neurons in our brains!\n",
"\n",
"Neural networks are a sequence of matrix multiplications. So our goal in training one is to \"learn\" coefficients which make our network an accurate predictor of the data. However, there's a lot that goes into how we can best \"learn\" those coefficients, so we'll stick to a pretty simple implementation of a nerual net.\n",
"Neural networks are a sequence of matrix multiplications. So our goal in training one is to \"learn\" coefficients which make our network an accurate predictor of the data. However, there's a lot that goes into how we can best \"learn\" those coefficients, so we'll stick to a pretty simple implementation of a neural net.\n",
"\n",
"The contents of this notebook are a little outside of the scope of what our club does, but we'll do our best to give you a rundown of what the code does.\n",
"\n",
"We'll also have some links at the bottom if you're interested in reading more!\n",
"\n",
"## High Level Explanation\n",
"\n",
"Here's a pretty common visualization of how a neural network looks like:\n",
"Here's a pretty common visualization of how a neural network looks:\n",
"\n",
"![[Neural network visualization]()](https://i.ibb.co/mzCxfFH/nn.png)\n",
"\n",
Expand Down Expand Up @@ -82,7 +82,7 @@
"\n",
"## Setup\n",
"\n",
"We'll be using PyTorch to run our nerual network. Machine Learning requires a lot of disgusting math, so we want to use libraries to do the heavy lifting for us whenever possible.\n",
"We'll be using PyTorch to run our neural network. Machine Learning requires a lot of disgusting math, so we want to use libraries to do the heavy lifting for us whenever possible.\n",
"\n",
"[PyTorch](https://pytorch.org/) and [TensorFlow](https://www.tensorflow.org/) are both great libraries which make machine learning a lot easier to do. They provide high-level APIs for creating, training, and evaluating models. There's no strong case for why we use PyTorch here, but we do."
]
Expand Down Expand Up @@ -403,4 +403,4 @@
]
}
]
}
}