tf.compat.v1.add_to_collection  |  TensorFlow v2.16.1 (original) (raw)

tf.compat.v1.add_to_collection

Stay organized with collections Save and categorize content based on your preferences.

Wrapper for Graph.add_to_collection() using the default graph.

tf.compat.v1.add_to_collection(
    name, value
) -> None

See tf.Graph.add_to_collectionfor more details.

Args
name The key for the collection. For example, the GraphKeys class contains many standard names for collections.
value The value to add to the collection.

eager compatibility

Collections are only supported in eager when variables are created inside an EagerVariableStore (e.g. as part of a layer or template).

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-04-26 UTC.