Skip to content

Commit 8041ca8

Browse files
adityaarun1ruotianluo
authored andcommitted
Update README
1 parent d193b34 commit 8041ca8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Additional features not mentioned in the [report](https://arxiv.org/pdf/1702.021
5858
- **Support for visualization**. The current implementation will summarize ground truth boxes, statistics of losses, activations and variables during training, and dump it to a separate folder for tensorboard visualization. The computing graph is also saved for debugging.
5959

6060
### Prerequisites
61-
- A basic pytorch installation. The code follows **0.4**. If you are using old **0.1.12** or **0.2** or **0.3**, you can checkout the corresponding branch.
62-
- Python packages you might not have: `cffi`, `opencv-python`, `easydict` (similar to [py-faster-rcnn](https://github.com/rbgirshick/py-faster-rcnn)). For `easydict` make sure you have the right version. Xinlei uses 1.6.
61+
- A basic pytorch installation. The code follows **1.0**. If you are using old **0.1.12** or **0.2** or **0.3** or **0.4**, you can checkout the corresponding branch.
62+
- Python packages you might not have: `opencv-python`, `easydict` (similar to [py-faster-rcnn](https://github.com/rbgirshick/py-faster-rcnn)). For `easydict` make sure you have the right version. Xinlei uses 1.6.
6363
- [tensorboard-pytorch](https://github.com/lanpa/tensorboard-pytorch) to visualize the training and validation curve. Please build from source to use the latest tensorflow-tensorboard.
6464
- ~~Docker users: Since the recent upgrade, the docker image on docker hub (https://hub.docker.com/r/mbuckler/tf-faster-rcnn-deps/) is no longer valid. However, you can still build your own image by using dockerfile located at `docker` folder (cuda 8 version, as it is required by Tensorflow r1.0.) And make sure following Tensorflow installation to install and use nvidia-docker[https://github.com/NVIDIA/nvidia-docker]. Last, after launching the container, you have to build the Cython modules within the running container.~~
6565

@@ -72,7 +72,7 @@ Additional features not mentioned in the [report](https://arxiv.org/pdf/1702.021
7272
2. Compile modules(nms, roi_pooling(from [longcw/yolo2-pytorch](https://github.com/longcw/yolo2-pytorch)), roi_align(from [longcw/RoIAlign.pytorch](https://github.com/longcw/RoIAlign.pytorch.git))):
7373
```
7474
cd pytorch-faster-rcnn/lib
75-
bash make.sh
75+
python setup.py build develop
7676
cd ../
7777
```
7878

experiments/scripts/test_faster_rcnn.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ case ${DATASET} in
1818
pascal_voc)
1919
TRAIN_IMDB="voc_2007_trainval"
2020
TEST_IMDB="voc_2007_test"
21-
ITERS=50000
21+
ITERS=70000
2222
ANCHORS="[8,16,32]"
2323
RATIOS="[0.5,1,2]"
2424
;;

0 commit comments

Comments
 (0)