Enum cogent::Cost[][src]

pub enum Cost {
    Quadratic,
    Crossentropy,
}

Defines cost function of a neural network.

Variants

Quadratic

Quadratic cost function.

$ C(w,b)=\frac{1}{2n}\sum_{x} ||y(x)-a(x) ||^2 $

Crossentropy

Crossentropy cost function.

$ C(w,b) = -\frac{1}{n} \sum_{x} (y(x) \ln{(a(x))} + (1-y(x)) \ln{(1-a(x))}) $

Implementations

impl Cost[src]

pub fn run(&self, y: &Array<f32>, a: &Array<f32>) -> f32[src]

Runs cost functions.

y: Target out, a: Actual out.

pub fn derivative(&self, y: &Array<f32>, a: &Array<f32>) -> Array<f32>[src]

Derivative w.r.t. layer output (∂C/∂a).

y: Target out, a: Actual out.

Trait Implementations

impl<'de> Deserialize<'de> for Cost[src]

impl Serialize for Cost[src]

Auto Trait Implementations

impl RefUnwindSafe for Cost

impl Send for Cost

impl Sync for Cost

impl Unpin for Cost

impl UnwindSafe for Cost

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,