pub enum GraphicalModel {
CRF1D,
}
Expand description
The graphical model
Variants§
CRF1D
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§
Source§impl Clone for GraphicalModel
impl Clone for GraphicalModel
Source§fn clone(&self) -> GraphicalModel
fn clone(&self) -> GraphicalModel
Returns a duplicate of the value. Read more
1.0.0 · 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 GraphicalModel
impl Debug for GraphicalModel
Source§impl Display for GraphicalModel
impl Display for GraphicalModel
Source§impl FromStr for GraphicalModel
impl FromStr for GraphicalModel
Source§impl PartialEq for GraphicalModel
impl PartialEq for GraphicalModel
impl Copy for GraphicalModel
impl StructuralPartialEq for GraphicalModel
Auto Trait Implementations§
impl Freeze for GraphicalModel
impl RefUnwindSafe for GraphicalModel
impl Send for GraphicalModel
impl Sync for GraphicalModel
impl Unpin for GraphicalModel
impl UnwindSafe for GraphicalModel
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