在我们的训练集中,我们执行了特征选择(例如CfsSubsetEval GreedyStepwise),然后使用分类器(例如J48)对实例进行分类。我们保存了Weka创建的模型。
现在,我们想要对新的[未标记]实例进行分类(在进行特征选择之前,它仍具有训练集的原始属性数)。我们是否正确地假设我们应该在这组新的[未标记]实例中执行特征选择,以便我们可以使用保存的模型重新评估它(以使训练和测试集兼容)?如果是,我们如何过滤测试集?
感谢您的帮助!
答案 0 :(得分:0)
是的,测试和训练集必须具有相同数量的属性,并且每个属性必须对应于相同的事物。因此,您应该在分类之前从测试集中删除相同的属性(从训练集中删除)。
答案 1 :(得分:0)
我认为您不必在测试集上执行功能选择。如果您的测试集已具有原始数量的属性,请将其上载,然后在“预处理”窗口中,手动删除在训练集文件中选择功能期间删除的所有属性。
答案 2 :(得分:0)
您必须将相同的过滤器应用于之前应用于训练集的测试集。您也可以使用WEKA API将相同的过滤器应用于测试集。
Instances trainSet = //get training set
Instances testSet = //get testing set
AttributeSelection attsel = new AttributeSelection();//apply feature selection on training data
CfsSubsetEval ws = new CfsSubsetEval();
GreedyStepwise search = new GreedyStepwise();
attsel.setEvaluator(ws);
attsel.setSearch(search);
attsel.SelectAttributes(trainSet);
retArr = attsel.selectedAttributes();//get indicies of selected attributes
Filter remove = new Remove() //set up the filter for removing attributes
remove.setAttributeIndicesArray(retArr);
remove.setInvertSelection(true);//retain the selected,remove all others
remove.setInputFormat(trainSet);
trainSet = Filter.useFilter(trainSet, remove);
//now apply the same filter to the testing set as well
testSet = Filter.useFilter(testSet, remove);
//now you are good to go!