Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
rcnn
Commits
064324d6
Commit
064324d6
authored
Mar 13, 2014
by
Ross Girshick
Browse files
data package fetch script and updated README
parent
02623626
Changes
2
Hide whitespace changes
Inline
Side-by-side
data/README.md
View file @
064324d6
## Contents -- Precomputed R-CNN Models
## Contents -- Precomputed R-CNN Models
### Downloading
*
The data package can be downloaded by running the fetch_data.sh script in this directory.
### R-CNN detectors trained on PASCAL VOC
### R-CNN detectors trained on PASCAL VOC
*
`./rcnn_models/voc_2007/rcnn_model_not_finetuned`
*
The CNN for this detector was
*not*
fine-tuned (it was trained only on ILSVRC 2012 train)
*
Uses:
`./caffe_nets/ilsvrc_2012_train_iter_310k`
*
This detector was trained on PASCAL VOC 2007 trainval
*
`./rcnn_models/voc_2007/rcnn_model_finetuned`
*
`./rcnn_models/voc_2007/rcnn_model_finetuned`
*
The CNN for this detector was fine-tuned on PASCAL VOC 2007 trainval
*
The CNN for this detector was fine-tuned on PASCAL VOC 2007 trainval
*
Uses:
`./caffe_nets/finetune_voc_2007_trainval_iter_70k`
*
Uses:
`./caffe_nets/finetune_voc_2007_trainval_iter_70k`
...
...
data/fetch_data.sh
0 → 100755
View file @
064324d6
#!/bin/bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
cd
$DIR
echo
"Downloading the R-CNN data package (precomputed models)..."
wget http://www.cs.berkeley.edu/~rbg/r-cnn-release1-data.tgz
echo
"Unzipping..."
tar
zxvf r-cnn-release1-data.tgz
&&
rm
-f
r-cnn-release1-data.tgz
echo
"Done."
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment