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

com.bnd.math.domain.learning.TrainingPair Maven / Gradle / Ivy

The newest version!
package com.bnd.math.domain.learning;

import java.util.List;

/**
 * @author © Peter Banda
 * @since 2012
 */
public class TrainingPair {

	private List input;
	private List desiredOutput;

	public TrainingPair() {
		// nothing to do
	}

	public List getInput() {
		return input;
	}

	public void setInput(List input) {
		this.input = input;
	}

	public List getDesiredOutput() {
		return desiredOutput;
	}

	public void setDesiredOutput(List desiredOutput) {
		this.desiredOutput = desiredOutput;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy