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
@@ -125,4 +124,5 @@ If you use this toolbox or benchmark in your research, please cite this project.
125
124
126
125
## Contact
127
126
128
-
This repo is currently maintained by Kai Chen ([@hellock](http://github.com/hellock)), Yuhang Cao ([@yhcao6](https://github.com/yhcao6)), Wenwei Zhang ([@ZwwWayne](https://github.com/ZwwWayne)), Jiangmiao Pang ([@OceanPang](https://github.com/OceanPang)) and Jiaqi Wang ([@myownskyW7](https://github.com/myownskyW7)).
127
+
This repo is currently maintained by Kai Chen ([@hellock](http://github.com/hellock)), Yuhang Cao ([@yhcao6](https://github.com/yhcao6)), Wenwei Zhang ([@ZwwWayne](https://github.com/ZwwWayne)),
128
+
Jiarui Xu ([@xvjiarui](https://github.com/xvjiarui)). Other core developers include Jiangmiao Pang ([@OceanPang](https://github.com/OceanPang)) and Jiaqi Wang ([@myownskyW7](https://github.com/myownskyW7)).
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,41 @@
1
1
## Changelog
2
2
3
+
### v1.1.0 (24/2/2020)
4
+
5
+
**Highlights**
6
+
- Dataset evaluation is rewritten with a unified api, which is used by both evaluation hooks and test scripts.
7
+
- Support new methods: [CARAFE](https://arxiv.org/abs/1905.02188).
8
+
9
+
**Breaking Changes**
10
+
- The new MMDDP inherits from the official DDP, thus the `__init__` api is changed to be the same as official DDP.
11
+
- The `mask_head` field in HTC config files is modified.
12
+
- The evaluation and testing script is updated.
13
+
- In all transforms, instance masks are stored as a numpy array shaped (n, h, w) instead of a list of (h, w) arrays, where n is the number of instances.
14
+
15
+
**Bug Fixes**
16
+
- Fix IOU assigners when ignore_iof_thr > 0 and there is no pred boxes. (#2135)
17
+
- Fix mAP evaluation when there are no ignored boxes. (#2116)
18
+
- Fix the empty RoI input for Deformable RoI Pooling. (#2099)
19
+
- Fix the dataset settings for multiple workflows. (#2103)
20
+
- Fix the warning related to `torch.uint8` in PyTorch 1.4. (#2105)
21
+
- Fix the inference demo on devices other than gpu:0. (#2098)
22
+
- Fix Dockerfile. (#2097)
23
+
- Fix the bug that `pad_val` is unused in Pad transform. (#2093)
24
+
- Fix the albumentation transform when there is no ground truth bbox. (#2032)
25
+
26
+
**Improvements**
27
+
- Use torch instead of numpy for random sampling. (#2094)
28
+
- Migrate to the new MMDDP implementation in MMCV v0.3. (#2090)
29
+
- Add meta information in logs. (#2086)
30
+
- Rewrite Soft NMS with pytorch extension and remove cython as a dependency. (#2056)
0 commit comments