Skip to content

Builtin deep learning datasets used by MLModelScope

License

Notifications You must be signed in to change notification settings

rai-project/dldataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Cheng Li
Jun 30, 2019
d45f5ed · Jun 30, 2019

History

86 Commits
Mar 28, 2019
Nov 19, 2018
Jun 30, 2019
Jun 14, 2017
Jun 14, 2017
Jun 14, 2017
Nov 19, 2018
Mar 28, 2019
Apr 4, 2019
Jun 14, 2017
Oct 31, 2017
Sep 28, 2017
Mar 28, 2019
Jun 19, 2018
Aug 9, 2017
May 22, 2019
Sep 9, 2017

Repository files navigation

DLDataset Build Status

Download the ImageNet dataset

The ImageNet Large Scale Visual Recognition Challenge (ILSVRC) dataset has 1000 categories and 1.2 million images. The images do not need to be preprocessed or packaged in any database, but the validation images need to be moved into appropriate subfolders.

  1. Download the images from http://image-net.org/download-images

  2. Extract the training data:

mkdir train && mv ILSVRC2012_img_train.tar train/ && cd train
tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
  1. Extract the validation data and move images to subfolders:
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash

Todo

About

Builtin deep learning datasets used by MLModelScope

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages