⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pattern.java

📁 All the tool for build a network able to reconize any shapes. Very complete, a good base for anythi
💻 JAVA
字号:
package neuralNetwork;
/*
Coded by Aydin Gurel, 2003
The code is free, but please contact me if you wish to use the code entirely or partially in any kind of project so that I can reference it and please don't delete these lines so that other people can reach this information. Also, please inform me if you encounter a bug.
aydingurel@hotmail.com
http://aydingurel.brinkster.com/neural
*/

// represents a pattern
class Pattern {
	public double[] input;
	public double[] target;
	public boolean selected;
	// constructor
	public Pattern (double[] temp_inputs, double[] temp_targets) {
		input = new double[temp_inputs.length];
		target = new double[temp_targets.length];
		for ( int i = 0; i < temp_inputs.length; i++) {
			input[i] = temp_inputs[i];
		}
		for ( int i = 0; i < temp_targets.length; i++) {
			target[i] = temp_targets[i];
		}
		selected = false;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -