tensorflow::Status::error_message()

const string& tensorflow::Status::error_message() const

tensorflow::SessionOptions::SessionOptions()

tensorflow::SessionOptions::SessionOptions()

tensorflow::SessionOptions::target

string tensorflow::SessionOptions::target The TensorFlow runtime to connect to. If 'target' is empty or unspecified, the local TensorFlow runtime implementation will be used. Otherwise, the TensorFlow engine defined by 'target' will be used to perform all computations. "target" can be either a single entry or a comma separated list of entries. Each entry is a resolvable address of the following format: local ip:port host:port ... other system-specific formats to identify tasks and jobs ... NOT

tensorflow::SessionOptions::env

Env* tensorflow::SessionOptions::env The environment to use.

tensorflow::Status

Member Details tensorflow::Status::Status() Create a success status. tensorflow::Status::~Status() tensorflow::Status::Status(tensorflow::error::Code code, tensorflow::StringPiece msg) Create a status with the specified error code and msg as a human-readable string containing more detailed information. tensorflow::Status::Status(const Status &s) Copy the specified status. void tensorflow::Status::operator=(const Status &s) bool tensorflow::Status::ok() const Returns true iff the status

tensorflow::Session::PRun()

virtual Status tensorflow::Session::PRun(const string &handle, const std::vector< std::pair< string, Tensor > > &inputs, const std::vector< string > &output_names, std::vector< Tensor > *outputs) Continues the pending execution specified by handle with the provided input tensors and fills outputs for the endpoints specified in output_names. NOTE: This API is still experimental and may change.

tensorflow::Session::Session()

tensorflow::Session::Session()

tensorflow::Session::Run()

virtual Status tensorflow::Session::Run(const std::vector< std::pair< string, Tensor > > &inputs, const std::vector< string > &output_tensor_names, const std::vector< string > &target_node_names, std::vector< Tensor > *outputs)=0 Runs the graph with the provided input tensors and fills outputs for the endpoints specified in output_tensor_names. Runs to but does not return Tensors for the nodes in target_node_names. The order of tensors in outputs will

tensorflow::Session::~Session()

virtual tensorflow::Session::~Session()

tensorflow::Session::Extend()

virtual Status tensorflow::Session::Extend(const GraphDef &graph)=0 Adds operations to the graph that is already registered with the Session . The names of new operations in "graph" must not exist in the graph that is already registered.