Layers

Learn about what layers are, how you can name them, and the different types of layers that are present.

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 ...

Access this course and 1400+ top-rated courses and projects.