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
[ALGORITHM]
<!-- [ALGORITHM] -->
```latex
@inproceedings{annn,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
## 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.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -27,7 +27,9 @@ for f in files:
if len(ckpts) == 0:
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
papertype = _papertype[0]