You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,8 @@ If you find Faster R-CNN useful in your research, please consider citing:
55
55
```make
56
56
# In your Makefile.config, make sure to have this line uncommented
57
57
WITH_PYTHON_LAYER := 1
58
+
# Unrelatedly, it's also recommended that you use CUDNN
59
+
USE_CUDNN := 1
58
60
```
59
61
60
62
You can download my[Makefile.config](http://www.cs.berkeley.edu/~rbg/fast-rcnn-data/Makefile.config) for reference.
@@ -115,8 +117,6 @@ If you find Faster R-CNN useful in your research, please consider citing:
115
117
116
118
*After successfully completing [basic installation](#installation-sufficient-for-the-demo)*, you'll be ready to run the demo.
117
119
118
-
**Python**
119
-
120
120
To run the demo
121
121
```Shell
122
122
cd$FRCN_ROOT
@@ -158,7 +158,8 @@ The demo performs detection using a VGG16 network trained for detection on PASCA
158
158
```
159
159
Using symlinks is a good idea because you will likely want to share the same PASCAL dataset installation between multiple projects.
160
160
5. [Optional] follow similar steps to get PASCAL VOC 2010 and 2012
161
-
6. Follow the next sections to download pre-trained ImageNet models
161
+
6. [Optional] If you want to use COCO, please see some notes under`data/README.md`
162
+
7. Follow the next sections to download pre-trained ImageNet models
162
163
163
164
### Download pre-trained ImageNet models
164
165
@@ -200,3 +201,17 @@ cd $FRCN_ROOT
200
201
```
201
202
202
203
This method trains the RPN module jointly with the Fast R-CNN network, rather than alternating between training the two. It resultsin faster (~ 1.5x speedup) trainingtimes and similar detection accuracy. See these [slides](https://www.dropbox.com/s/xtr4yd4i5e0vw8g/iccv15_tutorial_training_rbg.pdf?dl=0)for more details.
204
+
205
+
Artifacts generated by the scriptsin`tools` are writtenin this directory.