[scikit-learn] Supervised prediction of multiple scores for a document

2018-06-03 Thread Amirouche Boubekki
Héllo, I started a natural language processing project a few weeks ago called wikimark (the code is all in wikimark.py ) Given a text it wants to return a dictionary scoring the input agains

Re: [scikit-learn] Supervised prediction of multiple scores for a document

2018-06-03 Thread Sebastian Raschka
sorry, I had a copy & paste error, I meant "LogisticRegression(..., multi_class='multinomial')" and not "LogisticRegression(..., multi_class='ovr')" > On Jun 3, 2018, at 5:19 PM, Sebastian Raschka > wrote: > > Hi, > >> I quickly read about multinomal regression, is it something do you recom

Re: [scikit-learn] Supervised prediction of multiple scores for a document

2018-06-03 Thread Sebastian Raschka
Hi, > I quickly read about multinomal regression, is it something do you recommend > I use? Maybe you think about something else? Multinomial regression (or Softmax Regression) should give you results somewhat similar to a linear SVC (or logistic regression with OvO or OvR). The theoretical d