pub struct UpdateMLModelInput {
pub ml_model_id: String,
pub ml_model_name: Option<String>,
pub score_threshold: Option<f32>,
}
Fields§
§ml_model_id: String
The ID assigned to the MLModel
during creation.
ml_model_name: Option<String>
A user-supplied name or description of the MLModel
.
score_threshold: Option<f32>
The ScoreThreshold
used in binary classification MLModel
that marks the boundary between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from the MLModel
, such as true
. Output values less than the ScoreThreshold
receive a negative response from the MLModel
, such as false
.
Trait Implementations§
Source§impl Clone for UpdateMLModelInput
impl Clone for UpdateMLModelInput
Source§fn clone(&self) -> UpdateMLModelInput
fn clone(&self) -> UpdateMLModelInput
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 UpdateMLModelInput
impl Debug for UpdateMLModelInput
Source§impl Default for UpdateMLModelInput
impl Default for UpdateMLModelInput
Source§fn default() -> UpdateMLModelInput
fn default() -> UpdateMLModelInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateMLModelInput
impl PartialEq for UpdateMLModelInput
Source§impl Serialize for UpdateMLModelInput
impl Serialize for UpdateMLModelInput
impl StructuralPartialEq for UpdateMLModelInput
Auto Trait Implementations§
impl Freeze for UpdateMLModelInput
impl RefUnwindSafe for UpdateMLModelInput
impl Send for UpdateMLModelInput
impl Sync for UpdateMLModelInput
impl Unpin for UpdateMLModelInput
impl UnwindSafe for UpdateMLModelInput
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