代码搜索:Perception
找到约 69 项符合「Perception」的源代码
代码结果 69
www.eeworm.com/read/388889/8565936
rb perception.rb
class Perception
def initialize(size)
@weight = Array.new(size+1, 1)
@size = size
@count = 0
@eta = 0.01
end
def train(input, output)
o = 0
0.upto(@size - 1) do |i|
www.eeworm.com/read/388889/8565939
rb ._perception.rb
www.eeworm.com/read/373751/9441033
m perception.m
%%%%%%%%%%%%%%感知器算法%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% command window中输出:每步迭代之后更新得到的权向量,
% 以及最终得到正确分类的权向量.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
c
www.eeworm.com/read/353601/10435908
fig perception.fig
www.eeworm.com/read/247308/12667019
cpp perception.cpp
#include "stdafx.h"
#include "perception.h"
#include "math.h"
////////////////////////////////////////////////////////////////////////////////////
CPerception::CPerception(int iSampleNum, in
www.eeworm.com/read/247308/12667040
h perception.h
#include "stdafx.h"
#include "Base.h"
#ifndef PERCEPTIONH
#define PERCEPTIONH
class CPerception
{
public:
int m_row, m_col;
int m_iSampleNum, m_iFeatureNum;
int m_iMaxEpochs, m_iItera
www.eeworm.com/read/301746/13849153
inc perception.inc
FUNCTION perception
(
clk_sel[3..0] ,
clk ,
HAC[10..0] ,
VAC[10..0] ,
act_hcounter[10..0] ,
act_vcounter[10..0] ,
vout_pulse ,
moving_dist[10..0] ,
vpositi
www.eeworm.com/read/301746/13849166
tdf perception.tdf
include "fran_pg.inc";
include "lpm_compare";
include "lpm_counter.inc";
include "lpm_add_sub.inc";
include "lpm_divide.inc";
include "lpm_ram_dp.inc";
SUBDESIGN perception
(
clk_sel[3..
www.eeworm.com/read/153016/12067018
m perception.m
%输入样本点及其相应的类别,其中有一个奇异点
a=[1,6.02876166666667,985.299,359.2246,285.8672,1002.45,950.1696,588.6987,5565.714,403.8405,986.1071,543.0317,3347.846,10526.29
2,6.55841166666667,1087.617,1089.121,1161.41,10
www.eeworm.com/read/153016/12067024
m perception1.m
%输入样本点及其相应的类别
P = [-0.5 -0.5 0.3 -0.1 0.2 0.0 0.6 0.8;
-0.5 0.5 -0.5 1.0 0.5 -0.9 0.8 -0.6];
T = [1 1 0 1 1 0 1 0 ];
%在坐标图上绘出样本点
plotpv(P,T);
%建立一个感知器网络
net=newp([-1 1;