som.cpp

来自「自组织 Kohonen 映射程序」· C++ 代码 · 共 35 行

CPP
35
字号
//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 + =
减小字号Ctrl + -
显示快捷键?