在命令行上,我可以顺利进行滚动:
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的文档资料很少。
先谢谢!
答案 0 :(得分:0)
算了。我明白了,问题是“ s”必须用大写字母表示:
-跳过
代替
-跳过。