neupy.algorithms.associative.instar module

class neupy.algorithms.associative.instar.Instar[source]

Instar is a simple unsupervised Neural Network algorithm which detects associations.

Parameters:
n_inputs : int

Number of features (columns) in the input data.

n_outputs : int

Number of outputs in the network.

weight : array-like, Initializer

Neural network weights. Value defined manually should have shape (n_inputs, n_outputs). Defaults to Normal().

step : float

Learning rate, defaults to 0.1.

show_epoch : int

This property controls how often the network will display information about training. It has to be defined as positive integer. For instance, number 100 mean that network shows summary at 1st, 100th, 200th, 300th … and last epochs.

Defaults to 1.

shuffle_data : bool

If it’s True than training data will be shuffled before the training. Defaults to True.

signals : dict, list or function

Function that will be triggered after certain events during the training.

verbose : bool

Property controls verbose output in terminal. The True value enables informative output in the terminal and False - disable it. Defaults to False.

Examples

>>> import numpy as np
>>> from neupy import algorithms
>>>
>>> train_data = np.array([
...     [0, 1, 0, 0],
...     [1, 1, 0, 0],
... ])
>>> test_cases = np.array([
...     [0, 1, 0, 0],
...     [0, 0, 0, 0],
...     [0, 0, 1, 1],
... ])
>>>
>>> instnet = algorithms.Instar(
...     n_inputs=4,
...     n_outputs=1,
...     n_unconditioned=1,
...     step=1,
...     verbose=False,
... )
>>>
>>> instnet.train(train_data, epochs=2)
>>> instnet.predict(test_cases)
array([[1],
       [0],
       [0]])

Methods

predict(X) Predicts output for the specified input.
train(X_train, epochs=100) Train neural network.
fit(*args, **kwargs) Alias to the train method.
options = {'bias': Option(class_name='BaseStepAssociative', value=ParameterProperty(name="bias")), 'n_inputs': Option(class_name='BaseStepAssociative', value=IntProperty(name="n_inputs")), 'n_outputs': Option(class_name='BaseAssociative', value=IntProperty(name="n_outputs")), 'n_unconditioned': Option(class_name='BaseStepAssociative', value=IntProperty(name="n_unconditioned")), 'show_epoch': Option(class_name='BaseNetwork', value=IntProperty(name="show_epoch")), 'shuffle_data': Option(class_name='BaseNetwork', value=Property(name="shuffle_data")), 'signals': Option(class_name='BaseNetwork', value=Property(name="signals")), 'step': Option(class_name='BaseNetwork', value=NumberProperty(name="step")), 'verbose': Option(class_name='Verbose', value=VerboseProperty(name="verbose")), 'weight': Option(class_name='BaseStepAssociative', value=ArrayProperty(name="weight"))}[source]
weight_delta(input_row, layer_output)[source]