【发布时间】:2015-06-17 05:08:07
【问题描述】:
一旦我训练并生成了一个模型,到目前为止,从我所看到的示例来看,我们正在使用一个测试集,我们必须在其中输入实际值和预测值,有没有一种方法可以让我把这个实际值在进行预测时,列为空或根本无法使用它
如果我举个例子,下面是我的训练集
@relation supermarket
@attribute 'department1' { t}
@attribute 'department2' { t}
@attribute 'department3' { t}
@attribute value
并且正在使用类似的测试集
@relation supermarket
@attribute 'department1' { t}
@attribute 'department2' { t}
@attribute 'department3' { t}
@attribute value
和输出类似
@relation supermarket
@attribute 'department1' { t}
@attribute 'department2' { t}
@attribute 'department3' { t}
@attribute value
@attribute predicted-value
@attribute predicted-margin
我的问题是我可以从测试集中删除值还是将其保留为空
【问题讨论】:
标签: weka