Skip to content

Commit

Permalink
Work on ERFNet, 2
Browse files Browse the repository at this point in the history
  • Loading branch information
osmr committed Feb 11, 2021
1 parent 0963b1b commit ced9470
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ Some remarks:
| ESDNet | - | c | - | - | - | - | [link](https://arxiv.org/abs/1906.09826) | - | 2019 |
| EDANet | - | c | - | - | - | - | [link](https://arxiv.org/abs/1809.06323) | [link](https://github.com/shaoyuanlo/EDANet) | 2018 |
| ENet | - | c | - | - | - | - | [link](https://arxiv.org/abs/1606.02147) | - | 2016 |
| ERFNet | - | c | - | - | - | - | [link](http://www.robesafe.uah.es/personal/eduardo.romera/pdfs/Romera17tits.pdf) | - | 2017 |

## Table of implemented object detection models

Expand Down
1 change: 1 addition & 0 deletions pytorch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ models are in the [`imgclsmob`](https://github.com/osmr/imgclsmob) repo.
- ESNet (['ESNet: An Efficient Symmetric Network for Real-time Semantic Segmentation'](https://arxiv.org/abs/1906.09826))
- EDANet (['Efficient Dense Modules of Asymmetric Convolution for Real-Time Semantic Segmentation'](https://arxiv.org/abs/1809.06323))
- ENet (['ENet: A Deep Neural Network Architecture for Real-Time Semantic Segmentation'](https://arxiv.org/abs/1606.02147))
- ERFNet (['ERFNet: Efficient Residual Factorized ConvNet for Real-time Semantic Segmentation'](http://www.robesafe.uah.es/personal/eduardo.romera/pdfs/Romera17tits.pdf))
- CenterNet (['Objects as Points'](https://arxiv.org/abs/1904.07850))
- LFFD (['LFFD: A Light and Fast Face Detector for Edge Devices'](https://arxiv.org/abs/1904.10633))
- AlphaPose (['RMPE: Regional Multi-person Pose Estimation'](https://arxiv.org/abs/1612.00137))
Expand Down
3 changes: 3 additions & 0 deletions pytorch/pytorchcv/model_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
from .models.esnet import *
from .models.edanet import *
from .models.enet import *
from .models.erfnet import *

from .models.alphapose_coco import *
from .models.simplepose_coco import *
Expand Down Expand Up @@ -1096,6 +1097,8 @@

'enet_cityscapes': enet_cityscapes,

'erfnet_cityscapes': erfnet_cityscapes,

'alphapose_fastseresnet101b_coco': alphapose_fastseresnet101b_coco,

'simplepose_resnet18_coco': simplepose_resnet18_coco,
Expand Down

0 comments on commit ced9470

Please sign in to comment.