Enum opencv::ml::ANN_MLP_TrainingMethods
source · [−]#[repr(C)]
pub enum ANN_MLP_TrainingMethods {
BACKPROP,
RPROP,
ANNEAL,
}
Expand description
Available training methods
Variants
BACKPROP
The back-propagation algorithm.
RPROP
The RPROP algorithm. See RPROP93 for details.
ANNEAL
The simulated annealing algorithm. See Kirkpatrick83 for details.
Trait Implementations
sourceimpl Clone for ANN_MLP_TrainingMethods
impl Clone for ANN_MLP_TrainingMethods
sourcefn clone(&self) -> ANN_MLP_TrainingMethods
fn clone(&self) -> ANN_MLP_TrainingMethods
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ANN_MLP_TrainingMethods
impl Debug for ANN_MLP_TrainingMethods
sourceimpl PartialEq<ANN_MLP_TrainingMethods> for ANN_MLP_TrainingMethods
impl PartialEq<ANN_MLP_TrainingMethods> for ANN_MLP_TrainingMethods
sourcefn eq(&self, other: &ANN_MLP_TrainingMethods) -> bool
fn eq(&self, other: &ANN_MLP_TrainingMethods) -> bool
impl Copy for ANN_MLP_TrainingMethods
impl Eq for ANN_MLP_TrainingMethods
impl StructuralEq for ANN_MLP_TrainingMethods
impl StructuralPartialEq for ANN_MLP_TrainingMethods
Auto Trait Implementations
impl RefUnwindSafe for ANN_MLP_TrainingMethods
impl Send for ANN_MLP_TrainingMethods
impl Sync for ANN_MLP_TrainingMethods
impl Unpin for ANN_MLP_TrainingMethods
impl UnwindSafe for ANN_MLP_TrainingMethods
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more