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

📄 demo2trn.rsp

📁 很经典的神经网络源程序,希望大家多多交流
💻 RSP
字号:
//
//	file:	demo2trn.rsp
//	desc:	demo2 training response file
//	by:	patrick ko shu pui
//	date:	27 apr 1992
//
//	comments:
//
//	This resp file is used to train a 2 hidden layer neural net to
//	learn an shift function.  The NN has a 4-unit input, 4-unit 
//	output, a 4-unit 1st hidden layer, and a 3-unit 2nd hidden layer.
//	The result file is contained in demo2.out where you may view
//	the output. If you output is close to 1 you may interpret it as
//	a 1, and 0 if it is close to 0.
//

// 4 input units
-i=4

// 4 output units
-o=4

// 2 hidden layers
-hh=2

// 1st hidden layer = 4 units
-h=4

// 2nd hidden layer = 3 units
-h=3

// use demo2.trn as training file
-ftrain=demo2.trn

// and there are 4 training patterns
-samp=4

// weight dump file is demo2.dmp
-fdump=demo2.dmp 

// report training status every 10 cycles
-r=10

//
// the above option in this response file is equivalent to the following command line
//
// bptrain -i=4 -o=4 -hh=2 -h=4 -h=3 -ftrain=demo2.trn -samp=4 -fdump=demo2.dmp -r=10
//
// and you should use the following command line for recognition 
//
// bprecog -i=4 -o=4 -hh=2 -h=4 -h=3 -frecog=demo2.rgn -samp=2 -fdump=demo2.dmp -fout=demo2.out
//

⌨️ 快捷键说明

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