提交 0f303909 编写于 作者: A A. Unique TensorFlower 提交者: TensorFlower Gardener

Update generated Python Op docs.

Change: 118397198
上级 45d069bd
......@@ -409,6 +409,31 @@ Returns a list of values in the collection with the given `name`.
collected.
- - -
#### `tf.Graph.get_collection_ref(name)` {#Graph.get_collection_ref}
Returns a list of values in the collection with the given `name`.
If the collection exists, this returns the list itself, which can
be modified in place to change the collection. If the collection does
not exist, it is created as an empty list and the list is returned.
This is different from `get_collection()` which always returns a copy of
the collection list if it exists and never creates an empty collection.
##### Args:
* <b>`name`</b>: The key for the collection. For example, the `GraphKeys` class
contains many standard names for collections.
##### Returns:
The list of values in the collection with the given `name`, or an empty
list if no value has been added to that collection.
- - -
......@@ -1752,6 +1777,29 @@ for more details.
collected.
- - -
### `tf.get_collection_ref(key)` {#get_collection_ref}
Wrapper for `Graph.get_collection_ref()` using the default graph.
See [`Graph.get_collection_ref()`](../../api_docs/python/framework.md#Graph.get_collection_ref)
for more details.
##### Args:
* <b>`key`</b>: The key for the collection. For example, the `GraphKeys` class
contains many standard names for collections.
##### Returns:
The list of values in the collection with the given `name`, or an empty
list if no value has been added to that collection. Note that this returns
the collection list itself, which can be modified in place to change the
collection.
- - -
### `class tf.GraphKeys` {#GraphKeys}
......
......@@ -13,6 +13,7 @@
* [`Dimension`](../../api_docs/python/framework.md#Dimension)
* [`DType`](../../api_docs/python/framework.md#DType)
* [`get_collection`](../../api_docs/python/framework.md#get_collection)
* [`get_collection_ref`](../../api_docs/python/framework.md#get_collection_ref)
* [`get_default_graph`](../../api_docs/python/framework.md#get_default_graph)
* [`get_seed`](../../api_docs/python/framework.md#get_seed)
* [`Graph`](../../api_docs/python/framework.md#Graph)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册