Layers
Learn about what layers are, how you can name them, and the different types of layers that are present.
We'll cover the following...
We'll cover the following...
Introduction to layers
A Linear
model can be seen as a layer in a neural network.
In the example above, the hidden layer would be nn.Linear(3, 5)
(since it takes 3 inputs from the input layer, and generates 5 outputs), and the output layer would be nn.Linear(5, 1)
(since it takes 5 inputs, the outputs ...