I have a dataset with some nominal values as features. The training set I have has a set of values for the nominal features which are absent in my test set. For instance my feature in the training set corresponds to
@attribute h4 {br,pl,com,ro,th,np}
and the same feature in the test set has
@attribute h4 {br,pl,abc,th,def,ghi,lmno}
I believe because of this, weka is not allowing me to re-evaluate the model I built on my training set on my test set. Is there a way around this? Am I missing something?
EDIT: I'm using a RandomForest classifier.
Thanks