C# Class numl.Serialization.Supervised.NeuralNetwork.NetworkSerializer

Neural Network serializer.
Inheritance: GraphSerializer
显示文件 Open project: sethjuarez/numl

Public Methods

Method Description
CanConvert ( Type type ) : bool
Create ( ) : object
Read ( JsonReader reader ) : object

Deserializes the object from the stream.

Write ( JsonWriter writer, object value ) : void

Writes the Neural Network object to the stream.

Method Details

CanConvert() public method

public CanConvert ( Type type ) : bool
type System.Type
return bool

Create() public method

public Create ( ) : object
return object

Read() public method

Deserializes the object from the stream.
public Read ( JsonReader reader ) : object
reader JsonReader Stream to read from.
return object

Write() public method

Writes the Neural Network object to the stream.
public Write ( JsonWriter writer, object value ) : void
writer JsonWriter Stream to write to.
value object Neural Network object to write.
return void