代码搜索:machine learning
找到约 10,000 项符合「machine learning」的源代码
代码结果 10,000
www.eeworm.com/read/316604/13520417
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/316604/13520529
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/307968/13712022
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/359185/6352509
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/359185/6352594
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/493206/6398487
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/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(