What are good ways to extend an ML model with a new class without relabeling all previous data?
Problem with data representing classes that weren't present during supervised training
Suppose we have trained a model for classifying a problem with 5 classes. Now if we you use the same model without re-training the model, for a problem with 7 classes what happens? there are still the 5 previous classes with two additional classes.
What conditions the runtime data should have so that the original model perform good on the new data?
What are the terms used by specialists or academics for this problem?