czczup commited on
Commit
1351f8f
1 Parent(s): ab50a82

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -1,3 +1,16 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ # PVTv2
5
+
6
+ This is the Hugging Face PyTorch implementation of the [PVTv2](https://arxiv.org/abs/2106.13797) model.
7
+
8
+ ## Model Description
9
+
10
+ The Pyramid Vision Transformer v2 (PVTv2) is a powerful, lightweight hierarchical transformer backbone for vision tasks. PVTv2 infuses convolution operations into its transformer layers to infuse properties of CNNs that enable them to learn image data efficiently. This mix transformer architecture requires no added positional embeddings, and produces multi-scale feature maps which are known to be beneficial for dense and fine-grained prediction tasks.
11
+
12
+ Vision models using PVTv2 for a backbone:
13
+ 1. [Segformer](https://arxiv.org/abs/2105.15203) for Semantic Segmentation.
14
+ 2. [GLPN](https://arxiv.org/abs/2201.07436) for Monocular Depth.
15
+ 3. [Deformable DETR](https://arxiv.org/abs/2010.04159) for 2D Object Detection.
16
+ 4. [Panoptic Segformer](https://arxiv.org/abs/2109.03814) for Panoptic Segmentation.