Example usage for weka.classifiers.functions MultilayerPerceptron main

List of usage examples for weka.classifiers.functions MultilayerPerceptron main

Introduction

In this page you can find the example usage for weka.classifiers.functions MultilayerPerceptron main.

Prototype

public static void main(String[] argv) 

Source Link

Document

Main method for testing this class.

Usage

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] });
}