Struct gcp_bigquery_client::model::bqml_training_run_training_options::BqmlTrainingRunTrainingOptions
source · [−]pub struct BqmlTrainingRunTrainingOptions {
pub early_stop: Option<bool>,
pub l1_reg: Option<f64>,
pub l2_reg: Option<f64>,
pub learn_rate: Option<f64>,
pub learn_rate_strategy: Option<String>,
pub line_search_init_learn_rate: Option<f64>,
pub max_iteration: Option<String>,
pub min_rel_progress: Option<f64>,
pub warm_start: Option<bool>,
}
Expand description
BqmlTrainingRunTrainingOptions : [Output-only, Beta] Training options used by this training run. These options are mutable for subsequent training runs. Default values are explicitly stored for options not specified in the input query of the first training run. For subsequent training runs, any option not explicitly specified in the input query will be copied from the previous training run.
Fields
early_stop: Option<bool>
l1_reg: Option<f64>
l2_reg: Option<f64>
learn_rate: Option<f64>
learn_rate_strategy: Option<String>
line_search_init_learn_rate: Option<f64>
max_iteration: Option<String>
min_rel_progress: Option<f64>
warm_start: Option<bool>
Trait Implementations
sourceimpl Clone for BqmlTrainingRunTrainingOptions
impl Clone for BqmlTrainingRunTrainingOptions
sourcefn clone(&self) -> BqmlTrainingRunTrainingOptions
fn clone(&self) -> BqmlTrainingRunTrainingOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for BqmlTrainingRunTrainingOptions
impl Default for BqmlTrainingRunTrainingOptions
sourcefn default() -> BqmlTrainingRunTrainingOptions
fn default() -> BqmlTrainingRunTrainingOptions
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BqmlTrainingRunTrainingOptions
impl<'de> Deserialize<'de> for BqmlTrainingRunTrainingOptions
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for BqmlTrainingRunTrainingOptions
impl Send for BqmlTrainingRunTrainingOptions
impl Sync for BqmlTrainingRunTrainingOptions
impl Unpin for BqmlTrainingRunTrainingOptions
impl UnwindSafe for BqmlTrainingRunTrainingOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more