Base¶
This section contains information about the necessary tools for creating and training your neural network.
Modules¶
The main blocks of artificial neural networks, or rather layers. To get started with them, click here.
Containers¶
Containers within this library are modules that allow you to establish a relationship between the layers of the neural network. Roughly speaking, containers are engaged in connecting various blocks into a single network. To get started with them, click here.
Optimizers¶
Optimizers are responsible for minimizing the loss function, which is how the network is trained. To get started with them, click here.
Cost¶
Loss functions which task is displaying the difference between predicted and actual values. To get started with them, click here.
Handlers¶
Something that will help in training. To get started with this section, here.