Skip to content

Commit b90b9c8

Browse files
authored
Merge pull request msracver#105 from liyi14/master
fix a bug in test_fcis and add BaiduYun link
2 parents 411624a + d90c054 commit b90b9c8

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
@@ -54,8 +54,8 @@ If you find FCIS useful in your research, please consider citing:
5454

5555
| | <sub>training data</sub> | <sub>testing data</sub> | <sub>mAP^r</sub> | <sub>mAP^[email protected]</sub> | <sub>mAP^[email protected]</sub>| <sub>mAP^r@S</sub> | <sub>mAP^r@M</sub> | <sub>mAP^r@L</sub> |
5656
|:---------------------------------:|:---------------:|:---------------:|:------:|:---------:|:---------:|:-------:|:-------:|:-------:|
57-
| <sub>FCIS, ResNet-v1-101, OHEM </sub> | <sub>coco trainval35k</sub> | <sub>coco minival</sub> | 28.7 | 50.5 | 28.8 | 7.7 | 31.0 | 50.1 |
58-
| <sub>FCIS, ResNet-v1-101, OHEM </sub> | <sub>coco trainval35k</sub> | <sub>coco test-dev</sub>| 29.0 | 51.2 | 29.5 | 7.7 | 30.6 | 48.9 |
57+
| <sub>FCIS, ResNet-v1-101, OHEM </sub> | <sub>coco trainval35k</sub> | <sub>coco minival</sub> | 29.2 | 50.8 | 29.7 | 7.9 | 31.4 | 51.1 |
58+
| <sub>FCIS, ResNet-v1-101, OHEM </sub> | <sub>coco trainval35k</sub> | <sub>coco test-dev</sub>| 29.6 | 51.4 | 30.2 | 8.0 | 31.0 | 49.7 |
5959

6060
*Running time is counted on a single Maxwell Titan X GPU (mini-batch size is 1 in inference).*
6161

@@ -113,7 +113,7 @@ git clone https://github.com/msracver/FCIS.git
113113

114114
### Demo
115115

116-
1. To run the demo with our trained model (on COCO trainval35k), please download the model manually from [OneDrive](https://1drv.ms/u/s!Am-5JzdW2XHzhqMJZmVOEDgfde8_tg), and put it under folder `model/`.
116+
1. To run the demo with our trained model (on COCO trainval35k), please download the model manually from [OneDrive](https://1drv.ms/u/s!Am-5JzdW2XHzhqMJZmVOEDgfde8_tg) (Chinese users can also get it from [BaiduYun](https://pan.baidu.com/s/1geOHioV) with code `tmd4`), and put it under folder `model/`.
117117

118118
Make sure it looks like this:
119119
```

fcis/function/test_fcis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_fcis(config, dataset, image_set, root_path, dataset_path,
4040
test_data = TestLoader(sdsdb, config, batch_size=len(ctx), shuffle=shuffle, has_rpn=has_rpn)
4141

4242
# load model
43-
arg_params, aux_params = load_param(prefix, epoch, process=True)
43+
arg_params, aux_params = load_param(prefix, epoch, process=False)
4444

4545
# infer shape
4646
data_shape_dict = dict(test_data.provide_data_single)

0 commit comments

Comments
 (0)