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
Thanks for your bug report and we appreciate that a lot.
11
+
12
+
**Checklist**
13
+
-[ ] I have searched related issues but could not get the expected help.
14
+
-[ ] The bug has not been fixed in the latest version.
15
+
16
+
**Describe the bug**
17
+
A clear and concise description of what the bug is.
18
+
If there are any related issues or upstream bugs, please also refer to them.
19
+
20
+
**Error traceback**
21
+
1. What command or script did you run?
22
+
```
23
+
A placeholder for the command.
24
+
```
25
+
2. If applicable, paste the error trackback here using code blocks.
26
+
```
27
+
A placeholder for trackback.
28
+
```
29
+
30
+
**Reproduction details**
31
+
1. Did you make any modifications on the code? Did you understand what you have modified?
32
+
2. What dataset did you use?
33
+
34
+
**Environment**
35
+
- OS: [e.g., Ubuntu 16.04.6]
36
+
- GCC [e.g., 5.4.0]
37
+
- PyTorch version [e.g., 1.1.0]
38
+
- How you installed PyTorch [e.g., pip, conda, source]
39
+
- GPU model [e.g., 1080Ti, V100]
40
+
- CUDA and CUDNN version
41
+
-[optional] Other information that may be related (such as `$PATH`, `$LD_LIBRARY_PATH`, `$PYTHONPATH`, etc.)
42
+
43
+
**Bug fix**
44
+
If you have already identified the reason, you can provide the information here. If you are willing to create a PR to fix it, please also leave a comment here and that would be much appreciated!
This repo is a official implementation of ["GCNet: Non-local Networks Meet Squeeze-Excitation Networks and Beyond"](https://arxiv.org/abs/1904.11492) on COCO object detection based on open-mmlab's [mmdetection](https://github.com/open-mmlab/mmdetection).
6
-
Many thanks to mmdetection for their simple and clean framework.
6
+
Many thanks to mmdetection for their simple and clean framework.
7
+
8
+
*Update on 2019/07/01*
9
+
10
+
The code is refactored.
11
+
More results are provided and all configs could be found in `configs/gcnet`.
12
+
13
+
**Notes**: Both PyTorch official SyncBN and Apex SyncBN have some stability issues.
14
+
During training, mAP may drops to zero and back to normal during last few epochs.
15
+
16
+
*Update on 2019/06/03*
17
+
18
+
GCNet is supported by the official mmdetection repo [here](https://github.com/open-mmlab/mmdetection/tree/master/configs/gcnet).
19
+
Thanks again for open-mmlab's work on open source projects.
7
20
8
21
## Introduction
9
22
@@ -22,41 +35,56 @@ Many thanks to mmdetection for their simple and clean framework.
22
35
23
36
## Main Results
24
37
25
-
| Backbone | Model | Context | Lr schd | box AP | mask AP | Download |
0 commit comments