pub struct GoogleCloudAiplatformV1ModelDataStats {
pub test_data_items_count: Option<i64>,
pub training_data_items_count: Option<i64>,
pub validation_annotations_count: Option<i64>,
pub training_annotations_count: Option<i64>,
pub test_annotations_count: Option<i64>,
pub validation_data_items_count: Option<i64>,
}Expand description
Stats of data used for train or evaluate the Model.
This type is not used in any activity, and only used as part of another schema.
Fields§
§test_data_items_count: Option<i64>Number of DataItems that were used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test DataItems used by the first evaluation. If the Model is not evaluated, the number is 0.
training_data_items_count: Option<i64>Number of DataItems that were used for training this Model.
validation_annotations_count: Option<i64>Number of Annotations that are used for validating this Model during training.
training_annotations_count: Option<i64>Number of Annotations that are used for training this Model.
test_annotations_count: Option<i64>Number of Annotations that are used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test Annotations used by the first evaluation. If the Model is not evaluated, the number is 0.
validation_data_items_count: Option<i64>Number of DataItems that were used for validating this Model during training.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1ModelDataStats
impl Clone for GoogleCloudAiplatformV1ModelDataStats
Source§fn clone(&self) -> GoogleCloudAiplatformV1ModelDataStats
fn clone(&self) -> GoogleCloudAiplatformV1ModelDataStats
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1ModelDataStats
impl Default for GoogleCloudAiplatformV1ModelDataStats
Source§fn default() -> GoogleCloudAiplatformV1ModelDataStats
fn default() -> GoogleCloudAiplatformV1ModelDataStats
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ModelDataStats
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ModelDataStats
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>,
impl Part for GoogleCloudAiplatformV1ModelDataStats
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1ModelDataStats
impl RefUnwindSafe for GoogleCloudAiplatformV1ModelDataStats
impl Send for GoogleCloudAiplatformV1ModelDataStats
impl Sync for GoogleCloudAiplatformV1ModelDataStats
impl Unpin for GoogleCloudAiplatformV1ModelDataStats
impl UnwindSafe for GoogleCloudAiplatformV1ModelDataStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more