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

com.github.chen0040.mlp.ann.MLPTrainParam Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.chen0040.mlp.ann;

public class MLPTrainParam {
	public MLPTrainParam(int max_epoches, int training_epoches, int max_stagnation_epoches, double min_test_error)
	{
		this.min_test_error=min_test_error;
		this.max_epoches=max_epoches;
		this.max_stagnation_epoches=max_stagnation_epoches;
		this.training_epoches=training_epoches;
	}
	
	public MLPTrainParam()
	{
		
	}
	
	public double min_test_error=0.01;
	public int max_epoches=2000;
	public int max_stagnation_epoches=2000;
	public int training_epoches=1;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy