Skip to content

Commit

Permalink
Release v2.25.1
Browse files Browse the repository at this point in the history
Release v2.25.1
  • Loading branch information
ZwwWayne committed Jul 28, 2022
2 parents b9f7c28 + 065ef4d commit 3b72b12
Show file tree
Hide file tree
Showing 50 changed files with 403 additions and 287 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Pillow
run: pip install Pillow==6.2.2
if: ${{matrix.torchvision == '0.4.2'}}
- name: Install PyTorch
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html
- name: Install MMCV
Expand Down Expand Up @@ -123,9 +120,6 @@ jobs:
apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 python${{matrix.python-version}}-dev
apt-get clean
rm -rf /var/lib/apt/lists/*
- name: Install Pillow
run: python -m pip install Pillow==6.2.2
if: ${{matrix.torchvision < 0.5}}
- name: Install PyTorch
run: python -m pip install torch==${{matrix.torch}} torchvision==${{matrix.torchvision}} -f https://download.pytorch.org/whl/torch_stable.html
- name: Install dependencies for compiling onnx when python=3.9
Expand Down Expand Up @@ -204,9 +198,6 @@ jobs:
apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6
apt-get clean
rm -rf /var/lib/apt/lists/*
- name: Install Pillow
run: python -m pip install Pillow==6.2.2
if: ${{matrix.torchvision < 0.5}}
- name: Install PyTorch
run: python -m pip install torch==${{matrix.torch}} torchvision==${{matrix.torchvision}} -f https://download.pytorch.org/whl/torch_stable.html
- name: Install dependencies for compiling onnx when python=3.9
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/test_mim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: test-mim

on:
push:
paths:
- 'model-index.yml'
- 'configs/**'

pull_request:
paths:
- 'model-index.yml'
- 'configs/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_cpu:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.7]
torch: [1.8.0]
include:
- torch: 1.8.0
torch_version: torch1.8
torchvision: 0.9.0
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: pip install pip --upgrade
- name: Install Pillow
run: pip install Pillow==6.2.2
if: ${{matrix.torchvision == '0.4.2'}}
- name: Install PyTorch
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html
- name: Install openmim
run: pip install openmim
- name: Build and install
run: rm -rf .eggs && mim install -e .
- name: test commands of mim
run: mim search mmdet
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ repos:
hooks:
- id: codespell
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.14
rev: 0.7.9
hooks:
- id: mdformat
args: ["--number"]
additional_dependencies:
- mdformat-gfm
- mdformat-openmmlab
- mdformat_frontmatter
- linkify-it-py
- repo: https://github.com/myint/docformatter
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
<li><a href="configs/grid_rcnn">Grid R-CNN (CVPR'2019)</a></li>
<li><a href="configs/guided_anchoring">Guided Anchoring (CVPR'2019)</a></li>
<li><a href="configs/fsaf">FSAF (CVPR'2019)</a></li>
<li><a href="configs/centernet">CenterNet (CVPR'2019)</a></li>
<li><a href="configs/centernet">CenterNet (ArXiv'2019)</a></li>
<li><a href="configs/libra_rcnn">Libra R-CNN (CVPR'2019)</a></li>
<li><a href="configs/tridentnet">TridentNet (ICCV'2019)</a></li>
<li><a href="configs/fcos">FCOS (ICCV'2019)</a></li>
Expand All @@ -166,7 +166,7 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
<li><a href="configs/vfnet">VarifocalNet (CVPR'2021)</a></li>
<li><a href="configs/sparse_rcnn">Sparse R-CNN (CVPR'2021)</a></li>
<li><a href="configs/yolof">YOLOF (CVPR'2021)</a></li>
<li><a href="configs/yolox">YOLOX (CVPR'2021)</a></li>
<li><a href="configs/yolox">YOLOX (ArXiv'2021)</a></li>
<li><a href="configs/deformable_detr">Deformable DETR (ICLR'2021)</a></li>
<li><a href="configs/tood">TOOD (ICCV'2021)</a></li>
<li><a href="configs/ddod">DDOD (ACM MM'2021)</a></li>
Expand All @@ -182,18 +182,18 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
<li><a href="configs/instaboost">InstaBoost (ICCV'2019)</a></li>
<li><a href="configs/solo">SOLO (ECCV'2020)</a></li>
<li><a href="configs/point_rend">PointRend (CVPR'2020)</a></li>
<li><a href="configs/detectors">DetectoRS (ArXiv'2020)</a></li>
<li><a href="configs/detectors">DetectoRS (CVPR'2021)</a></li>
<li><a href="configs/solov2">SOLOv2 (NeurIPS'2020)</a></li>
<li><a href="configs/scnet">SCNet (AAAI'2021)</a></li>
<li><a href="configs/queryinst">QueryInst (ICCV'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (CVPR'2022)</a></li>
</ul>
</td>
<td>
<ul>
<li><a href="configs/panoptic_fpn">Panoptic FPN (CVPR'2019)</a></li>
<li><a href="configs/maskformer">MaskFormer (NeurIPS'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (CVPR'2022)</a></li>
</ul>
</td>
<td>
Expand Down Expand Up @@ -253,12 +253,12 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
<li><a href="configs/gcnet">GCNet (ICCVW'2019)</a></li>
<li><a href="configs/res2net">Res2Net (TPAMI'2020)</a></li>
<li><a href="configs/regnet">RegNet (CVPR'2020)</a></li>
<li><a href="configs/resnest">ResNeSt (ArXiv'2020)</a></li>
<li><a href="configs/resnest">ResNeSt (CVPRW'2022)</a></li>
<li><a href="configs/pvt">PVT (ICCV'2021)</a></li>
<li><a href="configs/swin">Swin (CVPR'2021)</a></li>
<li><a href="configs/pvt">PVTv2 (ArXiv'2021)</a></li>
<li><a href="configs/resnet_strikes_back">ResNet strikes back (ArXiv'2021)</a></li>
<li><a href="configs/efficientnet">EfficientNet (ArXiv'2021)</a></li>
<li><a href="configs/swin">Swin (ICCV'2021)</a></li>
<li><a href="configs/pvt">PVTv2 (CVMJ'2022)</a></li>
<li><a href="configs/resnet_strikes_back">ResNet strikes back (NeurIPSW'2021)</a></li>
<li><a href="configs/efficientnet">EfficientNet (ICML'2019)</a></li>
<li><a href="configs/convnext">ConvNeXt (CVPR'2022)</a></li>
</ul>
</td>
Expand Down Expand Up @@ -288,7 +288,7 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
<li><a href="configs/gn+ws">Weight Standardization (ArXiv'2019)</a></li>
<li><a href="configs/pisa">Prime Sample Attention (CVPR'2020)</a></li>
<li><a href="configs/strong_baselines">Strong Baselines (CVPR'2021)</a></li>
<li><a href="configs/resnet_strikes_back">Resnet strikes back (ArXiv'2021)</a></li>
<li><a href="configs/resnet_strikes_back">Resnet strikes back (NeurIPSW'2021)</a></li>
</ul>
</td>
</tr>
Expand Down
26 changes: 13 additions & 13 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
<li><a href="configs/grid_rcnn">Grid R-CNN (CVPR'2019)</a></li>
<li><a href="configs/guided_anchoring">Guided Anchoring (CVPR'2019)</a></li>
<li><a href="configs/fsaf">FSAF (CVPR'2019)</a></li>
<li><a href="configs/centernet">CenterNet (CVPR'2019)</a></li>
<li><a href="configs/centernet">CenterNet (ArXiv'2019)</a></li>
<li><a href="configs/libra_rcnn">Libra R-CNN (CVPR'2019)</a></li>
<li><a href="configs/tridentnet">TridentNet (ICCV'2019)</a></li>
<li><a href="configs/fcos">FCOS (ICCV'2019)</a></li>
Expand All @@ -168,7 +168,7 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
<li><a href="configs/vfnet">VarifocalNet (CVPR'2021)</a></li>
<li><a href="configs/sparse_rcnn">Sparse R-CNN (CVPR'2021)</a></li>
<li><a href="configs/yolof">YOLOF (CVPR'2021)</a></li>
<li><a href="configs/yolox">YOLOX (CVPR'2021)</a></li>
<li><a href="configs/yolox">YOLOX (ArXiv'2021)</a></li>
<li><a href="configs/deformable_detr">Deformable DETR (ICLR'2021)</a></li>
<li><a href="configs/tood">TOOD (ICCV'2021)</a></li>
<li><a href="configs/ddod">DDOD (ACM MM'2021)</a></li>
Expand All @@ -184,18 +184,18 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
<li><a href="configs/instaboost">InstaBoost (ICCV'2019)</a></li>
<li><a href="configs/solo">SOLO (ECCV'2020)</a></li>
<li><a href="configs/point_rend">PointRend (CVPR'2020)</a></li>
<li><a href="configs/detectors">DetectoRS (ArXiv'2020)</a></li>
<li><a href="configs/detectors">DetectoRS (CVPR'2021)</a></li>
<li><a href="configs/solov2">SOLOv2 (NeurIPS'2020)</a></li>
<li><a href="configs/scnet">SCNet (AAAI'2021)</a></li>
<li><a href="configs/queryinst">QueryInst (ICCV'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (CVPR'2022)</a></li>
</ul>
</td>
<td>
<ul>
<li><a href="configs/panoptic_fpn">Panoptic FPN (CVPR'2019)</a></li>
<li><a href="configs/maskformer">MaskFormer (NeurIPS'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
<li><a href="configs/mask2former">Mask2Former (CVPR'2022)</a></li>
</ul>
</td>
<td>
Expand Down Expand Up @@ -255,12 +255,12 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
<li><a href="configs/gcnet">GCNet (ICCVW'2019)</a></li>
<li><a href="configs/res2net">Res2Net (TPAMI'2020)</a></li>
<li><a href="configs/regnet">RegNet (CVPR'2020)</a></li>
<li><a href="configs/resnest">ResNeSt (ArXiv'2020)</a></li>
<li><a href="configs/resnest">ResNeSt (CVPRW'2022)</a></li>
<li><a href="configs/pvt">PVT (ICCV'2021)</a></li>
<li><a href="configs/swin">Swin (CVPR'2021)</a></li>
<li><a href="configs/pvt">PVTv2 (ArXiv'2021)</a></li>
<li><a href="configs/resnet_strikes_back">ResNet strikes back (ArXiv'2021)</a></li>
<li><a href="configs/efficientnet">EfficientNet (ArXiv'2021)</a></li>
<li><a href="configs/swin">Swin (ICCV'2021)</a></li>
<li><a href="configs/pvt">PVTv2 (CVMJ'2022)</a></li>
<li><a href="configs/resnet_strikes_back">ResNet strikes back (NeurIPSW'2021)</a></li>
<li><a href="configs/efficientnet">EfficientNet (ICML'2019)</a></li>
<li><a href="configs/convnext">ConvNeXt (CVPR'2022)</a></li>
</ul>
</td>
Expand Down Expand Up @@ -290,7 +290,7 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
<li><a href="configs/gn+ws">Weight Standardization (ArXiv'2019)</a></li>
<li><a href="configs/pisa">Prime Sample Attention (CVPR'2020)</a></li>
<li><a href="configs/strong_baselines">Strong Baselines (CVPR'2021)</a></li>
<li><a href="configs/resnet_strikes_back">Resnet strikes back (ArXiv'2021)</a></li>
<li><a href="configs/resnet_strikes_back">Resnet strikes back (NeurIPSW'2021)</a></li>
</ul>
</td>
</tr>
Expand Down Expand Up @@ -359,10 +359,10 @@ MMDetection 是一款由来自不同高校和企业的研发人员共同参与

## 欢迎加入 OpenMMLab 社区

扫描下方的二维码可关注 OpenMMLab 团队的 [知乎官方账号](https://www.zhihu.com/people/openmmlab),加入 OpenMMLab 团队的 [官方交流 QQ 群](https://jq.qq.com/?_wv=1027&k=aCvMxdr3)
扫描下方的二维码可关注 OpenMMLab 团队的 [知乎官方账号](https://www.zhihu.com/people/openmmlab),加入 OpenMMLab 团队的官方交流 QQ 群

<div align="center">
<img src="resources/zhihu_qrcode.jpg" height="400" /> <img src="resources/qq_group_qrcode.jpg" height="400" />
<img src="resources/zhihu_qrcode.jpg" height="400" /> <img src="https://cdn.vansin.top/OpenMMLab/q3.png" height="400" />
</div>

我们会在 OpenMMLab 社区为大家
Expand Down
Loading

0 comments on commit 3b72b12

Please sign in to comment.