Modifier and Type | Method and Description |
---|---|
Session.Runner |
Session.Runner.addTarget(Operation operation)
|
Session.Runner |
Session.Runner.addTarget(String operation)
|
Session.Runner |
Session.Runner.feed(Output o,
Tensor t)
Use
t instead of the Tensor referred to by executing the operation referred to by
output . |
Session.Runner |
Session.Runner.feed(String operation,
int index,
Tensor t)
Avoid evaluating the
index -th output of operation by substituting t
for the value it produces. |
Session.Runner |
Session.Runner.feed(String operation,
Tensor t)
Avoid evaluating
operation and substitute t for the value it produces. |
Session.Runner |
Session.Runner.fetch(Output output)
Makes
run() return the Tensor referred to by output . |
Session.Runner |
Session.Runner.fetch(String operation)
Make
run() return the output of operation . |
Session.Runner |
Session.Runner.fetch(String operation,
int index)
|
Session.Runner |
Session.runner()
Create a Runner to execute graph operations and evaluate Tensors.
|
Session.Runner |
Session.Runner.setOptions(byte[] options)
(Experimental method): set options (typically for debugging) for this run.
|
Copyright © 2015–2017. All rights reserved.