Skip to content

Commit

Permalink
Release v0.5.0.
Browse files Browse the repository at this point in the history
Add missing documentation for TrainOpSpec.

PiperOrigin-RevId: 225897121
  • Loading branch information
cweill committed Dec 17, 2018
1 parent 348c2ee commit 9261162
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
8 changes: 7 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ See the License for the specific language governing permissions and
limitations under the License.
==============================================================================-->

# Current version (0.5.0-dev)
# Current version (0.6.0-dev)
* Under development.

# Release 0.5.0
* Support training on TPU using `adanet.TPUEstimator`.
* Allow subnetworks to specify `tf.train.SessionRunHook` instances for training with `adanet.subnetwork.TrainOpSpec`.
* Add API documentation generation with Sphinx.
* Fix bug preventing subnetworks with Resource variables from working beyond the first iteration.

# Release 0.4.0
* Add `shared` field to `adanet.Subnetwork` to deprecate, replace, and be more flexible than `persisted_tensors`.
* Officially support multi-head learning with or without dict labels.
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__ = "0.4.0"
__version__ = "0.5.0"
6 changes: 6 additions & 0 deletions docs/source/adanet.subnetwork.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ Interfaces and containers for defining subnetworks, search spaces, and search al
.. autoclass:: Subnetwork
:members:

:hidden:`TrainOpSpec`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. autoclass:: TrainOpSpec
:members:

:hidden:`Builder`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
author = u'AdaNet Authors'

# The short X.Y version
version = u'0.4.0'
version = u'0.5.0'
# The full version, including alpha/beta/rc tags
release = u'[0.4.0]'
release = u'[0.5.0]'

# -- General configuration ---------------------------------------------------

Expand Down

0 comments on commit 9261162

Please sign in to comment.