Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 RandomizeWeights
 ReadTrainFromFile
 Reset, FANNCSharp.AccessorEnumerator
 ResetErrno
 ResetErrstr
 ResetMSE
 RpropDecreaseFactor
 RpropDeltaMax
 RpropDeltaMin
 RpropDeltaZero
 RpropIncreaseFactor
 Run
public void RandomizeWeights(double minWeight,
double maxWeight)
Give each connection a random weight between minWeight and maxWeight
public void RandomizeWeights(int minWeight,
int maxWeight)
Give each connection a random weight between minWeight and maxWeight
public void RandomizeWeights(float minWeight,
float maxWeight)
Give each connection a random weight between minWeight and maxWeight
public bool ReadTrainFromFile(string filename)
Reads a file that stores training data.
public bool ReadTrainFromFile(string filename)
Reads a file that stores training data.
public bool ReadTrainFromFile(string filename)
Reads a file that stores training data.
public void Reset()
Resets the internal reference to the first item in the collection
public void ResetErrno()
Resets the last error number.
public void ResetErrno()
Resets the last error number.
public void ResetErrno()
Resets the last error number.
public void ResetErrstr()
Resets the last error string.
public void ResetErrstr()
Resets the last error string.
public void ResetErrstr()
Resets the last error string.
public void ResetMSE()
Resets the mean square error from the network.
public void ResetMSE()
Resets the mean square error from the network.
public void ResetMSE()
Resets the mean square error from the network.
public float RpropDecreaseFactor { get, set }
Gets or sets the rprop decrease factor.
public float RpropDecreaseFactor { get, set }
Gets or sets the rprop decrease factor.
public float RpropDecreaseFactor { get, set }
Gets or sets the rprop decrease factor.
public float RpropDeltaMax { get, set }
Gets or set the rprop delta max.
public float RpropDeltaMax { get, set }
Gets or set the rprop delta max.
public float RpropDeltaMax { get, set }
Gets or set the rprop delta max.
public float RpropDeltaMin { get, set }
Gets or sets the rprop delta min.
public float RpropDeltaMin { get, set }
Gets or sets the rprop delta min.
public float RpropDeltaMin { get, set }
Gets or sets the rprop delta min.
public float RpropDeltaZero { get, set }
Gets or sets the rprop delta zero.
public float RpropDeltaZero { get, set }
Gets or sets the rprop delta zero.
public float RpropDeltaZero { get, set }
Gets or sets the rprop delta zero.
public float RpropIncreaseFactor { get, set }
Gets or sets the increase factor used during RPROP training.
public float RpropIncreaseFactor { get, set }
Gets or sets the increase factor used during RPROP training.
public float RpropIncreaseFactor { get, set }
Gets or sets the increase factor used during RPROP training.
public double[] Run(double[] input)
Will run input through the neural network, returning an array of outputs, the number of which being equal to the number of neurons in the output layer.
public int[] Run(int[] input)
Will run input through the neural network, returning an array of outputs, the number of which being equal to the number of neurons in the output layer.
public float[] Run(float[] input)
Will run input through the neural network, returning an array of outputs, the number of which being equal to the number of neurons in the output layer.
Close