Click or drag to resize
OutputPerceptron Class
A Perceptron in the OutputLayer.
Inheritance Hierarchy

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
[SerializableAttribute]
public class OutputPerceptron : Perceptron

The OutputPerceptron type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue
Returns the value of the output perceptron determined using the current Network state and inputs.
(Overrides NodeGetValue.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetValue
Sets the value of this Node.
(Inherited from Node.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyActivation
The activation function.
(Inherited from Perceptron.)
Public propertyBias
The bias for this perceptron.
(Inherited from Perceptron.)
Public propertyLayer
The Layer in which this Node exists.
(Inherited from Node.)
Top
Remarks

OutputPerceptrons are created by factory methods in Outputlayer.

OutputPerceptrons are not created directly. Instead factory methods in OutputLayer are used to create OutputPerceptrons within the OutputLayer. For example, OutputLayer.createPerceptron() creates a single OutputPerceptron.

See Also