Multiclass classification of textual dataMulticlass classification with large number of classes but for each user the set of target classes is knownMulti-ouput Classification + Sentiment AnalysisMulti Label Classification for a large number of labelsHow to add incorporate meta data into text classification?Multiclass classification with many classes and wide range of sample sizesImage classification: Strategies for minimal input countImbalanced data causing mis-classification on multiclass datasetVideo classification of birdsDealing with small number of examples in hierarchical text classificationDeep learning(MLP) on multiclass classification. Model learns only one class
When are digital copies of Switch games made available to play?
Sum of Parts of An Array - JavaScript
Are there any features that help with the roll to avoid the destruction of a Wand of Fireballs when using the last charge?
Why won't the ground take my seed?
What are good ways to spray paint a QR code on a footpath?
Is it bad to describe a character long after their introduction?
Can a Federation colony become a member world?
Does Anosov geodesic flow imply asphericity?
How can a valley surrounded by mountains be fertile and rainy?
In native German words, is Q always followed by U, as in English?
Symbol for "not absolutely continuous" in Latex
What does Mildred mean by this line in Three Billboards Outside Ebbing, Missouri?
Could a Weapon of Mass Destruction, targeting only humans, be developed?
Understanding Lasso Regression's sparsity geometrically
Skipping over failed imports until they are needed (if ever)
Can I ask to speak to my future colleagues before accepting an offer?
Procedurally generate regions on island
Why are 120 V general receptacle circuits limited to 20 A?
In the context of a differentiator circuit, what is a “current-sensing resistor”?
Can you sign using a digital signature itself?
Reverse of diffraction
Inquiring about the possibility of a job
What does grep -v "grep" mean and do?
Why agni is known as jaatavedas?
Multiclass classification of textual data
Multiclass classification with large number of classes but for each user the set of target classes is knownMulti-ouput Classification + Sentiment AnalysisMulti Label Classification for a large number of labelsHow to add incorporate meta data into text classification?Multiclass classification with many classes and wide range of sample sizesImage classification: Strategies for minimal input countImbalanced data causing mis-classification on multiclass datasetVideo classification of birdsDealing with small number of examples in hierarchical text classificationDeep learning(MLP) on multiclass classification. Model learns only one class
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
$begingroup$
I have a problem statement in which I have to classify the text data into various classes, but the training data is very less (250-300 data points for 4 classes). I am confused about what approach to use? Also is there any way that deep learning could be used for this problem with such a small tarining data?
deep-learning multiclass-classification text
$endgroup$
add a comment |
$begingroup$
I have a problem statement in which I have to classify the text data into various classes, but the training data is very less (250-300 data points for 4 classes). I am confused about what approach to use? Also is there any way that deep learning could be used for this problem with such a small tarining data?
deep-learning multiclass-classification text
$endgroup$
add a comment |
$begingroup$
I have a problem statement in which I have to classify the text data into various classes, but the training data is very less (250-300 data points for 4 classes). I am confused about what approach to use? Also is there any way that deep learning could be used for this problem with such a small tarining data?
deep-learning multiclass-classification text
$endgroup$
I have a problem statement in which I have to classify the text data into various classes, but the training data is very less (250-300 data points for 4 classes). I am confused about what approach to use? Also is there any way that deep learning could be used for this problem with such a small tarining data?
deep-learning multiclass-classification text
deep-learning multiclass-classification text
asked Jun 18 at 8:11
grvkgpgrvkgp
162 bronze badges
162 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
300 data points is enough to give good/average results with the traditional machine learning algorithms. You should test SVMs as they are considered good for text classification.
However, deep learning is very often used when you have a lot of data, which is not the case here. So I would not recommend it for your task.
$endgroup$
add a comment |
$begingroup$
You can try bag of words approach to extract the features from text and apply any supervised ML classifier like Naive Bayes etc to classify.
Deep Learning requires a huge set of data so I don't think it can be applied here in this case.
New contributor
$endgroup$
add a comment |
Your Answer
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%2f53996%2fmulticlass-classification-of-textual-data%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
300 data points is enough to give good/average results with the traditional machine learning algorithms. You should test SVMs as they are considered good for text classification.
However, deep learning is very often used when you have a lot of data, which is not the case here. So I would not recommend it for your task.
$endgroup$
add a comment |
$begingroup$
300 data points is enough to give good/average results with the traditional machine learning algorithms. You should test SVMs as they are considered good for text classification.
However, deep learning is very often used when you have a lot of data, which is not the case here. So I would not recommend it for your task.
$endgroup$
add a comment |
$begingroup$
300 data points is enough to give good/average results with the traditional machine learning algorithms. You should test SVMs as they are considered good for text classification.
However, deep learning is very often used when you have a lot of data, which is not the case here. So I would not recommend it for your task.
$endgroup$
300 data points is enough to give good/average results with the traditional machine learning algorithms. You should test SVMs as they are considered good for text classification.
However, deep learning is very often used when you have a lot of data, which is not the case here. So I would not recommend it for your task.
answered Jun 18 at 9:16
Alexis PisterAlexis Pister
1497 bronze badges
1497 bronze badges
add a comment |
add a comment |
$begingroup$
You can try bag of words approach to extract the features from text and apply any supervised ML classifier like Naive Bayes etc to classify.
Deep Learning requires a huge set of data so I don't think it can be applied here in this case.
New contributor
$endgroup$
add a comment |
$begingroup$
You can try bag of words approach to extract the features from text and apply any supervised ML classifier like Naive Bayes etc to classify.
Deep Learning requires a huge set of data so I don't think it can be applied here in this case.
New contributor
$endgroup$
add a comment |
$begingroup$
You can try bag of words approach to extract the features from text and apply any supervised ML classifier like Naive Bayes etc to classify.
Deep Learning requires a huge set of data so I don't think it can be applied here in this case.
New contributor
$endgroup$
You can try bag of words approach to extract the features from text and apply any supervised ML classifier like Naive Bayes etc to classify.
Deep Learning requires a huge set of data so I don't think it can be applied here in this case.
New contributor
New contributor
answered Jun 18 at 9:23
nagnag
314 bronze badges
314 bronze badges
New contributor
New contributor
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%2f53996%2fmulticlass-classification-of-textual-data%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