All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aima.core.learning.neural.RabbitEyeDataSet Maven / Gradle / Ivy

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
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
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy