Type IStrategy
Namespace tensorflow.distribute
Interfaces IStrategy
Public instance methods
object experimental_make_numpy_dataset(object numpy_input, object session)
Makes a dataset for input provided via a numpy array. This avoids adding `numpy_input` as a large constant in the graph,
and copies the data to the machine or machines that will be processing
the input.
Parameters
-
objectnumpy_input - A nest of NumPy input arrays that will be distributed evenly
across all replicas. Note that lists of Numpy arrays are stacked, as
that is normal
tf.data.Datasetbehavior. -
objectsession - (TensorFlow v1.x graph execution only) A session used for initialization.
Returns
-
object - A
tf.data.Datasetrepresenting `numpy_input`.