Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

AdaNet v0.7.0

Choose a tag to compare

@cweill cweill released this 26 Jun 20:41
· 155 commits to master since this release
  • Add embeddings support on TPU via TPUEmbedding.
  • Train the current iteration forever when max_iteration_steps=None.
  • Introduce adanet.AutoEnsembleSubestimator for 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 AutoEnsembleEstimator during distributed training.
  • Allow AutoEnsembleEstimator's candidate_pool argument to be a lambda in order to create Estimators lazily.
  • Remove adanet.subnetwork.Builder#prune_previous_ensemble for abstract class. This behavior is now specified using adanet.ensemble.Strategy subclasses.
  • 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.