pub struct DebugHookConfig {
pub collection_configurations: Option<Vec<CollectionConfiguration>>,
pub hook_parameters: Option<HashMap<String, String>>,
pub local_path: Option<String>,
pub s3_output_path: String,
}
Expand description
Configuration information for the debug hook parameters, collection configuration, and storage paths.
Fields§
§collection_configurations: Option<Vec<CollectionConfiguration>>
Configuration information for tensor collections.
hook_parameters: Option<HashMap<String, String>>
Configuration information for the debug hook parameters.
local_path: Option<String>
Path to local storage location for tensors. Defaults to /opt/ml/output/tensors/
.
s3_output_path: String
Path to Amazon S3 storage location for tensors.
Trait Implementations§
Source§impl Clone for DebugHookConfig
impl Clone for DebugHookConfig
Source§fn clone(&self) -> DebugHookConfig
fn clone(&self) -> DebugHookConfig
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 DebugHookConfig
impl Debug for DebugHookConfig
Source§impl Default for DebugHookConfig
impl Default for DebugHookConfig
Source§fn default() -> DebugHookConfig
fn default() -> DebugHookConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugHookConfig
impl<'de> Deserialize<'de> for DebugHookConfig
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 DebugHookConfig
impl PartialEq for DebugHookConfig
Source§impl Serialize for DebugHookConfig
impl Serialize for DebugHookConfig
impl StructuralPartialEq for DebugHookConfig
Auto Trait Implementations§
impl Freeze for DebugHookConfig
impl RefUnwindSafe for DebugHookConfig
impl Send for DebugHookConfig
impl Sync for DebugHookConfig
impl Unpin for DebugHookConfig
impl UnwindSafe for DebugHookConfig
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