Class: SigmoidNeuron

SigmoidNeuron

new SigmoidNeuron()

The SigmoidNeuron is a neuron that, given an array of input bits, takes the product of those bits and their weights, plus the neuron's "bias", and returns the negative inverse of that value. Unlike a Perceptron, the SigmoidNeuron returns values between 0 and 1.
Implements:
Source:

Methods

_process(input)

Given an array of input bits, takes the product of those bits and their weights, plus the neuron's "bias", and returns the negative inverse of that value.
Parameters:
Name Type Description
input array An array of input bits.
Source: