Object Detection Using Deep LearningのスクリプトでtrainingLabels, testImages, testLabelsというものがありますがそれは事前にダウンロードしているCIFAR10Dataで既に定義されているのでしょうか?そうだとしたら自分のデータを読み込ませたいときはどう定義すればいいでしょうか?
Show older comments
% Download CIFAR-10 data to a temporary directory cifar10Data = tempdir;
url = 'https://www.cs.toronto.edu/~kriz/cifar-10-matlab.tar.gz';
helperCIFAR10Data.download(url, cifar10Data);
% Load the CIFAR-10 training and test data. [trainingImages, trainingLabels, testImages, testLabels] = helperCIFAR10Data.load(cifar10Data);
1 Comment
michio
on 25 Nov 2016
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!