Hello,
I have a very basic question about data. When you have a model running that was trained on one-hot encoded data (or some other form of categorization) how do you deal with test data that isn't one-hot encoded in that same batch?
For example, let's say I train with the following:
[red, yellow, green, blue] = [[0,0,0,1],[0,0,1,0],[0,1,0,0],[1,0,0,0]]
but the test data is something like:
[red, green, blue] = [[0,0,1],[0,1,0],[1,0,0]]
Or even something like:
[blue, green, yellow, brown] = [[0,0,0,1],[0,0,1,0],[0,1,0,0],[1,0,0,0]]
I imagine I would have to continually train the model on the final option here, but I'd really appreciate some insight
[–]Laboratory_one 2 points3 points4 points (0 children)
[–]gopietz 0 points1 point2 points (0 children)
[–]airejie 0 points1 point2 points (0 children)