Hey guys,
given a working model, is it possible to apply the model on an example set with less/different attributes? I have a lot of data on which I can build the model. However, I want to make a prediction on data where this data is not yet available.
Example:
ID | Happy (Label) | Text | Legal Age |
1 | true | Lorem ipsum dolor sit amet, … | true |
2 | false | Lorem ipsum dolor sit amet, … | false |
3 | false | Lorem ipsum dolor sit amet, … | true |
4 | true | Lorem ipsum dolor sit amet, … | true |
5 | false | Lorem ipsum dolor sit amet, … | false |
As you can see, legal age correlates with the Label, but when I want to apply the model on data sets, I only have the texts. Is that possible ?
Thank you for your help.