C# 클래스 Encog.Persist.Persistors.BasicNetworkPersistor

The Encog persistor used to persist the BasicNetwork class.
상속: IPersistor
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Load ( ReadXML xmlIn ) : IEncogPersistedObject

Load the specified Encog object from an XML reader.

Save ( IEncogPersistedObject obj, WriteXML xmlOut ) : void

Save the specified Encog object to an XML writer.

비공개 메소드들

메소드 설명
HandleLayers ( ReadXML xmlIn ) : void

Handle any layers that should be loaded.

HandleLogic ( ReadXML xmlIn ) : void

Load the neural logic object.

HandleProperties ( ReadXML xmlIn ) : void

Load the properties.

HandleSynapses ( ReadXML xmlIn ) : void

Process any synapses that should be loaded.

HandleTags ( ReadXML inXML ) : void
SaveLayers ( WriteXML xmlOut ) : void

Save the layers to the specified XML writer.

SaveLogic ( WriteXML xmlOut ) : void

Save the neural logic object.

SaveProperties ( WriteXML xmlOut ) : void

Save the neural properties.

SaveSynapses ( WriteXML xmlOut ) : void

Save the synapses to the specified XML writer.

SaveTags ( WriteXML outXML ) : void

메소드 상세

Load() 공개 메소드

Load the specified Encog object from an XML reader.
public Load ( ReadXML xmlIn ) : IEncogPersistedObject
xmlIn Encog.Parse.Tags.Read.ReadXML The XML reader to use.
리턴 IEncogPersistedObject

Save() 공개 메소드

Save the specified Encog object to an XML writer.
public Save ( IEncogPersistedObject obj, WriteXML xmlOut ) : void
obj IEncogPersistedObject The object to save.
xmlOut Encog.Parse.Tags.Write.WriteXML The XML writer to save to.
리턴 void