Struct aws_sdk_sagemaker::types::builders::AutoMlChannelBuilder
source · #[non_exhaustive]pub struct AutoMlChannelBuilder { /* private fields */ }
Expand description
A builder for AutoMlChannel
.
Implementations§
source§impl AutoMlChannelBuilder
impl AutoMlChannelBuilder
sourcepub fn data_source(self, input: AutoMlDataSource) -> Self
pub fn data_source(self, input: AutoMlDataSource) -> Self
The data source for an AutoML channel.
sourcepub fn set_data_source(self, input: Option<AutoMlDataSource>) -> Self
pub fn set_data_source(self, input: Option<AutoMlDataSource>) -> Self
The data source for an AutoML channel.
sourcepub fn get_data_source(&self) -> &Option<AutoMlDataSource>
pub fn get_data_source(&self) -> &Option<AutoMlDataSource>
The data source for an AutoML channel.
sourcepub fn compression_type(self, input: CompressionType) -> Self
pub fn compression_type(self, input: CompressionType) -> Self
You can use Gzip
or None
. The default value is None
.
sourcepub fn set_compression_type(self, input: Option<CompressionType>) -> Self
pub fn set_compression_type(self, input: Option<CompressionType>) -> Self
You can use Gzip
or None
. The default value is None
.
sourcepub fn get_compression_type(&self) -> &Option<CompressionType>
pub fn get_compression_type(&self) -> &Option<CompressionType>
You can use Gzip
or None
. The default value is None
.
sourcepub fn target_attribute_name(self, input: impl Into<String>) -> Self
pub fn target_attribute_name(self, input: impl Into<String>) -> Self
The name of the target variable in supervised learning, usually represented by 'y'.
This field is required.sourcepub fn set_target_attribute_name(self, input: Option<String>) -> Self
pub fn set_target_attribute_name(self, input: Option<String>) -> Self
The name of the target variable in supervised learning, usually represented by 'y'.
sourcepub fn get_target_attribute_name(&self) -> &Option<String>
pub fn get_target_attribute_name(&self) -> &Option<String>
The name of the target variable in supervised learning, usually represented by 'y'.
sourcepub fn content_type(self, input: impl Into<String>) -> Self
pub fn content_type(self, input: impl Into<String>) -> Self
The content type of the data from the input source. You can use text/csv;header=present
or x-application/vnd.amazon+parquet
. The default value is text/csv;header=present
.
sourcepub fn set_content_type(self, input: Option<String>) -> Self
pub fn set_content_type(self, input: Option<String>) -> Self
The content type of the data from the input source. You can use text/csv;header=present
or x-application/vnd.amazon+parquet
. The default value is text/csv;header=present
.
sourcepub fn get_content_type(&self) -> &Option<String>
pub fn get_content_type(&self) -> &Option<String>
The content type of the data from the input source. You can use text/csv;header=present
or x-application/vnd.amazon+parquet
. The default value is text/csv;header=present
.
sourcepub fn channel_type(self, input: AutoMlChannelType) -> Self
pub fn channel_type(self, input: AutoMlChannelType) -> Self
The channel type (optional) is an enum
string. The default value is training
. Channels for training and validation must share the same ContentType
and TargetAttributeName
. For information on specifying training and validation channel types, see How to specify training and validation datasets.
sourcepub fn set_channel_type(self, input: Option<AutoMlChannelType>) -> Self
pub fn set_channel_type(self, input: Option<AutoMlChannelType>) -> Self
The channel type (optional) is an enum
string. The default value is training
. Channels for training and validation must share the same ContentType
and TargetAttributeName
. For information on specifying training and validation channel types, see How to specify training and validation datasets.
sourcepub fn get_channel_type(&self) -> &Option<AutoMlChannelType>
pub fn get_channel_type(&self) -> &Option<AutoMlChannelType>
The channel type (optional) is an enum
string. The default value is training
. Channels for training and validation must share the same ContentType
and TargetAttributeName
. For information on specifying training and validation channel types, see How to specify training and validation datasets.
sourcepub fn sample_weight_attribute_name(self, input: impl Into<String>) -> Self
pub fn sample_weight_attribute_name(self, input: impl Into<String>) -> Self
If specified, this column name indicates which column of the dataset should be treated as sample weights for use by the objective metric during the training, evaluation, and the selection of the best model. This column is not considered as a predictive feature. For more information on Autopilot metrics, see Metrics and validation.
Sample weights should be numeric, non-negative, with larger values indicating which rows are more important than others. Data points that have invalid or no weight value are excluded.
Support for sample weights is available in Ensembling mode only.
sourcepub fn set_sample_weight_attribute_name(self, input: Option<String>) -> Self
pub fn set_sample_weight_attribute_name(self, input: Option<String>) -> Self
If specified, this column name indicates which column of the dataset should be treated as sample weights for use by the objective metric during the training, evaluation, and the selection of the best model. This column is not considered as a predictive feature. For more information on Autopilot metrics, see Metrics and validation.
Sample weights should be numeric, non-negative, with larger values indicating which rows are more important than others. Data points that have invalid or no weight value are excluded.
Support for sample weights is available in Ensembling mode only.
sourcepub fn get_sample_weight_attribute_name(&self) -> &Option<String>
pub fn get_sample_weight_attribute_name(&self) -> &Option<String>
If specified, this column name indicates which column of the dataset should be treated as sample weights for use by the objective metric during the training, evaluation, and the selection of the best model. This column is not considered as a predictive feature. For more information on Autopilot metrics, see Metrics and validation.
Sample weights should be numeric, non-negative, with larger values indicating which rows are more important than others. Data points that have invalid or no weight value are excluded.
Support for sample weights is available in Ensembling mode only.
sourcepub fn build(self) -> AutoMlChannel
pub fn build(self) -> AutoMlChannel
Consumes the builder and constructs a AutoMlChannel
.
Trait Implementations§
source§impl Clone for AutoMlChannelBuilder
impl Clone for AutoMlChannelBuilder
source§fn clone(&self) -> AutoMlChannelBuilder
fn clone(&self) -> AutoMlChannelBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutoMlChannelBuilder
impl Debug for AutoMlChannelBuilder
source§impl Default for AutoMlChannelBuilder
impl Default for AutoMlChannelBuilder
source§fn default() -> AutoMlChannelBuilder
fn default() -> AutoMlChannelBuilder
source§impl PartialEq for AutoMlChannelBuilder
impl PartialEq for AutoMlChannelBuilder
source§fn eq(&self, other: &AutoMlChannelBuilder) -> bool
fn eq(&self, other: &AutoMlChannelBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.