代码搜索:BATCH
找到约 6,125 项符合「BATCH」的源代码
代码结果 6,125
www.eeworm.com/read/369452/9648535
msi waabcd.batch.msi
www.eeworm.com/read/172476/9705795
p batch_install.p
www.eeworm.com/read/415311/11077018
m backpropagation_batch.m
function [D, Wh, Wo] = Backpropagation_Batch(train_features, train_targets, params, region)
% Classify using a backpropagation network with a batch learning algorithm
% Inputs:
% features- Train
www.eeworm.com/read/415311/11077058
m perceptron_batch.m
function D = Perceptron_Batch(train_features, train_targets, params, region)
% Classify using the batch Perceptron algorithm
% Inputs:
% features - Train features
% targets - Train targets
www.eeworm.com/read/410924/11264765
m backpropagation_batch.m
function [D, Wh, Wo] = Backpropagation_Batch(train_features, train_targets, params, region)
% Classify using a backpropagation network with a batch learning algorithm
% Inputs:
% features- Train
www.eeworm.com/read/248240/12588337
c max_batch.c
#include
#include
#include
int a[]= {1,3,5,9,-4,6,-7,-23,4,20,89,-71,5};
int main (void)
{
int i;
int max = 0; //存放计算过程的中的局部最大值
int beg = 0; //局部最大值的起始位置