[][src]Struct tensorflow_proto::tensorflow::DebugOptions

pub struct DebugOptions {
    pub debug_tensor_watch_opts: Vec<DebugTensorWatch>,
    pub global_step: i64,
    pub reset_disk_byte_usage: bool,
}

Options for initializing DebuggerState in TensorFlow Debugger (tfdbg).

Fields

debug_tensor_watch_opts: Vec<DebugTensorWatch>

Debugging options

global_step: i64

Caller-specified global step count. Note that this is distinct from the session run count and the executor step count.

reset_disk_byte_usage: bool

Whether the total disk usage of tfdbg is to be reset to zero in this Session.run call. This is used by wrappers and hooks such as the local CLI ones to indicate that the dumped tensors are cleaned up from the disk after each Session.run.

Trait Implementations

impl Clone for DebugOptions[src]

impl Debug for DebugOptions[src]

impl Default for DebugOptions[src]

impl Message for DebugOptions[src]

impl PartialEq<DebugOptions> for DebugOptions[src]

impl StructuralPartialEq for DebugOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.