代码搜索:Learning

找到约 5,352 项符合「Learning」的源代码

代码结果 5,352
www.eeworm.com/read/493206/6398605

m competitive_learning.m

function [features, targets, label, W] = Competitive_learning(train_features, train_targets, params, region, plot_on) % Perform preprocessing using a competitive learning network % Inputs: % fea
www.eeworm.com/read/492695/6419519

m learning_c.m

function d=learning_c(x,c) %中心的学习 %x为np×ni的输入矩阵。 %c为ni×m的初始中心。 %d为ni×m训练好的中心。 d=even_k(x,c); %对输入进行聚类 tr(1)=sumsqr(d-c); i=0; while tr(i+1)~=0 c=d; d=even_k(x,c); i=i+1; tr(i
www.eeworm.com/read/490544/6447339

m learning_demo.m

% Make a point move in the 2D plane % State = (x y xdot ydot). We only observe (x y). % Generate data from this process, and try to learn the dynamics back. % X(t+1) = F X(t) + noise(Q) % Y(t) = H X(
www.eeworm.com/read/488267/6491110

m learning_demo.m

% Make a point move in the 2D plane % State = (x y xdot ydot). We only observe (x y). % Generate data from this process, and try to learn the dynamics back. % X(t+1) = F X(t) + noise(Q) % Y(t) = H X(
www.eeworm.com/read/410924/11264814

m interactive_learning.m

function D = Interactive_Learning(train_features, train_targets, params, region); % Classify using nearest neighbors and interactive learning % Inputs: % features- Train features % targets - Tr
www.eeworm.com/read/410924/11265068

m competitive_learning.m

function [features, targets, label, W] = Competitive_learning(train_features, train_targets, params, region, plot_on) % Perform preprocessing using a competitive learning network % Inputs: % fea
www.eeworm.com/read/265251/11272160

m learning_demo.m

% Make a point move in the 2D plane % State = (x y xdot ydot). We only observe (x y). % Generate data from this process, and try to learn the dynamics back. % X(t+1) = F X(t) + noise(Q) % Y(t) = H X(
www.eeworm.com/read/407009/11431302

m learning_demo.m

% Make a point move in the 2D plane % State = (x y xdot ydot). We only observe (x y). % Generate data from this process, and try to learn the dynamics back. % X(t+1) = F X(t) + noise(Q) % Y(t) = H X(
www.eeworm.com/read/405615/11460264

m learning_demo.m

% Make a point move in the 2D plane % State = (x y xdot ydot). We only observe (x y). % Generate data from this process, and try to learn the dynamics back. % X(t+1) = F X(t) + noise(Q) % Y(t) = H X(
www.eeworm.com/read/405069/11472190

m interactive_learning.m

function test_targets = Interactive_Learning(train_patterns, train_targets, test_patterns, params) % Classify using nearest neighbors and interactive learning % Inputs: % train_patterns - Train