aima.core.learning.neural.RabbitEyeDataSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
package aima.core.learning.neural;
import java.util.ArrayList;
/**
* @author Ravi Mohan
*
*/
public class RabbitEyeDataSet extends NNDataSet {
@Override
public void setTargetColumns() {
// assumed that data from file has been pre processed
// TODO this should be
// somewhere else,in the
// super class.
// Type != class Aargh! I want more
// powerful type systems
targetColumnNumbers = new ArrayList();
targetColumnNumbers.add(1); // using zero based indexing
}
}