代码搜索:Perceptron
找到约 779 项符合「Perceptron」的源代码
代码结果 779
www.eeworm.com/read/339633/12213812
pdf perceptron.pdf
www.eeworm.com/read/150760/12266108
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/338524/12295110
m perceptron.m
% ==========================================================
%
% Neural Networks A Classroom Approach
% Satish Kumar
% Copyright Tata McGraw Hill, 2004
www.eeworm.com/read/337827/12339323
class perceptron.class
www.eeworm.com/read/337827/12339338
java perceptron.java
public class Perceptron {
double x[]; //样本输入
double yd[]; //样本标准
double o[];
double o1[];
double o2[]; //输出
double w[][]; //权值
int inNum; //输入节点数
int
www.eeworm.com/read/131588/14136253
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/130490/14189981
c perceptron.c
/* Copyright (C) 2001-2002 Mikael Ylikoski
* See the accompanying file "README" for the full copyright notice */
/**
* @file
* Perceptron learning algorithm.
* FIXME remove bias term (use autobia
www.eeworm.com/read/129915/14217680
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