代码搜索:Perceptron
找到约 779 项符合「Perceptron」的源代码
代码结果 779
www.eeworm.com/read/213492/15133789
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/212724/15150745
m perceptron.m
% M-file function, Perceptron.m
% 感知器
% g1 第1组实际序号
% g2 第2组实际序号
% s1 第1组样本数
% s2 第2组样本数
% w1Init w1初始值
% w2Init w2初始值
% w3Init w3初始值
% w4Init w4初始值
% theta 阈值
% eta 学习速率
% iteraMax ep
www.eeworm.com/read/175689/5343573
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/165304/5483682
java perceptron.java
import java.util.*;
public class Perceptron
{
Vector layers;
Vector inputSamples;
Vector outputSamples;
Vector inputCV;
Vector outputCV;
www.eeworm.com/read/270007/4242254
java perceptron.java
package edu.ict.discriminant;
import java.util.List;
import org.apache.commons.lang.ArrayUtils;
import edu.ict.SamplePoint;
import edu.ict.Utils;
/**
* 感知器算法实现类
*
* @author ysh
*
www.eeworm.com/read/428780/1954247
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/414590/2144611
h perceptron.h
/* Perceptron.H
*
* This class encapsulates the entire perceptron program.
*/
/*
* Copyright 1994, Brown University, Providence, RI
* See end of file for full copyright information
*/
const in
www.eeworm.com/read/414590/2144612
c perceptron.c
/* Perceptron.C
*
* This class encapsulates the entire perceptron program.
*/
/*
* Copyright 1994, Brown University, Providence, RI
* See end of file for full copyright information
*/
#include