org.encog.ml
Interface MLResettable

All Superinterfaces:
MLMethod
All Known Implementing Classes:
ART1, BasicNetwork, BayesianNetwork, BoltzmannMachine, CPN, FreeformNetwork, HopfieldNetwork, RBFNetwork, SOM, ThermalNetwork

public interface MLResettable
extends MLMethod

Defines a Machine Learning Method that can be reset to an untrained starting point. Most weight based machine learning methods, such as neural networks support this. Support vector machines do not.


Method Summary
 void reset()
          Reset the weights.
 void reset(int seed)
          Reset the weights with a seed.
 

Method Detail

reset

void reset()
Reset the weights.


reset

void reset(int seed)
Reset the weights with a seed.

Parameters:
seed - The seed value.


Copyright © 2014. All Rights Reserved.