自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 神经网例子

clear ; close all; clc input_layer_size  = 400;  % 20x20 Input Images of Digits hidden_layer_size = 25;   % 25 hidden units num_labels = 10;          % 10 labels, from 1 to 10 是每层中的神经元个数              ...

2018-08-06 15:07:16 167

转载 不太经典的移动神经网,grad没有运用backpropagation algorithom

clear ; close all; clc %% Setup the parameters you will use for this part of the exercise input_layer_size  = 400;  % 20x20 Input Images of Digits num_labels = 10;          % 10 labels, from 1 to 10 ...

2018-08-04 16:40:34 271

转载 逻辑斯蒂回归(分类)

clear ; close all; clcdata = load('ex2data1.txt');X = data(:, [1, 2]); y = data(:, 3);fprintf(['Plotting data with + indicating (y = 1) examples and o ' ...         'indicating (y = 0) examples.\n']);...

2018-07-12 15:59:54 702

转载 线性回归(机器学习练习代码1)

主程序:fprintf('Plotting Data ...\n')data = load('ex1data1.txt');%载入数据,数据需在在pathway里X = data(:, 1); y = data(:, 2);%拆分x,ym = length(y); % number of training examplesplotData(X, y);fprintf('Program paused...

2018-07-12 14:46:04 237

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除