Which algorithm can be used for multiclass classification where each row is classified into multiple classes?
Asked
Active
Viewed 51 times
-1

desertnaut
- 57,590
- 26
- 140
- 166
-
https://scholar.google.com/scholar?q=multiclass+machine+learning returns 375,000 results. You might want to narrow it down some more. – evansrhonda Oct 21 '22 at 03:29
-
Not a *programming* question, hence off-topic here; please see the intro and NOTE in https://stackoverflow.com/tags/machine-learning/info – desertnaut Oct 21 '22 at 10:47
1 Answers
1
For Multi class classification you can use the algorithms -
- KNN
- Decision Tree
- Naive Bayes
- Random Forest
And, if you are working on any Time Series data, LSTM would be a perfect algorithm to use.

Aditya
- 36
- 4
-
Good answer, you could also use Support Vector Machines (SVMClassifier) and Neural Networks in general for mulitclass classification . – Dennis Oct 21 '22 at 09:12