91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 3KB
    文件類型: .m
    金幣: 1
    下載: 0 次
    發布日期: 2021-06-08
  • 語言: Matlab
  • 標簽: mnist??.mat??

資源簡介

從官網下載的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

評論

共有 條評論