This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
limingjuan
/
Prediction-MindSpore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Merge pull request
#8
from Huyf9/main
update some refers
v1
Huyf9
GitHub
2 years ago
parent
d15b5c47d0
65ada04fe5
commit
c5a0fe71a5
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
3 changed files
with
3 additions
and
3 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
model/backbone/CeiT.py
+1
-1
model/backbone/DeiT.py
+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
Write
Preview
Loading…
Cancel
Save