training one SVM model for predicting more than one response variableVisualizing Support Vector Machines (SVM) with Multiple Explanatory VariablesHow synthetic sampling of data helps classifier to predict better result?Classification followed by regression to handle response variable that is usually zeroHow do I compare coefficients from my glm when I have more than one factor variable in my formula?Muti-Output Decision tree with classification and regression in outputIs it possible for a ML model to perform worse than random classification?Meaning of “TRUE” column in R RandomForest output for Importance()?one single value target variablePoor performance of SVM after training for rare events
What's the name of the logical fallacy where a debater extends a statement far beyond the original statement to make it true?
Are Captain Marvel's powers affected by Thanos breaking the Tesseract and claiming the stone?
How can I write humor as character trait?
Shouldn’t conservatives embrace universal basic income?
What kind of floor tile is this?
Why do ¬, ∀ and ∃ have the same precedence?
Did the UK lift the requirement for registering SIM cards?
Is there a RAID 0 Equivalent for RAM?
How could a planet have erratic days?
Is this part of the description of the Archfey warlock's Misty Escape feature redundant?
Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Does Doodling or Improvising on the Piano Have Any Benefits?
Has any country ever had 2 former presidents in jail simultaneously?
What is the difference between lands and mana?
Which Article Helped Get Rid of Technobabble in RPGs?
What does Apple's new App Store requirement mean
What does "Scientists rise up against statistical significance" mean? (Comment in Nature)
Stack Interview Code methods made from class Node and Smart Pointers
Multiplicative persistence
Is it ethical to recieve stipend after publishing enough papers?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
How to preserve electronics (computers, iPads and phones) for hundreds of years
US tourist/student visa
training one SVM model for predicting more than one response variable
Visualizing Support Vector Machines (SVM) with Multiple Explanatory VariablesHow synthetic sampling of data helps classifier to predict better result?Classification followed by regression to handle response variable that is usually zeroHow do I compare coefficients from my glm when I have more than one factor variable in my formula?Muti-Output Decision tree with classification and regression in outputIs it possible for a ML model to perform worse than random classification?Meaning of “TRUE” column in R RandomForest output for Importance()?one single value target variablePoor performance of SVM after training for rare events
$begingroup$
Please I want to know if there is any SVM R package that can handle more than one response variable (y) at a time. that is to train one model for predicting more than one response variable. it could be regression or multi class classification problem.
Thanks for your help
machine-learning r algorithms
$endgroup$
add a comment |
$begingroup$
Please I want to know if there is any SVM R package that can handle more than one response variable (y) at a time. that is to train one model for predicting more than one response variable. it could be regression or multi class classification problem.
Thanks for your help
machine-learning r algorithms
$endgroup$
2
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32
add a comment |
$begingroup$
Please I want to know if there is any SVM R package that can handle more than one response variable (y) at a time. that is to train one model for predicting more than one response variable. it could be regression or multi class classification problem.
Thanks for your help
machine-learning r algorithms
$endgroup$
Please I want to know if there is any SVM R package that can handle more than one response variable (y) at a time. that is to train one model for predicting more than one response variable. it could be regression or multi class classification problem.
Thanks for your help
machine-learning r algorithms
machine-learning r algorithms
asked Feb 25 '15 at 18:28
Aminu SuleimanAminu Suleiman
111
111
2
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32
add a comment |
2
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32
2
2
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
e1071 is a highly popular and therefore safe solution for this purpose.
But if data starts to get bigger I would go with classyfire. It's a quite fresh package built on e1071. It is highly optimized and have some other nice feature too. In my experience it produced similar results to e1071 but with a much faster speed as it was able to utilize all 4 core of my processor.
$endgroup$
add a comment |
$begingroup$
Check out the e1071 package, here is the manual http://cran.r-project.org/web/packages/e1071/e1071.pdf
$endgroup$
add a comment |
$begingroup$
Clarification: are we talking about multiclass
https://en.wikipedia.org/wiki/Multiclass_classification
or multilabel?
https://en.wikipedia.org/wiki/Multi-label_classification
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "557"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f5233%2ftraining-one-svm-model-for-predicting-more-than-one-response-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
e1071 is a highly popular and therefore safe solution for this purpose.
But if data starts to get bigger I would go with classyfire. It's a quite fresh package built on e1071. It is highly optimized and have some other nice feature too. In my experience it produced similar results to e1071 but with a much faster speed as it was able to utilize all 4 core of my processor.
$endgroup$
add a comment |
$begingroup$
e1071 is a highly popular and therefore safe solution for this purpose.
But if data starts to get bigger I would go with classyfire. It's a quite fresh package built on e1071. It is highly optimized and have some other nice feature too. In my experience it produced similar results to e1071 but with a much faster speed as it was able to utilize all 4 core of my processor.
$endgroup$
add a comment |
$begingroup$
e1071 is a highly popular and therefore safe solution for this purpose.
But if data starts to get bigger I would go with classyfire. It's a quite fresh package built on e1071. It is highly optimized and have some other nice feature too. In my experience it produced similar results to e1071 but with a much faster speed as it was able to utilize all 4 core of my processor.
$endgroup$
e1071 is a highly popular and therefore safe solution for this purpose.
But if data starts to get bigger I would go with classyfire. It's a quite fresh package built on e1071. It is highly optimized and have some other nice feature too. In my experience it produced similar results to e1071 but with a much faster speed as it was able to utilize all 4 core of my processor.
edited yesterday
KT12
648
648
answered Jul 27 '15 at 21:32
ViktorViktor
3841213
3841213
add a comment |
add a comment |
$begingroup$
Check out the e1071 package, here is the manual http://cran.r-project.org/web/packages/e1071/e1071.pdf
$endgroup$
add a comment |
$begingroup$
Check out the e1071 package, here is the manual http://cran.r-project.org/web/packages/e1071/e1071.pdf
$endgroup$
add a comment |
$begingroup$
Check out the e1071 package, here is the manual http://cran.r-project.org/web/packages/e1071/e1071.pdf
$endgroup$
Check out the e1071 package, here is the manual http://cran.r-project.org/web/packages/e1071/e1071.pdf
answered Feb 27 '15 at 8:13
coulminercoulminer
183
183
add a comment |
add a comment |
$begingroup$
Clarification: are we talking about multiclass
https://en.wikipedia.org/wiki/Multiclass_classification
or multilabel?
https://en.wikipedia.org/wiki/Multi-label_classification
$endgroup$
add a comment |
$begingroup$
Clarification: are we talking about multiclass
https://en.wikipedia.org/wiki/Multiclass_classification
or multilabel?
https://en.wikipedia.org/wiki/Multi-label_classification
$endgroup$
add a comment |
$begingroup$
Clarification: are we talking about multiclass
https://en.wikipedia.org/wiki/Multiclass_classification
or multilabel?
https://en.wikipedia.org/wiki/Multi-label_classification
$endgroup$
Clarification: are we talking about multiclass
https://en.wikipedia.org/wiki/Multiclass_classification
or multilabel?
https://en.wikipedia.org/wiki/Multi-label_classification
answered Jul 29 '15 at 10:37
kpbkpb
36913
36913
add a comment |
add a comment |
Thanks for contributing an answer to Data Science Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f5233%2ftraining-one-svm-model-for-predicting-more-than-one-response-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
$begingroup$
Just a little thought here. Why don't you just train one SVM for each response variable?
$endgroup$
– Pablo Suau
Feb 27 '15 at 9:15
$begingroup$
I second @PabloSuau's thought. Many packages have the capability to train multi-class classifiers, but often what's happening under the hood is that n binary classifiers are trained, and these are used individually to make predictions for each class. The SO question here also seems relevant: stackoverflow.com/questions/22009871/…
$endgroup$
– kylerthecreator
Jun 29 '15 at 19:32