Method | Description | |
---|---|---|
CreateAlgorithm ( ) : ISupervisedLearning |
Creates a
|
|
CreateMachine ( ) : Accord.MachineLearning.VectorMachines.SupportVectorMachine |
Creates a SupportVectorMachine that attends the requisites specified in this model.
|
|
LibSvmModel ( ) : System |
Creates a new LibSvmModel object.
|
|
Load ( Stream stream ) : |
Loads a model specified using LibSVM's model format from a stream.
|
|
Load ( string path ) : |
Loads a model specified using LibSVM's model format from disk.
|
|
Save ( Stream stream ) : void |
Saves this model to disk using LibSVM's model format.
|
|
Save ( string path ) : void |
Saves this model to disk using LibSVM's model format.
|
public CreateAlgorithm ( ) : ISupervisedLearning |
||
return | ISupervisedLearning |
public CreateMachine ( ) : Accord.MachineLearning.VectorMachines.SupportVectorMachine | ||
return | Accord.MachineLearning.VectorMachines.SupportVectorMachine |
public static Load ( Stream stream ) : |
||
stream | Stream | The stream from where the model should be loaded. |
return |
public static Load ( string path ) : |
||
path | string | The file path from where the model should be loaded. |
return |
public Save ( Stream stream ) : void | ||
stream | Stream | The stream where the file should be written. |
return | void |
public Save ( string path ) : void | ||
path | string | The path where the file should be written. |
return | void |