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;








3












$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?










share|improve this question









$endgroup$


















    3












    $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?










    share|improve this question









    $endgroup$














      3












      3








      3





      $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?










      share|improve this question









      $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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 18 at 8:11









      grvkgpgrvkgp

      162 bronze badges




      162 bronze badges




















          2 Answers
          2






          active

          oldest

          votes


















          2












          $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.






          share|improve this answer









          $endgroup$




















            2












            $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.






            share|improve this answer








            New contributor



            nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.





            $endgroup$















              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
              );



              );













              draft saved

              draft discarded


















              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









              2












              $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.






              share|improve this answer









              $endgroup$

















                2












                $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.






                share|improve this answer









                $endgroup$















                  2












                  2








                  2





                  $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.






                  share|improve this answer









                  $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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jun 18 at 9:16









                  Alexis PisterAlexis Pister

                  1497 bronze badges




                  1497 bronze badges























                      2












                      $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.






                      share|improve this answer








                      New contributor



                      nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.





                      $endgroup$

















                        2












                        $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.






                        share|improve this answer








                        New contributor



                        nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.





                        $endgroup$















                          2












                          2








                          2





                          $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.






                          share|improve this answer








                          New contributor



                          nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          $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.







                          share|improve this answer








                          New contributor



                          nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.








                          share|improve this answer



                          share|improve this answer






                          New contributor



                          nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.








                          answered Jun 18 at 9:23









                          nagnag

                          314 bronze badges




                          314 bronze badges




                          New contributor



                          nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.




                          New contributor




                          nag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





























                              draft saved

                              draft discarded
















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                              Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                              Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form