gpt4 book ai didi

machine-learning - 在MOA中使用CSV文件作为流资源

转载 作者:行者123 更新时间:2023-11-30 08:47:02 27 4
gpt4 key购买 nike

如何使用 csv 文件作为 MOA 中的流源?在 MOA 的 GUI 中,只有一些使用生成器的选项。我可以使用自己存储在 csv 文件中的数据作为流媒体源吗?

最佳答案

您可以使用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
}

关于machine-learning - 在MOA中使用CSV文件作为流资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35920672/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com