Skip to content

Commit

Permalink
Changes to intro
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertDominguez authored Jul 23, 2024
1 parent bb72fa3 commit ca7bc31
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
</table>
</div>
In the following exercise we explore the basic building blocks of deep learning: the perceptron and how to stack multiple perceptrons together into layers to build a neural network. In particular, we will:
In the following exercise we will explore the basic building blocks of deep learning: the perceptron and how to stack multiple perceptrons together into layers to build a neural network. We will also introduce convolutional neural networks (CNNs) for image classification.
In particular, we will:
- Implement a perceptron and a 2-layer perceptron to compute the XOR function using NumPy.
- Be introduced to PyTorch, a popular deep learning framework.
- Implement and train a simple neural network to classify points in a 2D plane using PyTorch.
- Implement and train a simple convolutional neural network to classify hand-written digits from the MNIST dataset using PyTorch.
- Introduce PyTorch, a popular framework for deep learning.
- Implement and train a simple neural network (a multi-layer perceptron) to classify points in a 2D plane using PyTorch.
- Implement and train a simple deep convolutional neural network to classify hand-written digits from the MNIST dataset using PyTorch.
- Discuss important topics of ML/DL, such as data splitting, under/overfitting and model generalization.
<div class="alert alert-block alert-danger">
Expand Down

0 comments on commit ca7bc31

Please sign in to comment.