BI
文章平均质量分 56
DarkForest-YaoHWang
奋斗
展开
-
MATLAB 感知机简单实现
% Examples% --------% lhs = [-1;1;-1];% rhs = [1;1;-1];% [w,b] = perceptron(lhs,rhs)function [w,b] = perceptron(lhs,rhs)% Author:Yao H. Wang% perceptron Summary of this function原创 2011-11-29 12:08:56 · 1272 阅读 · 0 评论 -
Hebbian学习规则 1神经元 简单实现
% Examples% --------% p1 = [-1;1;-1];% t1 = -1;% p2 = [1;1;-1];% t2 = 1;% w = hebbian_learning(p1,t1,p2,t2)function w = hebbian_learning(p1,t1,p2,t2)% Author:Yao H. Wang% h原创 2011-11-29 13:59:26 · 2864 阅读 · 0 评论 -
Hebbian学习规则 2神经元 简单实现
//hebbian_learning2.m% Examples% --------% p1 = [1;1;-1;1];% t1 = 0;% p2 = [1;-1;1;1];% t2 = 0;% p3 = [-1;-1;-1;1]% t3 = 1;% w1 = hebbian_learning2(p1,t1,p2,t2,p3,t3)% t原创 2011-12-02 13:29:58 · 1578 阅读 · 0 评论