Skip to content

Commit

Permalink
Release version v0.6.1.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 240836011
  • Loading branch information
cweill committed Mar 28, 2019
1 parent 93f19af commit fbd7654
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@ limitations under the License.
* Under development.
* TODO: Add official Keras Model support, including Keras layers, Sequential, and Model subclasses for defining subnetworks.

# Release 0.6.1
* Maintain compatibility with TensorFlow versions >=1.9.

# Release 0.6.0
* Official support AdaNet on TPU using `adanet.TPUEstimator` with `adanet.Estimator` feature parity.
* Officially support AdaNet on TPU using `adanet.TPUEstimator` with `adanet.Estimator` feature parity.
* Support dictionary candidate pools in `adanet.AutoEnsembleEstimator` constructor to specify human-readable candidate names.
* Improve AutoEnsembleEstimator ability to handling custom `tf.estimator.Estimator` subclasses.
* Introduce `adanet.ensemble` which contains interfaces and examples of ways to learn ensembles using AdaNet. Users can now extend AdaNet to use custom ensemble-learning methods.
* Record TensorBoard `scalar`, `image`, `histogram`, and `audio` summaries on TPU during training.
* Add debug mode to help detect NaNs and Infs during training.
* Improve subnetwork `tf.train.SessionRunHook` support to handle more edge cases.
* Maintain compatibility with TensorFlow versions 1.9 thru 1.13.
* Improve documentation including adding 'Getting Started' documentation to `adanet.readthedocs.io`.
* ~~Maintain compatibility with TensorFlow versions 1.9 thru 1.13~~ Only works for TensorFlow version >=1.13.
* Improve documentation including adding 'Getting Started' documentation to [adanet.readthedocs.io](http://adanet.readthedocs.io).
* **BREAKING CHANGE**: Importing the `adanet.subnetwork` package using `from adanet.core import subnetwork` will no longer work, because the package was moved to the `adanet/subnetwork` directory. Most users should already be using `adanet.subnetwork` or `from adanet import subnetwork`, and should not be affected.

# Release 0.5.0
Expand Down
2 changes: 1 addition & 1 deletion adanet/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# ==============================================================================
"""Contains the version string."""

__version__ = u"0.6.0"
__version__ = u"0.6.1"

0 comments on commit fbd7654

Please sign in to comment.