Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarciae committed Jul 24, 2020
1 parent 253325d commit dd96004
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog

## [0.1.4] - 2020-07-24
* 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`.

## [0.1.3] - 2020-07-22
* Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ To cite this project:
author = {PoetsAI},
title = {Elegy: A Keras-like deep learning framework based on Jax & Haiku},
url = {https://github.com/poets-ai/elegy},
version = {0.1.3},
version = {0.1.4},
year = {2020},
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ To cite this project:
author = {PoetsAI},
title = {Elegy: A Keras-like deep learning framework based on Jax & Haiku},
url = {https://github.com/poets-ai/elegy},
version = {0.1.3},
version = {0.1.4},
year = {2020},
}
```
Expand Down
2 changes: 1 addition & 1 deletion elegy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.3"
__version__ = "0.1.4"

from . import callbacks, losses, metrics, model, nn, regularizers
from .losses import Loss
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Cristian Garcia <[email protected]>",
"Carlos Alvarez <[email protected]>",
"David Cardozo <[email protected]>",
"Sebastian Arango"]
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = "^3.6.1"
Expand Down

0 comments on commit dd96004

Please sign in to comment.