pub enum DatasetError {
UnknownColumn(String),
UnsupportedColumnType {
column: String,
type_name: &'static str,
},
EncodingMismatch {
column: String,
encoding: &'static str,
column_type: &'static str,
},
NullCategorical {
column: String,
row: u32,
},
EmptySplit(Split),
InvalidFractions {
train: f64,
val: f64,
test: f64,
},
BadBatchSize(usize),
NoFeatures,
OrphanEncoding(String),
Tidy(String),
Shape(String),
}Variants§
UnknownColumn(String)
UnsupportedColumnType
EncodingMismatch
NullCategorical
Categorical encoding requested but the column row at this index is null. Phase 1 does not have a null policy — this is an error.
EmptySplit(Split)
InvalidFractions
Fractions must each be in [0, 1] and sum to ≤ 1.
BadBatchSize(usize)
NoFeatures
OrphanEncoding(String)
Encoding was registered for a column not in feature_cols or
label_col.
Tidy(String)
Shape(String)
Trait Implementations§
Source§impl Clone for DatasetError
impl Clone for DatasetError
Source§fn clone(&self) -> DatasetError
fn clone(&self) -> DatasetError
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 DatasetError
impl Debug for DatasetError
Source§impl Display for DatasetError
impl Display for DatasetError
Source§impl Error for DatasetError
impl Error for DatasetError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<TidyError> for DatasetError
impl From<TidyError> for DatasetError
Source§impl PartialEq for DatasetError
impl PartialEq for DatasetError
Source§fn eq(&self, other: &DatasetError) -> bool
fn eq(&self, other: &DatasetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatasetError
Auto Trait Implementations§
impl Freeze for DatasetError
impl RefUnwindSafe for DatasetError
impl Send for DatasetError
impl Sync for DatasetError
impl Unpin for DatasetError
impl UnsafeUnpin for DatasetError
impl UnwindSafe for DatasetError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more