![]() |
Class SessionRunArgs
Represents arguments to be added to a Session.run()
call.
Aliases:
- Class
tf.compat.v1.estimator.SessionRunArgs
- Class
tf.compat.v1.train.SessionRunArgs
- Class
tf.compat.v2.estimator.SessionRunArgs
- Class
tf.estimator.SessionRunArgs
Args:
fetches
: Exactly like the 'fetches' argument to Session.Run(). Can be a single tensor or op, a list of 'fetches' or a dictionary of fetches. For example: fetches = global_step_tensor fetches = [train_op, summary_op, global_step_tensor] fetches = {'step': global_step_tensor, 'summ': summary_op} Note that this can recurse as expected: fetches = {'step': global_step_tensor, 'ops': [train_op, check_nan_op]}feed_dict
: Exactly like thefeed_dict
argument toSession.Run()
options
: Exactly like theoptions
argument toSession.run()
, i.e., a config_pb2.RunOptions proto.
__new__
@staticmethod
__new__(
cls,
fetches,
feed_dict=None,
options=None
)
Create new instance of SessionRunArgs(fetches, feed_dict, options)