代码搜索结果
找到约 3,568 项符合
Strip 的代码
strip.m
function net = strip(net, tolerance)
% STRIP
%
% Delete support vectors from a support vector classification network for which
% the magnitude of the corresponding weight is less than a given to
strip.m
function net = strip(net, tolerance)
if nargin == 1
tolerance = 1e-12;
end
idx = find(abs(net.w) > tolerance);
net.sv = net.sv(idx,:);
net.w = net.w(idx);
strip.1
.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.3
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sh \" Subsection heading
.br
strip.m
function net = strip(net, tolerance)
% STRIP
%
% Delete support vectors from a support vector classification network for which
% the magnitude of the corresponding weight is less than a given to
strip.m
function net = strip(net, tolerance)
% STRIP
%
% Delete support vectors from a support vector classification network for which
% the magnitude of the corresponding weight is less than a given to
strip.html
strip