forked from BVLC/caffe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request BVLC#167 from BVLC/next
So be it.
- Loading branch information
Showing
65 changed files
with
2,008 additions
and
1,434,280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env sh | ||
# This scripts downloads the CIFAR10 (binary version) data and unzips it. | ||
|
||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
cd $DIR | ||
|
||
echo "Downloading..." | ||
|
||
wget -q http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz | ||
|
||
echo "Unzipping..." | ||
|
||
tar -xf cifar-10-binary.tar.gz && rm -f cifar-10-binary.tar.gz | ||
mv cifar-10-batches-bin/* . && rm -rf cifar-10-batches-bin | ||
|
||
# Creation is split out because leveldb sometimes causes segfault | ||
# and needs to be re-created. | ||
|
||
echo "Done." |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env sh | ||
# | ||
# N.B. This does not download the ilsvrcC12 data set, as it is gargantuan. | ||
# This script downloads the imagenet example auxiliary files including: | ||
# - the ilsvrc12 image mean, binaryproto | ||
# - synset ids and words | ||
# - the training splits with labels | ||
|
||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
cd $DIR | ||
|
||
echo "Downloading..." | ||
|
||
wget -q https://www.dropbox.com/s/g5myor4y2scdv95/caffe_ilsvrc12.tar.gz | ||
|
||
echo "Unzipping..." | ||
|
||
tar -xf caffe_ilsvrc12.tar.gz && rm -f caffe_ilsvrc12.tar.gz | ||
|
||
echo "Done." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.