资源简介
从官网下载的mnist数据集格式是ubyte格式,本代码可以将其转换为.mat数据集格式,从而用于matlab的训练
代码片段和文件信息
%参考链接 https://www.douban.com/note/665307747/
%代码对应参考链接 https://blog.csdn.net/lanchunhui/article/details/51271824
%mnist相关资料对应链接 https://www.douban.com/note/665307747/
% Version 1.000
%
% Code provided by Ruslan Salakhutdinov and Geoff Hinton
%
% Permission is granted for anyone to copy use modify or distribute this
% program and accompanying programs and documents for any purpose provided
% this copyright notice is retained and prominently displayed along with
% a note saying that the original programs are available from our
% web page.
% The programs and documents are distributed without any warranty express or
% implied. As the programs were written for research purposes only they have
% not been tested to the degree that would be advisable in any important
% application. All use of these programs is entirely at the user‘s own risk.
% This program reads raw MNIST files available at
% http://yann.lecun.com/exdb/mnist/
% and converts them to files in matlab format
% Before using this program you first need to download files:
% train-images-idx3-ubyte.gz train-labels-idx1-ubyte.gz
% t10k-images-idx3-ubyte.gz t10k-labels-idx1-ubyte.gz
% and gunzip them. You need to allocate some space for this.
% This program was originally written by Yee Whye Teh
% Work with test files first
fprintf(1‘You first need to download files:\n train-images-idx3-ubyte.gz\n train-labels-idx1-ubyte.gz\n t10k-images-idx3-ubyte.gz\n t10k-labels-idx1-ubyte.gz\n from http://yann.lecun.com/exdb/mnist/\n and gunzip them \n‘);
f = fopen(‘t10k-images-idx3-ubyte‘‘r‘);
[ac
- 上一篇:汽车租赁系统 uml
- 下一篇:自抗扰控制技术matlab代码
相关资源
- MINIST 手写数字识别 MATLAB仿真
- 人脸识别yale数据.mat格式
- Modelling.the.Wireless.Propagation.Channel.A.s
- SVM算法对MNIST数据集分类
- KNN算法对MNIST数据集分类
- 多层ELM进行MNIST手写字符分类MATLAB代码
- GDA产生式算法Matlab代码带高光谱文件
- mnist数据集自带解析函数
- 深度学习的实验数据文件mnist_uint8
- matlab svm MNIST 手写数字识别
- mnist_all.mat
- The.Finite.Element.Method.using.MATLAB.-.Kwon.
- KNN算法训练MNIST和CIFAR数据集
- mnist手写字的knn naive bayessvm实现
- 宽度学习 Broad Learning System MATLAB 代码
- 基于matlab的dbn在mnist 手写数字上的实
- BP神经网络 手写体
- mnist手写数字集MATLAB版
- mat格式的MNIST数据
- SVM实现MNIST数据集分类
- mnist_uint8.mat用于MATLAB实现CNN网络的手
- 类似mnist的手写英文体训练数据
- MNIST手写字体识别CNN+BP两种实现-Matl
- mnist手写数字png格式-label是txt格式的测
- mnist的mat格式数据
- mnist_basic mat文件
- DL Toolbox CNN部分
- dphase1.mat
- MNIST手写字 Matlab程序,包含BP和CNN程序
- mnist_uint8.mat
评论
共有 条评论