pub struct SelforganizingNetwork<A, T, R, L>where
    A: Adaptable<NeuralLayer, R>,
    T: Topological<NeuralLayer>,
    R: Responsive<NeuralLayer>,
    L: Trainable<NeuralLayer, A, R>,{
    pub neurons: NeuralLayer,
    pub adaptivity: A,
    pub topology: T,
    pub responsiveness: R,
    pub training: L,
}
Expand description

Struct that implements structural composition

Fields§

§neurons: NeuralLayer

needs to be nested to share it with the algorithms

§adaptivity: A

Algorithm for adaptivity

§topology: T

Algorithm related to topology

§responsiveness: R

Algorithm to feature pattern matching and lateral inhibition

§training: L

Algorithm related to batch processing

Trait Implementations§

source§

impl<A, T, R, B> Neural for SelforganizingNetwork<A, T, R, B>where A: Adaptable<NeuralLayer, R>, T: Topological<NeuralLayer>, R: Responsive<NeuralLayer>, B: Trainable<NeuralLayer, A, R>,

source§

fn get_lateral(&self) -> &Array2<f64>

source§

fn get_lateral_mut(&mut self) -> &mut Array2<f64>

source§

fn set_lateral(&mut self, lateral: Array2<f64>)

source§

fn get_patterns(&self) -> &Array2<f64>

source§

fn get_patterns_mut(&mut self) -> &mut Array2<f64>

source§

fn set_patterns(&mut self, patterns: Array2<f64>)

source§

impl<A, T, R, B> Selforganizing for SelforganizingNetwork<A, T, R, B>where A: Adaptable<NeuralLayer, R>, T: Topological<NeuralLayer>, R: Responsive<NeuralLayer>, B: Trainable<NeuralLayer, A, R>,

source§

fn init_lateral(&mut self)

Init the lateral connections according to network type
source§

fn get_lateral_distance(&mut self, index: usize) -> Array2<f64>

Get the distance/connection between a selected neuron and the rest of the layer
source§

fn get_best_matching(&mut self, pattern: &ArrayView1<'_, f64>) -> usize

Get the best matching neuron given a pattern
source§

fn adapt(&mut self, pattern: &ArrayView1<'_, f64>, influence: f64, rate: f64)

Adapt the layer to an input pattern. Note this consumes the current later and returns a new created (zero-copy)
source§

fn train(&mut self, patterns: &ArrayView2<'_, f64>)

Auto Trait Implementations§

§

impl<A, T, R, L> RefUnwindSafe for SelforganizingNetwork<A, T, R, L>where A: RefUnwindSafe, L: RefUnwindSafe, R: RefUnwindSafe, T: RefUnwindSafe,

§

impl<A, T, R, L> Send for SelforganizingNetwork<A, T, R, L>where A: Send, L: Send, R: Send, T: Send,

§

impl<A, T, R, L> Sync for SelforganizingNetwork<A, T, R, L>where A: Sync, L: Sync, R: Sync, T: Sync,

§

impl<A, T, R, L> Unpin for SelforganizingNetwork<A, T, R, L>where A: Unpin, L: Unpin, R: Unpin, T: Unpin,

§

impl<A, T, R, L> UnwindSafe for SelforganizingNetwork<A, T, R, L>where A: UnwindSafe, L: UnwindSafe, R: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.