I have a two columns in an excel file. Row 1 has the exact user input, and row 2 has its cause. e.g.
ROW 1 ROW 2
money deducted cause 1
delivery is late cause 2
something here cause 48
payment problem cause 1
. .
. .
The task is to implement a classifier that next time when a particular user input is given it can classify as one of the causes i.e. make the classifier learn of these cases and predict future values.
I have some knowledge about classification, but I just really want an idea how can I implement this using a one vs rest classifier.