pub enum KMeansParamsError {
NClusters,
NRuns,
Tolerance,
MaxIterations,
}
Expand description
An error when fitting with an invalid hyperparameter
Variants§
Trait Implementations§
source§impl Debug for KMeansParamsError
impl Debug for KMeansParamsError
source§impl Display for KMeansParamsError
impl Display for KMeansParamsError
source§impl Error for KMeansParamsError
impl Error for KMeansParamsError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<M: Debug> From<KMeansParamsError> for IncrKMeansError<M>
impl<M: Debug> From<KMeansParamsError> for IncrKMeansError<M>
source§fn from(source: KMeansParamsError) -> Self
fn from(source: KMeansParamsError) -> Self
Converts to this type from the input type.
source§impl From<KMeansParamsError> for KMeansError
impl From<KMeansParamsError> for KMeansError
source§fn from(source: KMeansParamsError) -> Self
fn from(source: KMeansParamsError) -> Self
Converts to this type from the input type.