Enum crfsuite::Algorithm[][src]

pub enum Algorithm {
    LBFGS,
    L2SGD,
    AP,
    PA,
    AROW,
}

The training algorithm

Variants

Gradient descent using the L-BFGS method

Stochastic Gradient Descent with L2 regularization term

Averaged Perceptron

Passive Aggressive

Adaptive Regularization Of Weight Vector

Trait Implementations

impl Debug for Algorithm
[src]

Formats the value using the given formatter. Read more

impl Clone for Algorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Algorithm
[src]

impl PartialEq for Algorithm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Algorithm
[src]

Formats the value using the given formatter. Read more

impl FromStr for Algorithm
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for Algorithm

impl Sync for Algorithm