Click or drag to resize

MultilayerPerceptronSettings Structure

The neural network settings.

Namespace:  RavingBots.MagicGestures.AI.Neural.Classic
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
[SerializableAttribute]
public struct Settings : IEquatable<MultilayerPerceptronSettings>

The MultilayerPerceptronSettings type exposes the following members.

Properties
  NameDescription
Public propertyIsValid
if the settings are correct.
Top
Methods
  NameDescription
Public methodEquals(Object)
Compare two MultilayerPerceptronSettings objects for equality.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(MultilayerPerceptronSettings)
Compare two MultilayerPerceptronSettings objects for equality.
Public methodStatic memberGetDefault
Create default settings based on a sample.
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Top
Fields
  NameDescription
Public fieldFuncType
The activation function used by the network's neurons.
Public fieldHiddenLayers
The specification of the network's hidden layers.
Public fieldInputCount
The number of the network's inputs. Must be non-negative.
Public fieldOutputCount
The number of the network's outputs. Must be non-negative.
Top
See Also