📄 som.cpp
字号:
//this is an example of a 'Self Organizing Kohonen Map'//http://www.timestocome.com//linda macphee-cobb software@timestocome.com//this is the driver program for the kohonen network (layer.cpp)//the algorithm and other notes are there.#include "layer.cpp"int main (int argc, char **argv){ //new kohonen network network kohonen; //read in data kohonen.getData(); kohonen.readInputFile(); //set up nodes, layers and weights kohonen.createNetwork(); //train the network kohonen.train(); //dump input to a file for user kohonen.print(); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -