pub struct AutoMLChannel {
pub compression_type: Option<String>,
pub data_source: AutoMLDataSource,
pub target_attribute_name: String,
}
Expand description
Similar to Channel. A channel is a named input source that training algorithms can consume. Refer to Channel for detailed descriptions.
Fields§
§compression_type: Option<String>
You can use Gzip or None. The default value is None.
data_source: AutoMLDataSource
The data source.
target_attribute_name: String
The name of the target variable in supervised learning, a.k.a. 'y'.
Trait Implementations§
Source§impl Clone for AutoMLChannel
impl Clone for AutoMLChannel
Source§fn clone(&self) -> AutoMLChannel
fn clone(&self) -> AutoMLChannel
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 AutoMLChannel
impl Debug for AutoMLChannel
Source§impl Default for AutoMLChannel
impl Default for AutoMLChannel
Source§fn default() -> AutoMLChannel
fn default() -> AutoMLChannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLChannel
impl<'de> Deserialize<'de> for AutoMLChannel
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 AutoMLChannel
impl PartialEq for AutoMLChannel
Source§impl Serialize for AutoMLChannel
impl Serialize for AutoMLChannel
impl StructuralPartialEq for AutoMLChannel
Auto Trait Implementations§
impl Freeze for AutoMLChannel
impl RefUnwindSafe for AutoMLChannel
impl Send for AutoMLChannel
impl Sync for AutoMLChannel
impl Unpin for AutoMLChannel
impl UnwindSafe for AutoMLChannel
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