Returns a function that assigns specific variables from the given values.
tf.contrib.framework.assign_from_values_fn(
var_names_to_values
)
This function provides a mechanism for performing assignment of variables
to values in a way that does not fill the graph with large assignment values.
Args |
var_names_to_values
|
A map from variable names to values.
|
Returns |
A function that takes a single argument, a tf.compat.v1.Session , that
applies the
assignment operation.
|
Raises |
ValueError
|
if any of the given variable names were not found.
|