Trained and Test data have different number of attributes that gave an error “Train and test set are not compatible”

≯℡__Kan透↙ 提交于 2019-12-25 03:02:46

问题


I use WEKA for Text classification , I have trained data set , and I apply StringToWOrdVector and NumericToNominal filters , and have test data set and applied the same filters on it . When I try to apply my model on test data ,it gave me the following error Train and test set are not compatible I searched for a solution , the error occurred because number of attributes different between two sets, and it always be different because texts in two sets are different

How I can solve this error please ?


回答1:


The best thing you can do is combine your training and test set into one file and then apply the filter to it all in one go, then split them up again and copy the @attribute values from the combined file into both the training and test files. This way the attributes will be consistent across both files.



来源:https://stackoverflow.com/questions/33337500/trained-and-test-data-have-different-number-of-attributes-that-gave-an-error-tr

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!