List of usage examples for weka.classifiers.functions MultilayerPerceptron main
public static void main(String[] argv)
From source file:org.sr.recognition.paleo.paleoNN.PaleoTrainer.java
License:BSD License
/** * @param args/* w ww. j av a 2 s . c o m*/ * @throws Exception */ public static void main(String[] args) throws Exception { PaleoTrainer t = new PaleoTrainer(new File(args[0]), new File(args[1])); MultilayerPerceptron.main(new String[] { "-t", args[1], "-d", args[2] }); }