I have a Category and Value model built on ML.Net. Category is my label and the prediction. If I pass a single input it gives me the prediction accordingly.
I want to input multiple inputs for a particular Category and get predication according to that. Because it's very accurate than the single input.
I want to pass a string array to my model and get the predicted category. The string array represents a single category. (All strings belong to one category)
The data looks like this
Category1 | Category2 | Category3 |
---|---|---|
Item1 | Item5 | Item9 |
Item2 | Item6 | Item10 |
Item3 | Item7 | Item11 |
Item4 | Item8 | Item12 |
Please suggest to me any idea for achieving that.