The JSON serializable storage model of a SVMMultipleSet object.
SVMMultipleSetJSON
01 Syntax
Microsoft.VisualBasic.MachineLearning.SVM.StorageProcedure.SVMMultipleSetJSON
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| CreateJSONModel | 1 | Create the JSON storage model from a SVMMultipleSet object. |
| ToString | 1 | Display this storage model as a json string. |
| CreateSVMModel | 1 | Restore the SVMMultipleSet object from this JSON storage model. |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| dimensionNames | 1 | The names of the feature dimensions of the model set. |
| topics | 1 | The JSON storage model of each model in the set, the dictionary key is the name of the target class. |
04 Members
CreateJSONModel(SVMMultipleSet)
Create the JSON storage model from a SVMMultipleSet object.
Parameters
| Name | Type | Description |
|---|---|---|
svm | SVMMultipleSet | The trained multiple model set. |
Returns
A SVMMultipleSetJSON object which is ready for JSON serialization.
ToString
Display this storage model as a json string.
Returns
A json text which describes this model set.
CreateSVMModel
Restore the SVMMultipleSet object from this JSON storage model.
Returns
A SVMMultipleSet object which is reconstructed from the JSON data.
dimensionNames
The names of the feature dimensions of the model set.
Returns
An array of the dimension names.
topics
The JSON storage model of each model in the set, the dictionary key is the name of the target class.
Returns
A dictionary which maps the class name to its SvmModelJSON.