🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

svm

User: "[Deleted User]"
New Altair Community Member
Updated by Jocelyn
Hi
how can we use svm in polynominal label ?

Find more posts tagged with

Sort by:
1 - 4 of 41
    User: "MartinLiebig"
    Altair Employee
    Accepted Answer
    Hi,
    i would recommend to use the operator Polynominal by Binominal Classification for this.

    Best,
    Martin
    User: "varunm1"
    New Altair Community Member
    Accepted Answer
    Updated by varunm1
    There are two options, you can either classify with a variant of SVM operator called LibSVM (you can find in operators) that can handle multiple classes or use a polynomial to the binomial operator that divides classes and do one on all classification. 

    You can take a look at the operators and in help, you can find a tutorial which shows how you can apply these operators.

    Thanks
    User: "varunm1"
    New Altair Community Member
    Accepted Answer
    @mbs

    Provide @Noel with your XML code if possible. You can copy and paste that from View --> Show Panel --> XML or export your process and attach it here so that he can import. This would help more compared to screenshots :smile:
    User: "varunm1"
    New Altair Community Member
    Accepted Answer
    Don't go crazy seeing bad results. First, we should understand how machine learning works. You don't get good results with every model or algorithm. A model is as good as its data. SVM is doing bad because this data set might not be the type SVM can deal with, or the features might not be suitable for SVM. GBT does better because it is a sophisticated sequential learning algorithm. This means that it builds trees one after the other and learns from the mistakes in a prior tree and improves itself. You try playing with SVM parameters in case they might change your performance, but you should have a good idea on how the parameters in SVM work. Your dataset is highly imbalanced which makes it difficult for many models to predict, also for this kind of imbalanced dataset accuracy is a bad parameter to consider. My suggestion, use kappa as your performance metric rather than accuracy. To understand more about kappa try searching google or see my explanation in some other thread related to @mbs . Finally, don't expect all the models to do well on your data. I made some minor changes in your model.