?? 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 + -