Skip to content

Releases: poets-ai/elegy

0.6.0

14 Feb 21:41
Compare
Choose a tag to compare

Merged pull requests:

  • More Steps: adds additional *_step methods #163 (cgarciae)
  • Better error message on elegy.States attribute access miss #162 (alexander-g)
  • Improve Docs: adds more docs + an example using pmap to distribute trianing #156 (cgarciae)
  • WGAN-GP low-level API example #157 (alexander-g)

0.5.0

08 Feb 17:42
Compare
Choose a tag to compare

This version simplifies parts of the low-level API in spirit of what was introduced in 0.4.0 to provide a more homogeneous and simpler experience.

Merged pull requests:

  • Improve States: uses __dict__ so States works with vars #159 (cgarciae)
  • Simplify API: Cleans-up some API details around Model and Module #158 (cgarciae)

0.4.1

03 Feb 17:46
Compare
Choose a tag to compare

Merged pull requests:

0.4.0

01 Feb 23:15
e8f4884
Compare
Choose a tag to compare

Implemented enhancements:

  • [Feature Request] Monitoring learning rates #124

Merged pull requests:

0.3.0

17 Dec 15:44
Compare
Choose a tag to compare

Implemented enhancements:

  • elegy.nn.Sequential docs not clear #107
  • [Feature Request] Community example repo. #98

Fixed bugs:

  • [Bug] Accuracy from Model.evaluate() is inconsistent with manually computed accuracy #109
  • Exceptions in "Getting Started" colab notebook #104

Closed issues:

  • l2_normalize #102
  • Need some help for contributing new losses. #93
  • Document Sum #62
  • Binary Accuracy Metric #58
  • Automate generation of API Reference folder structure #19
  • Implement Model.summary #3

Merged pull requests:

0.2.2

31 Aug 18:16
Compare
Choose a tag to compare
  • Fixes metrics.BinaryAccuracy and losses.BinaryCrossentropy

0.2.1

25 Aug 22:20
Compare
Choose a tag to compare
  • Uses optax instead of optix.
  • Implements BinaryAccuracy.

0.2.0

17 Aug 20:12
9a0b5b5
Compare
Choose a tag to compare
  • Big refactor. Elegy has its own Module system independent of Haiku and its now incompatible with it. #85

0.1.5

28 Jul 20:36
Compare
Choose a tag to compare
  • Mean Absolute Percentage Error Implementation @Ciroye
  • Adds elegy.nn.Linear, elegy.nn.Conv2D, elegy.nn.Flatten, elegy.nn.Sequential @cgarciae
  • Add Elegy hooks @cgarciae
  • Improves Tensorboard support @Davidnet
  • Added coverage metrics to CI @charlielito

0.1.4

24 Jul 17:18
Compare
Choose a tag to compare
  • Adds elegy.metrics.BinaryCrossentropy @sebasarango1180
  • Adds elegy.nn.Dropout and elegy.nn.BatchNormalization @cgarciae
  • Improves documentation
  • Fixes bug that cause error when using is_training via dependency injection on Model.predict.