Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
mmpretrain-mmcv
Commits
d476eeba
Commit
d476eeba
authored
Sep 02, 2024
by
renzhc
Browse files
upload mmpretrain
parent
62b8498e
Pipeline
#1662
failed with stages
in 0 seconds
Changes
1000
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
242 additions
and
0 deletions
+242
-0
configs/_base_/models/efficientnet_b0.py
configs/_base_/models/efficientnet_b0.py
+12
-0
configs/_base_/models/efficientnet_b1.py
configs/_base_/models/efficientnet_b1.py
+12
-0
configs/_base_/models/efficientnet_b2.py
configs/_base_/models/efficientnet_b2.py
+12
-0
configs/_base_/models/efficientnet_b3.py
configs/_base_/models/efficientnet_b3.py
+12
-0
configs/_base_/models/efficientnet_b4.py
configs/_base_/models/efficientnet_b4.py
+12
-0
configs/_base_/models/efficientnet_b5.py
configs/_base_/models/efficientnet_b5.py
+12
-0
configs/_base_/models/efficientnet_b6.py
configs/_base_/models/efficientnet_b6.py
+12
-0
configs/_base_/models/efficientnet_b7.py
configs/_base_/models/efficientnet_b7.py
+12
-0
configs/_base_/models/efficientnet_b8.py
configs/_base_/models/efficientnet_b8.py
+12
-0
configs/_base_/models/efficientnet_em.py
configs/_base_/models/efficientnet_em.py
+13
-0
configs/_base_/models/efficientnet_es.py
configs/_base_/models/efficientnet_es.py
+13
-0
configs/_base_/models/efficientnet_l2.py
configs/_base_/models/efficientnet_l2.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_b0.py
configs/_base_/models/efficientnet_v2/efficientnetv2_b0.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_b1.py
configs/_base_/models/efficientnet_v2/efficientnetv2_b1.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_b2.py
configs/_base_/models/efficientnet_v2/efficientnetv2_b2.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_b3.py
configs/_base_/models/efficientnet_v2/efficientnetv2_b3.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_l.py
configs/_base_/models/efficientnet_v2/efficientnetv2_l.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_m.py
configs/_base_/models/efficientnet_v2/efficientnetv2_m.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_s.py
configs/_base_/models/efficientnet_v2/efficientnetv2_s.py
+12
-0
configs/_base_/models/efficientnet_v2/efficientnetv2_xl.py
configs/_base_/models/efficientnet_v2/efficientnetv2_xl.py
+12
-0
No files found.
Too many changes to show.
To preserve performance only
1000 of 1000+
files are displayed.
Plain diff
Email patch
configs/_base_/models/efficientnet_b0.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b0'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b1.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b1'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b2.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b2'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1408
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b3.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b3'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1536
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b4.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b4'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1792
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b5.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b5'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
2048
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b6.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b6'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
2304
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b7.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b7'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
2560
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_b8.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'b8'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
2816
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_em.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
# `em` means EfficientNet-EdgeTPU-M arch
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'em'
,
act_cfg
=
dict
(
type
=
'ReLU'
)),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_es.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
# `es` means EfficientNet-EdgeTPU-S arch
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'es'
,
act_cfg
=
dict
(
type
=
'ReLU'
)),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_l2.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNet'
,
arch
=
'l2'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
5504
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_b0.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'b0'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_b1.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'b1'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_b2.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'b2'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1408
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_b3.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'b3'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1536
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_l.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'l'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_m.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'm'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_s.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
's'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
configs/_base_/models/efficientnet_v2/efficientnetv2_xl.py
0 → 100644
View file @
d476eeba
# model settings
model
=
dict
(
type
=
'ImageClassifier'
,
backbone
=
dict
(
type
=
'EfficientNetV2'
,
arch
=
'xl'
),
neck
=
dict
(
type
=
'GlobalAveragePooling'
),
head
=
dict
(
type
=
'LinearClsHead'
,
num_classes
=
1000
,
in_channels
=
1280
,
loss
=
dict
(
type
=
'CrossEntropyLoss'
,
loss_weight
=
1.0
),
topk
=
(
1
,
5
),
))
Prev
1
…
3
4
5
6
7
8
9
10
11
…
50
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment