代码搜索:Perceptron
找到约 779 项符合「Perceptron」的源代码
代码结果 779
www.eeworm.com/read/280595/10312282
m perceptron.m
function model=perceptron(data,options,init_model)
% PERCEPTRON Perceptron algorithm to train binary linear classifier.
%
% Synopsis:
% model = perceptron(data)
% model = perceptron(data,options)
%
www.eeworm.com/read/349842/10796770
m perceptron.m
function D = Perceptron(train_features, train_targets, alg_param, region)
% Classify using the Perceptron algorithm (Fixed increment single-sample perceptron)
% Inputs:
% features - Train featur
www.eeworm.com/read/467873/7003103
m perceptron.m
%perceptron.m - perceptron learning algorithm
% INput: train(:,1:M) - pattern train(:,M+1) - target
% Output: weight vector w=[w0 w1 ... wM], w0: bias
% actual output vector y
% Need to call m-fi
www.eeworm.com/read/449744/7497457
m perceptron.m
% ==========================================================
%
% Neural Networks A Classroom Approach
% Satish Kumar
% Copyright Tata McGraw Hill, 2004
www.eeworm.com/read/399996/7816755
m perceptron.m
function [test_targets, a] = Perceptron(train_patterns, train_targets, test_patterns, alg_param)
% Classify using the Perceptron algorithm (Fixed increment single-sample perceptron)
% Inputs:
%