This repository was archived by the owner on Apr 19, 2026. It is now read-only.
AdaNet v0.7.0
- Add embeddings support on TPU via
TPUEmbedding. - Train the current iteration forever when
max_iteration_steps=None. - Introduce
adanet.AutoEnsembleSubestimatorfor training subestimators on different training data partitions and implement ensemble methods like bootstrap aggregating (a.k.a bagging). - Fix bug when using Gradient Boosted Decision Tree Estimators with
AutoEnsembleEstimatorduring distributed training. - Allow
AutoEnsembleEstimator'scandidate_poolargument to be alambdain order to createEstimatorslazily. - Remove
adanet.subnetwork.Builder#prune_previous_ensemblefor abstract class. This behavior is now specified usingadanet.ensemble.Strategysubclasses. - BREAKING CHANGE: Only support TensorFlow >= 1.14 to better support TensorFlow 2.0. Drop support for versions < 1.14.
- Correct eval metric computations on CPU and GPU.