Struct tensorflow::SessionOptions
[−]
[src]
pub struct SessionOptions { /* fields omitted */ }
Options that can be passed during session creation.
Methods
impl SessionOptions
[src]
pub fn set_target(&mut self, target: &str) -> Result<(), NulError>
[src]
Set the target.
target
can be empty, a single entry, or a comma separated list of entries.
Each entry is in one of the following formats :
- "local"
- ip:port
- host:port
pub fn set_config(&mut self, config: &[u8]) -> Result<()>
[src]
Set the config.
config
should be a serialized ConfigProto
proto.
Returns an error if config was not parsed successfully as a ConfigProto
.
impl SessionOptions
[src]
Trait Implementations
impl Debug for SessionOptions
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more