All layers are now split into separate files (dense.py, convolutional.py, pooling.py, etc.) that are gathered in a new folder layers/. Layers are still available through deel.lip.layers.xxx.
Some API changes:
activations can now be imported via module deel.lip.layers, e.g. deel.lip.layers.GroupSort for instance. Legacy import is still available (e.g. deel.lip.activations.GroupSort).
unconstrained layers must now be imported using module deel.lip.layers.unconstrained, e.g. deel.lip.layers.unconstrained.PadConv2D.
All layers are now split into separate files (
dense.py
,convolutional.py
,pooling.py
, etc.) that are gathered in a new folderlayers/
. Layers are still available throughdeel.lip.layers.xxx
.Some API changes:
deel.lip.layers
, e.g.deel.lip.layers.GroupSort
for instance. Legacy import is still available (e.g.deel.lip.activations.GroupSort
).deel.lip.layers.unconstrained
, e.g.deel.lip.layers.unconstrained.PadConv2D
.