-
Notifications
You must be signed in to change notification settings - Fork 0
Layer
yaitaissa edited this page Aug 29, 2024
·
2 revisions
Layer
objects are the main objects of the framework.
Inside ACETONE, the neural network is represented by a list of Layer
objects, each of then having links to their predecessor(s) and descendant(s).
Most of the layers presented in this Wiki takes as input and returns a 4D tensor of size
However, the first dimension is always supposed to be a Batch dimension, not used in the framework. Thus, for simplicity, unless stated otherwise, the first dimension will implied in the notation.
Example:
Let T be a 4D tensor of size
For