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

Provides basic functions that many of the persistors will need.
상속: IPersistor
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

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

Load the specified Encog object from an XML reader.

LoadActivation ( String type, ReadXML xmlIn ) : IActivationFunction

Load the specified activation function.

Save ( IEncogPersistedObject obj, WriteXML xmlOut ) : void

Save the specified Encog object to an XML writer.

SaveActivationFunction ( IActivationFunction activationFunction, WriteXML xmlOut ) : void

Save the activation function.

메소드 상세

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

LoadActivation() 공개 정적인 메소드

Load the specified activation function.
public static LoadActivation ( String type, ReadXML xmlIn ) : IActivationFunction
type String The type of activation function.
xmlIn Encog.Parse.Tags.Read.ReadXML The XML.
리턴 IActivationFunction

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

SaveActivationFunction() 공개 정적인 메소드

Save the activation function.
public static SaveActivationFunction ( IActivationFunction activationFunction, WriteXML xmlOut ) : void
activationFunction IActivationFunction The activation function.
xmlOut Encog.Parse.Tags.Write.WriteXML The XML.
리턴 void