pub struct TensorBoardOutputConfig {
pub local_path: Option<String>,
pub s3_output_path: String,
}
Expand description
Configuration of storage locations for TensorBoard output.
Fields§
§local_path: Option<String>
Path to local storage location for tensorBoard output. Defaults to /opt/ml/output/tensorboard
.
s3_output_path: String
Path to Amazon S3 storage location for TensorBoard output.
Trait Implementations§
Source§impl Clone for TensorBoardOutputConfig
impl Clone for TensorBoardOutputConfig
Source§fn clone(&self) -> TensorBoardOutputConfig
fn clone(&self) -> TensorBoardOutputConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TensorBoardOutputConfig
impl Debug for TensorBoardOutputConfig
Source§impl Default for TensorBoardOutputConfig
impl Default for TensorBoardOutputConfig
Source§fn default() -> TensorBoardOutputConfig
fn default() -> TensorBoardOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TensorBoardOutputConfig
impl<'de> Deserialize<'de> for TensorBoardOutputConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TensorBoardOutputConfig
impl PartialEq for TensorBoardOutputConfig
Source§impl Serialize for TensorBoardOutputConfig
impl Serialize for TensorBoardOutputConfig
impl StructuralPartialEq for TensorBoardOutputConfig
Auto Trait Implementations§
impl Freeze for TensorBoardOutputConfig
impl RefUnwindSafe for TensorBoardOutputConfig
impl Send for TensorBoardOutputConfig
impl Sync for TensorBoardOutputConfig
impl Unpin for TensorBoardOutputConfig
impl UnwindSafe for TensorBoardOutputConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more