The Encog Project

org.encog.neural.persist.persistors
Class ActivationSigmoidPersistor

java.lang.Object
  extended by org.encog.neural.persist.persistors.ActivationSigmoidPersistor
All Implemented Interfaces:
Persistor

public class ActivationSigmoidPersistor
extends java.lang.Object
implements Persistor

Persist the sigmoid activation function.

Author:
jheaton

Constructor Summary
ActivationSigmoidPersistor()
           
 
Method Summary
 EncogPersistedObject load(org.w3c.dom.Element node)
          Load from the specified node.
 void save(EncogPersistedObject object, javax.xml.transform.sax.TransformerHandler hd)
          Save the specified object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActivationSigmoidPersistor

public ActivationSigmoidPersistor()
Method Detail

load

public EncogPersistedObject load(org.w3c.dom.Element node)
Load from the specified node.

Specified by:
load in interface Persistor
Parameters:
node - The node to load from.
Returns:
The EncogPersistedObject that was loaded.

save

public void save(EncogPersistedObject object,
                 javax.xml.transform.sax.TransformerHandler hd)
Save the specified object.

Specified by:
save in interface Persistor
Parameters:
object - The object to save.
hd - The XML object.

The Encog Project