pub struct PipelineDslMergeModelStep {Show 13 fields
pub id: NodeId,
pub operator: Value,
pub params: BTreeMap<String, Value>,
pub metadata: BTreeMap<String, Value>,
pub seed_label: Option<String>,
pub include_original_data: bool,
pub merge_mode: String,
pub train_params: BTreeMap<String, Value>,
pub tuning: Option<PipelineDslTuningSpec>,
pub variants: Vec<PipelineDslVariantChoice>,
pub param_generators: Vec<PipelineDslParamGenerator>,
pub shape: Option<PipelineDslShapePlan>,
pub inner_cv: Option<NestedCvSpec>,
}Fields§
§id: NodeId§operator: Value§params: BTreeMap<String, Value>§metadata: BTreeMap<String, Value>§seed_label: Option<String>§include_original_data: bool§merge_mode: String§train_params: BTreeMap<String, Value>§tuning: Option<PipelineDslTuningSpec>§variants: Vec<PipelineDslVariantChoice>§param_generators: Vec<PipelineDslParamGenerator>§shape: Option<PipelineDslShapePlan>§inner_cv: Option<NestedCvSpec>Node-local nested (inner) CV policy for this meta-model (the meta-stacker’s inner CV is nested inside the outer CV); overrides the campaign default.
Trait Implementations§
Source§impl Clone for PipelineDslMergeModelStep
impl Clone for PipelineDslMergeModelStep
Source§fn clone(&self) -> PipelineDslMergeModelStep
fn clone(&self) -> PipelineDslMergeModelStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PipelineDslMergeModelStep
impl Debug for PipelineDslMergeModelStep
Source§impl<'de> Deserialize<'de> for PipelineDslMergeModelStep
impl<'de> Deserialize<'de> for PipelineDslMergeModelStep
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 PipelineDslMergeModelStep
impl PartialEq for PipelineDslMergeModelStep
Source§fn eq(&self, other: &PipelineDslMergeModelStep) -> bool
fn eq(&self, other: &PipelineDslMergeModelStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PipelineDslMergeModelStep
Auto Trait Implementations§
impl Freeze for PipelineDslMergeModelStep
impl RefUnwindSafe for PipelineDslMergeModelStep
impl Send for PipelineDslMergeModelStep
impl Sync for PipelineDslMergeModelStep
impl Unpin for PipelineDslMergeModelStep
impl UnsafeUnpin for PipelineDslMergeModelStep
impl UnwindSafe for PipelineDslMergeModelStep
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