Gradients

Struct Gradients 

Source
pub struct Gradients<V: Differentiable> { /* private fields */ }
Expand description

Accumulated gradients indexed by NodeId.

§Examples

use chainrules::{Gradients, Differentiable};
// V::Tangent is the gradient type
let mut grads = Gradients::<MyType>::new();

Implementations§

Source§

impl<V: Differentiable> Gradients<V>

Source

pub fn new() -> Self

Creates an empty gradient container.

§Examples
use chainrules::Gradients;
let grads = Gradients::<MyType>::new();
Source

pub fn get(&self, _node: NodeId) -> Option<&V::Tangent>

Returns the gradient for node, if present.

§Examples
if let Some(g) = grads.get(node) {
    // use gradient
}
Source

pub fn accumulate(&mut self, _node: NodeId, _grad: V::Tangent) -> AdResult<()>

Inserts or accumulates a gradient for node.

§Examples
grads.accumulate(node, grad);
Source

pub fn entries(&self) -> &[(NodeId, V::Tangent)]

Returns all (node, grad) entries.

§Examples
for (node, grad) in grads.entries() {
    println!("{}", node.index());
}

Trait Implementations§

Source§

impl<V: Differentiable> Default for Gradients<V>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<V> Freeze for Gradients<V>

§

impl<V> RefUnwindSafe for Gradients<V>

§

impl<V> Send for Gradients<V>
where <V as Differentiable>::Tangent: Send,

§

impl<V> Sync for Gradients<V>
where <V as Differentiable>::Tangent: Sync,

§

impl<V> Unpin for Gradients<V>
where <V as Differentiable>::Tangent: Unpin,

§

impl<V> UnwindSafe for Gradients<V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.