diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ac65af71..3c2b5f81f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## v0.1.4 +**New Stuff** +- Refactor Metric Reporters to reduce coupling +- RNNG Improvements: + - Support Pretrained embeddings in RNNG + - Support GPU Training + - More Test Coverage + - Tensorboard Support +- Added `QueryDocumentPairwiseRankingModel` +- Distributed Training Improvments: + - Sharded Data Loading to reduce memory consumption + - Fix Several issues with race conditions and unserializable state +- Reduced GPU memory Consumption by skipping gradient computation on evaluation + +*And lots of bug fixes* + +**Known Issues** +PyText doesn't work with the new ONNX v1.4.0, so we have pinned it to 1.3.0 for now + + +## v0.1.3 - Remove epoch_size param from DisjointMultitask, use target_task (or shortest) to set epoch_size ## v0.1.0 diff --git a/setup.py b/setup.py index 584ec6df7..333e301d5 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setuptools.setup( name="pytext-nlp", - version="0.1.3", + version="0.1.4", description="pytorch modeling framework and model zoo for text models", url="https://github.com/facebookresearch/PyText", author="Facebook",