pub struct ModelArtifacts {
pub s3_model_artifacts: String,
}Expand description
Provides information about the location that is configured for storing model artifacts.
Model artifacts are the output that results from training a model, and typically consist of trained parameters, a model defintion that desribes how to compute inferences, and other metadata.
Fields§
§s3_model_artifacts: StringThe path of the S3 object that contains the model artifacts. For example, s3://bucket-name/keynameprefix/model.tar.gz.
Trait Implementations§
Source§impl Clone for ModelArtifacts
impl Clone for ModelArtifacts
Source§fn clone(&self) -> ModelArtifacts
fn clone(&self) -> ModelArtifacts
Returns a duplicate 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 ModelArtifacts
impl Debug for ModelArtifacts
Source§impl Default for ModelArtifacts
impl Default for ModelArtifacts
Source§fn default() -> ModelArtifacts
fn default() -> ModelArtifacts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelArtifacts
impl<'de> Deserialize<'de> for ModelArtifacts
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 ModelArtifacts
impl PartialEq for ModelArtifacts
impl StructuralPartialEq for ModelArtifacts
Auto Trait Implementations§
impl Freeze for ModelArtifacts
impl RefUnwindSafe for ModelArtifacts
impl Send for ModelArtifacts
impl Sync for ModelArtifacts
impl Unpin for ModelArtifacts
impl UnwindSafe for ModelArtifacts
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