Enum crfsuite::GraphicalModel[][src]

pub enum GraphicalModel {
    CRF1D,
}

The graphical model

Variants

The 1st-order Markov CRF with state and transition features (dyad features). State features are conditioned on combinations of attributes and labels, and transition features are conditioned on label bigrams.

Trait Implementations

impl Debug for GraphicalModel
[src]

Formats the value using the given formatter. Read more

impl Clone for GraphicalModel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for GraphicalModel
[src]

impl PartialEq for GraphicalModel
[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 GraphicalModel
[src]

Formats the value using the given formatter. Read more

impl FromStr for GraphicalModel
[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