pub struct NeuralCrfGrad {
pub w1: Vec<f64>,
pub b1: Vec<f64>,
pub w2: Vec<f64>,
pub b2: Vec<f64>,
pub transitions: Vec<f64>,
}Expand description
Fields§
§w1: Vec<f64>Gradient w.r.t. w1.
b1: Vec<f64>Gradient w.r.t. b1.
w2: Vec<f64>Gradient w.r.t. w2.
b2: Vec<f64>Gradient w.r.t. b2.
transitions: Vec<f64>Gradient w.r.t. transitions.
Trait Implementations§
Source§impl Clone for NeuralCrfGrad
impl Clone for NeuralCrfGrad
Source§fn clone(&self) -> NeuralCrfGrad
fn clone(&self) -> NeuralCrfGrad
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NeuralCrfGrad
impl RefUnwindSafe for NeuralCrfGrad
impl Send for NeuralCrfGrad
impl Sync for NeuralCrfGrad
impl Unpin for NeuralCrfGrad
impl UnsafeUnpin for NeuralCrfGrad
impl UnwindSafe for NeuralCrfGrad
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