Skip to content

Commit f60dfcb

Browse files
author
Amit Patankar
committed
Documentation update and release update.
1 parent b42b658 commit f60dfcb

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@
8181
checkpoints containing such RNN cells, in which case you can use the
8282
[checkpoint_convert script](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/rnn/python/tools/checkpoint_convert.py)
8383
to convert the variable names in your old checkpoints.
84+
* Added `tf.contrib.kernel_methods` module with Ops and estimators for primal
85+
(explicit) kernel methods in TensorFlow.
8486

8587
## Bug Fixes and Other Changes
8688
* In python, `Operation.get_attr` on type attributes returns the Python DType

tensorflow/python/ops/variable_scope.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,6 +1501,11 @@ def variable_scope(name_or_scope,
15011501
A note about name scoping: Setting `reuse` does not impact the naming of other
15021502
ops such as mult. See related discussion on [github#6189](https://github.com/tensorflow/tensorflow/issues/6189)
15031503
1504+
Note that up to and including version 1.0, it was allowed (though
1505+
explicitly discouraged) to pass False to the reuse argument, yielding
1506+
undocumented behaviour slightly different from None. Starting at 1.1.0
1507+
passing None and False as reuse has exactly the same effect.
1508+
15041509
Args:
15051510
name_or_scope: `string` or `VariableScope`: the scope to open.
15061511
default_name: The default name to use if the `name_or_scope` argument is

0 commit comments

Comments
 (0)