This repository was archived by the owner on Apr 19, 2026. It is now read-only.
AdaNet v0.6.0
- Officially support AdaNet on TPU using
adanet.TPUEstimatorwithadanet.Estimatorfeature parity. - Support dictionary candidate pools in
adanet.AutoEnsembleEstimatorconstructor to specify human-readable candidate names. - Improve AutoEnsembleEstimator ability to handling custom
tf.estimator.Estimatorsubclasses. - Introduce
adanet.ensemblewhich 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, andaudiosummaries on TPU during training. - Add debug mode to help detect NaNs and Infs during training.
- Improve subnetwork
tf.train.SessionRunHooksupport to handle more edge cases. Maintain compatibility with TensorFlow versions 1.9 thru 1.13Only works for TensorFlow version >=1.13. Fixed in AdaNet v0.6.1.- Improve documentation including adding 'Getting Started' documentation to adanet.readthedocs.io.
- BREAKING CHANGE: Importing the
adanet.subnetworkpackage usingfrom adanet.core import subnetworkwill no longer work, because the package was moved to theadanet/subnetworkdirectory. Most users should already be usingadanet.subnetworkorfrom adanet import subnetwork, and should not be affected.