All Versions
2
Latest Version
Avg Release Cycle
58 days
Latest Release
766 days ago
Changelog History
Changelog History
-
v0.2.0 Changes
August 13, 2022โจ Enhancements
- โ Add support for optional inputs
- โ Add support for non-finite float metrics
- โ Add support for containers as inputs
- ๐ Allow custom activation functions in
Axon.activation
- โ Add utilities for debugging model execution
- โ Add graph manipulation API
- โ Add lazy model compilation in the form of
Axon.build
andAxon.compile
. Lazy model compilation removes eager shape calculations in favor of forcing initialization functions to accept an input template. This allows the creation of more complex models without needing to know complex shape logic - Add
top_k_categorical_accuracy
metric - โก๏ธ Update default model inspection
- โ Add
Axon.Display.as_table/2
- โ Add support for stateful learning rate in optimizers
- Add
Axon.Loop.reduce_lr_on_plateau
event handler - โก๏ธ Update RNN output format to mirror Elixir's convention
๐ Bug Fixes
- ๐ Fix bug in
Axon.resize
methods. Methods other than nearest produced invalid results - Fix bug with
feature_group_size
inAxon.conv
.Axon.conv
parameters did not appropriately initialize according to specifiedfeature_group_size
- ๐ Fix bug in layer name serialization.
Axon.serialize
did not appropriately freeze names when serializing, which results in deserialization failures when the model is deserialized outside the same process that serialized it
๐ Deprecations
- ๐ Deprecate
Axon.input/3
- ๐ Deprecate
Axon.init/4
- ๐ Deprecate
Axon.Recurrent
-
v0.1.0 Changes
June 16, 2022๐ First release.