Variables

tf.convert_to_tensor

[TOC]

Variables

Variable helper functions

TensorFlow provides a set of functions to help manage the set of variables
collected in the graph.

Saving and Restoring Variables

Sharing Variables

TensorFlow provides several classes and operations that you can use to
create variables contingent on certain conditions.

Variable Partitioners for Sharding

Sparse Variable Updates

The sparse update ops modify a subset of the entries in a dense Variable,
either overwriting the entries or adding / subtracting a delta. These are
useful for training embedding models and similar lookup-based networks, since
only a small subset of embedding vectors change in any given step.

tf.IndexedSlices

Read-only Lookup Tables

Exporting and Importing Meta Graphs

Deprecated functions (removed after 2017-03-02). Please don't use them.