Browse Source

Merge pull request #8 from Huyf9/main

update some refers
v1
Huyf9 GitHub 2 years ago
parent
commit
c5a0fe71a5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      model/backbone/CeiT.py
  2. +1
    -1
      model/backbone/DeiT.py
  3. +1
    -1
      model/backbone/LeViT.py

+ 1
- 1
model/backbone/CeiT.py View File

@@ -2,7 +2,7 @@
# pylint: disable=W0201 # pylint: disable=W0201
""" """
MindSpore implementation of `CeiT`. MindSpore implementation of `CeiT`.
Refer to Convolution-enhanced image Transformer
Refer to "Incorporating Convolution Designs into Visual Transformers"
""" """
import math import math
import mindspore as ms import mindspore as ms


+ 1
- 1
model/backbone/DeiT.py View File

@@ -2,7 +2,7 @@
# pylint: disable=W0201 # pylint: disable=W0201
""" """
MindSpore implementation of `DeiT`. MindSpore implementation of `DeiT`.
Refer to Data-efficient Image Transformer
Refer to "Training data-efficient image transformers & distillation through attention"
""" """
from enum import Enum from enum import Enum
from functools import partial from functools import partial


+ 1
- 1
model/backbone/LeViT.py View File

@@ -2,7 +2,7 @@
# pylint: disable=W0201 # pylint: disable=W0201
""" """
MindSpore implementation of `LeViT`. MindSpore implementation of `LeViT`.
Refer to LeViT: LeViT Improving Vision Transformerswith Soft Convolutional Inductive Biases
Refer to "LeViT: a Vision Transformer in ConvNet’s Clothing for Faster Inference"
""" """
import itertools import itertools




Loading…
Cancel
Save