Skip to content

Commit

Permalink
Release AdaNet v0.6.0.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 240649904
  • Loading branch information
cweill committed Mar 27, 2019
1 parent b49b0be commit f219ce6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ See the License for the specific language governing permissions and
limitations under the License.
==============================================================================-->

# Current version (0.6.0-dev)
# Current version (0.7.0-dev)
* Under development.
* TODO: Add official Keras Model support, including Keras layers, Sequential, and Model subclasses for defining subnetworks.

# Release 0.6.0
* Official 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.
* Add support for evaluation on TPU using `adanet.TPUEstimator`.
* Support recording TensorBoard `scalar`, `image`, `histogram`, and `audio` summaries on TPU during training.
* Record TensorBoard `scalar`, `image`, `histogram`, and `audio` summaries on TPU during training.
* Add debug mode to help detect NaNs and Infs during training.
* 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.
* 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`.
* **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
* Support training on TPU using `adanet.TPUEstimator`.
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.dev"
__version__ = u"0.6.0"

0 comments on commit f219ce6

Please sign in to comment.