Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added HRNet+OCR, minor changes #544

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/model/gdl_hrnet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# @package _global_
model:
_target_: models.hrnet.hrnet_ocr.HRNet
pretrained: True
17 changes: 17 additions & 0 deletions docs/source/model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,20 @@ folder to the complete list on different combinaisons.

Also from the same library, another version of *DeepLabV3*, named *DeepLabV3+* of the
*Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation* paper.

Segformer
================================================

*Segformer* model implementation is based on the `SegFormer: Simple and Efficient Design for Semantic Segmentation with Transformers <https://arxiv.org/abs/2105.15203>`_ paper.
The encoder is called from `SMP <https://github.com/qubvel/segmentation_models.pytorch>`_. For more code implementation details check this `repo <https://github.com/NVlabs/SegFormer>`_.

.. autoclass:: models.segformer.SegFormer


HRNet + OCR
================================================

*HRNet + OCR* model implementation is based on the `HRNet paper <https://ieeexplore.ieee.org/document/9052469>`_ and `OCR paper <https://arxiv.org/pdf/1909.11065.pdf>`_.
For more code implementation details check this `repo <https://github.com/NVIDIA/semantic-segmentation>`_.

.. autoclass:: models.hrnet.hrnet_ocr.HRNet
Empty file added models/hrnet/__init__.py
Empty file.
Loading
Loading