comment tag (#505)

This commit is contained in:
Jerry Jiarui XU 2021-04-24 09:58:59 -07:00 committed by GitHub
parent 838b6472d0
commit dc3dcb0b34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 30 additions and 28 deletions

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{annn, @inproceedings{annn,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@InProceedings{He_2019_CVPR, @InProceedings{He_2019_CVPR,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{huang2018ccnet, @article{huang2018ccnet,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latext ```latext
@article{wu2020cgnet, @article{wu2020cgnet,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{fu2018dual, @article{fu2018dual,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latext ```latext
@article{chen2017rethinking, @article{chen2017rethinking,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{deeplabv3plus2018, @inproceedings{deeplabv3plus2018,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@InProceedings{He_2019_ICCV, @InProceedings{He_2019_ICCV,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
This example is to reproduce ["Disentangled Non-Local Neural Networks"](https://arxiv.org/abs/2006.06668) for semantic segmentation. It is still in progress. This example is to reproduce ["Disentangled Non-Local Neural Networks"](https://arxiv.org/abs/2006.06668) for semantic segmentation. It is still in progress.

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{li2019expectation, @inproceedings{li2019expectation,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@InProceedings{Zhang_2018_CVPR, @InProceedings{Zhang_2018_CVPR,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{poudel2019fast, @article{poudel2019fast,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{shelhamer2017fully, @article{shelhamer2017fully,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[OTHERS] <!-- [OTHERS] -->
```latex ```latex
@article{micikevicius2017mixed, @article{micikevicius2017mixed,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{cao2019gcnet, @inproceedings{cao2019gcnet,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latext ```latext
@inproceedings{SunXLW19, @inproceedings{SunXLW19,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{sandler2018mobilenetv2, @inproceedings{sandler2018mobilenetv2,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{Howard_2019_ICCV, @inproceedings{Howard_2019_ICCV,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{wang2018non, @inproceedings{wang2018non,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{YuanW18, @article{YuanW18,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
``` ```
@inproceedings{kirillov2020pointrend, @inproceedings{kirillov2020pointrend,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{zhao2018psanet, @inproceedings{zhao2018psanet,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{zhao2017pspnet, @inproceedings{zhao2017pspnet,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{zhang2020resnest, @article{zhang2020resnest,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@article{Kirillov_2019, @article{Kirillov_2019,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{ronneberger2015u, @inproceedings{ronneberger2015u,

View File

@ -2,7 +2,7 @@
## Introduction ## Introduction
[ALGORITHM] <!-- [ALGORITHM] -->
```latex ```latex
@inproceedings{xiao2018unified, @inproceedings{xiao2018unified,

View File

@ -27,7 +27,9 @@ for f in files:
if len(ckpts) == 0: if len(ckpts) == 0:
continue continue
_papertype = [x for x in re.findall(r'\[([A-Z]+)\]', content)] _papertype = [
x for x in re.findall(r'<!--\s*\[([A-Z]*?)\]\s*-->', content)
]
assert len(_papertype) > 0 assert len(_papertype) > 0
papertype = _papertype[0] papertype = _papertype[0]