tf.contrib.learn.infer(restore_checkpoint_path, output_dict, feed_dict=None)
Restore graph from restore_checkpoint_path
and run output_dict
tensors.
If restore_checkpoint_path
is supplied, restore from checkpoint. Otherwise, init all variables.
Args:
-
restore_checkpoint_path
: A string containing the path to a checkpoint to restore. -
output_dict
: Adict
mapping string names toTensor
objects to run. Tensors must all be from the same graph. -
feed_dict
:dict
object mappingTensor
objects to input values to feed.
Returns:
Dict of values read from output_dict
tensors. Keys are the same as output_dict
, values are the results read from the corresponding Tensor
in output_dict
.
Raises:
-
ValueError
: ifoutput_dict
orfeed_dicts
is None or empty.
Please login to continue.