The Encog Project

org.encog.neural.persist.persistors
Class SOMLayerPersistor

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

public class SOMLayerPersistor
extends java.lang.Object
implements Persistor

Persist a som.

Author:
jheaton

Field Summary
static java.lang.String NORM_TYPE_MULTIPLICATIVE
          String token for the multiplicative normalization method.
static java.lang.String NORM_TYPE_Z_AXIS
          String token for the z-axis normalization method.
 
Constructor Summary
SOMLayerPersistor()
           
 
Method Summary
 EncogPersistedObject load(org.w3c.dom.Element layerNode)
          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
 

Field Detail

NORM_TYPE_MULTIPLICATIVE

public static final java.lang.String NORM_TYPE_MULTIPLICATIVE
String token for the multiplicative normalization method.

See Also:
Constant Field Values

NORM_TYPE_Z_AXIS

public static final java.lang.String NORM_TYPE_Z_AXIS
String token for the z-axis normalization method.

See Also:
Constant Field Values
Constructor Detail

SOMLayerPersistor

public SOMLayerPersistor()
Method Detail

load

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

Specified by:
load in interface Persistor
Parameters:
layerNode - 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