You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* TODO: Add official Keras Model support, including Keras layers, Sequential, and Model subclasses for defining subnetworks.
19
+
20
+
# Release 0.6.0
21
+
* Official support AdaNet on TPU using `adanet.TPUEstimator` with `adanet.Estimator` feature parity.
18
22
* Support dictionary candidate pools in `adanet.AutoEnsembleEstimator` constructor to specify human-readable candidate names.
23
+
* Improve AutoEnsembleEstimator ability to handling custom `tf.estimator.Estimator` subclasses.
19
24
* 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.
20
-
* Add support for evaluation on TPU using `adanet.TPUEstimator`.
21
-
* Support recording TensorBoard `scalar`, `image`, `histogram`, and `audio` summaries on TPU during training.
25
+
* Record TensorBoard `scalar`, `image`, `histogram`, and `audio` summaries on TPU during training.
22
26
* Add debug mode to help detect NaNs and Infs during training.
23
-
* BREAKING CHANGE: Doing `from adanet.core import subnetwork` will no longer work, because the `subnetwork` package was moved to `adanet.subnetwork`. Most users should already be using `adanet.subnetwork`, and should not be affected.
27
+
* Improve subnetwork `tf.train.SessionRunHook` support to handle more edge cases.
28
+
* Maintain compatibility with TensorFlow versions 1.9 thru 1.13.
29
+
* Improve documentation including adding 'Getting Started' documentation to `adanet.readthedocs.io`.
30
+
***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.
24
31
25
32
# Release 0.5.0
26
33
* Support training on TPU using `adanet.TPUEstimator`.
0 commit comments