C語言實現單層感知器

根據perceptron 學習規則(Rosenblatt 提出 )用C語言實現單層感知器。代碼以下。 #include<stdio.h> #include<stdlib.h> int nTrain=7; //訓練樣本數量 int nInput=3; //訓練樣本維度 double delta=0.1; //學習速率 int nTest=1; //測試樣本數量 int maxItre =100
相關文章
相關標籤/搜索