代码搜索:bpnn

找到约 94 项符合「bpnn」的源代码

代码结果 94
www.eeworm.com/read/377658/9267107

ncb bpnn(momentum).ncb

www.eeworm.com/read/377658/9267115

plg bpnn(momentum).plg

Build Log --------------------Configuration: bpnn(momentum) - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~
www.eeworm.com/read/377658/9267117

opt bpnn(momentum).opt

www.eeworm.com/read/377658/9267118

cpp bpnn(momentum).cpp

#include #include #include #include #include #define IN 5 #define HID 8 #define OUT 1 #define n_sample 16
www.eeworm.com/read/377658/9267119

dsw bpnn(momentum).dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/377658/9267121

dsp bpnn(momentum).dsp

# Microsoft Developer Studio Project File - Name="bpnn(momentum)" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32
www.eeworm.com/read/353196/10463867

m bpnn.m

clear; %标准输入输出数据 p=[1 1 1 1 1;0 1 0 0 0;1 0 0 0 0;1 1 0 0 0;1 1 1 0 0;1 1 1 1 0]; t=[0 0 0 0 0;1 0 0 0 0;0 1 0 0 0;0 0 1 0 0;0 0 0 1 0;0 0 0 0 1]; %给权值赋初值 w1=eye(5,10); w2=eye(10,5); wr=eye(10,
www.eeworm.com/read/274547/10866108

m bpnn.m

%很多人还是在求BP算法,我传一个三层的简单程序。如果谁想要VC或C++版的,我也有! %BP neural network function BPnn(data) clear inputNums=1; outputNums=1 hideNums=7; maxcount=2000; samplenum=3; precision=0.001; alpha=0.5;%设定值
www.eeworm.com/read/453799/7412230

h bpnn.h

//--------------------------------------------------------------------------- #ifndef BpnnH #define BpnnH //--------------------------------------------------------------------------- #include
www.eeworm.com/read/453799/7412232

cpp bpnn.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #include #include #include #include