aboutsummaryrefslogtreecommitdiffhomepage
path: root/RELEASE.md
diff options
context:
space:
mode:
authorGravatar Amit Patankar <amitpatankar@google.com>2018-06-04 13:23:40 -0700
committerGravatar Amit Patankar <amitpatankar@google.com>2018-06-04 13:23:40 -0700
commit06a7049f29b0148659693ec53db530c2c895a6a6 (patch)
treebaab8ed0d830fbcdc4db3c4c69d2797dd2e36461 /RELEASE.md
parent5ab4e1346dba1d5bb820452883c1561d144759f7 (diff)
I've made the updates Rajat requested. Please note the links will not work until after we have launched.
Diffstat (limited to 'RELEASE.md')
-rw-r--r--RELEASE.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 600294478d..c1ed69bd45 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -4,8 +4,10 @@
* Update tf.keras to the Keras 2.1.6 API.
* `tfe.Network` is deprecated. Please inherit from `tf.keras.Model`.
* Adding support of core feature columns and losses to gradient boosted trees estimators.
-* The Bijector API now requires 'event_ndims' passed in to the `log_det_jacobian` methods, while `event_ndims` is removed from the base class and replaced with `forward_min_event_ndims`. The signature is now `log_det_jacobian(x, event_ndims)`. The main rationale for this change is that it allows Bijectors to broadcast.
-RELNOTES: If you were using layers from `tf.keras.layers` in conjunction with custom variable scopes, your layer variable names might have changed. If you were using layers from `tf.layers` in a subclassed `tf.keras.Model` class, then your variable names have changed (you can restore the prior names by importing the same layers from `tf.keras.layers` instead of `tf.layers`).
+* The distributions.Bijector API supports broadcasting for Bijectors with new API changes. See [here](https://www.tensorflow.org/versions/r1.9/api_docs/python/tf/distributions/bijectors/Bijector) for more details.
+* Layered variable names have changed in the following conditions:
+ * Using `tf.keras.layers` with custom variable scopes.
+ * Using `tf.layers` in a subclassed `tf.keras.Model` class. See [here](https://www.tensorflow.org/versions/r1.9/api_docs/python/tf/layers) for more details
## Breaking Chances
* If you're opening empty variable scopes; replace `variable_scope`('', ...) by `variable_scope`(`tf.get_variable_scope()`, ...).