如何使用 csv 文件作为 MOA 中的流源?在 MOA 的 GUI 中,只有一些使用生成器的选项。我可以使用存储在 csv 文件中的自己的数据作为流媒体源吗?
问问题
567 次
1 回答
1
你可以像这样使用SimpleCSVStream类:
SimpleCSVStream stream = new SimpleCSVStream();
stream.csvFileOption.setValue("d:\\your_filename.csv");
stream.classIndexOption.setValue(true); //last column is class lable
stream.prepareForUse();
while (stream.hasMoreInstances()) {
InstanceExample trainInst = stream.nextInstance();
//learning code
}
于 2017-11-26T10:03:02.583 回答