svm demo test
SVMUtilities
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| CreateTwoClassProblem | 1 | Create a randomized two class classification problem for the demo test. |
| CreateMulticlassProblem | 1 | Create a randomized multiclass classification problem for the demo test. |
| CreateRegressionProblem | 1 | Create a randomized support vector regression problem for the demo test: the label value is calculated as x = 2 * y + z. |
03 Fields
| Name | Overloads | Summary |
|---|---|---|
| TRAINING_SEED | 2 | The random seed value which is used for generating the training data. |
| TESTING_SEED | 2 | The random seed value which is used for generating the testing data. |
04 Members
Int32, Boolean)Create a randomized two class classification problem for the demo test.
| Name | Type | Description |
|---|---|---|
count | Int32 | The total number of the samples. |
isTraining | Boolean |
|
A Problem object in which the points are located on either side of the vertical axis.
Int32, Int32, Boolean)Create a randomized multiclass classification problem for the demo test. The points of each class are located in one of the eight octants of the three dimensional space.
| Name | Type | Description |
|---|---|---|
numberOfClasses | Int32 | The number of the target classes, this value should be less than 8. |
count | Int32 | The total number of the samples. |
isTraining | Boolean |
|
A Problem object which contains the randomized samples.
Int32, Boolean)Create a randomized support vector regression problem for the demo test: the label value is calculated as x = 2 * y + z.
| Name | Type | Description |
|---|---|---|
count | Int32 | The total number of the samples. |
isTraining | Boolean |
|
A Problem object which contains the randomized samples.
The random seed value which is used for generating the training data.
The random seed value which is used for generating the testing data.