action visagecloud_add_svmclassifier_using_post { label: "Create new SVM classifier with given name" provider: visagecloud method: POST path: "/rest/v1.1/classifier/svm" encoding: json input: { type: "object" properties: { accessKey: { type: "string" } cParameter: { type: "string" } cacheSizeParameter: { type: "string" } classificationAttributeName: { type: "string" } collectionIds: { type: "string" } considerViewPoints: { type: "string" } epsParameter: { type: "string" } gammaParameter: { type: "string" } kernelTypeParameter: { type: "string" } name: { type: "string" } nuParameter: { type: "string" } preprocessor: { type: "string" } probabilityParameter: { type: "string" } secretKey: { type: "string" } seed: { type: "string" } svmTypeParameter: { type: "string" } trainingRatio: { type: "string" } } required: ["accessKey", "classificationAttributeName", "collectionIds", "name", "secretKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }