【发布时间】:2018-11-29 03:24:10
【问题描述】:
在命令行上,我可以毫无问题地进行此操作:
java weka.Run weka.classifiers.timeseries.WekaForecaster -W
"weka.classifiers.functions.MultilayerPerceptron -L 0.01 -M 0.2 -N 500 -V 0 -S 0 -E 20 -H 20 " -t "C:\MyFile.arff" -F DirectionNumeric -L 1 -M 3 -prime 3 -horizon 6 -holdout 100 -G TradeDay -dayofweek -weekend -future
但是一旦我尝试放置跳过列表,我就会开始收到错误消息,说它缺少一个不在跳过列表中的日期,即使日期实际上在上面:
java weka.Run weka.classifiers.timeseries.WekaForecaster -W "weka.classifiers.functions.MultilayerPerceptron -L 0.01 -M 0.2 -N 500 -V 0 -S 0 -E 20 -H 20 " -t "C :\MyFile.arff" -F DirectionNumeric -L 1 -M 3 -prime 3 -horizon 6 -holdout 100 -G TradeDay -dayofweek -weekend -future -skip ""2014-06-07@yyyy-MM-dd, 2014 -06-12"
有谁知道如何让这个工作?据我所知,Weka 的文档很少。
提前致谢!
【问题讨论】:
标签: attributes command arguments line weka