1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
- from .sg_module import SgModule
- # Classification models
- from super_gradients.training.models.classification_models.beit import Beit, BeitLargePatch16_224, BeitBasePatch16_224
- from super_gradients.training.models.classification_models.densenet import DenseNet, CustomizedDensnet, DenseNet121, DenseNet161, DenseNet169, DenseNet201
- from super_gradients.training.models.classification_models.dpn import DPN, DPN26, DPN92
- from super_gradients.training.models.classification_models.efficientnet import (
- CustomizedEfficientnet,
- EfficientNet,
- EfficientNetB0,
- EfficientNetB1,
- EfficientNetL2,
- EfficientNetB2,
- EfficientNetB3,
- EfficientNetB4,
- EfficientNetB5,
- EfficientNetB6,
- EfficientNetB7,
- EfficientNetB8,
- )
- from super_gradients.training.models.classification_models.googlenet import GoogleNetV1, GoogLeNet
- from super_gradients.training.models.classification_models.lenet import LeNet
- from super_gradients.training.models.classification_models.mobilenet import MobileNet
- from super_gradients.training.models.classification_models.mobilenetv2 import MobileNetBase, MobileNetV2Base, MobileNetV2, MobileNetV2_135, CustomMobileNetV2
- from super_gradients.training.models.classification_models.mobilenetv3 import MobileNetV3
- from super_gradients.training.models.classification_models.pnasnet import PNASNet, PNASNetA, PNASNetB
- from super_gradients.training.models.classification_models.preact_resnet import (
- PreActResNet,
- PreActResNet18,
- PreActResNet34,
- PreActResNet50,
- PreActResNet101,
- PreActResNet152,
- )
- from super_gradients.training.models.classification_models.resnet import (
- ResNet,
- ResNet18,
- ResNet34,
- ResNet50,
- ResNet101,
- ResNet152,
- ResNet18Cifar,
- ResNet50_3343,
- CifarResNet,
- CustomizedResnet,
- CustomizedResnet50Cifar,
- CustomizedResnetCifar,
- CustomizedResnet50,
- )
- from super_gradients.training.models.classification_models.resnext import ResNeXt, ResNeXt50, ResNeXt101
- from super_gradients.training.models.classification_models.senet import SENet, SENet18
- from super_gradients.training.models.classification_models.shufflenet import ShuffleNet, ShuffleNetG2, ShuffleNetG3
- from super_gradients.training.models.classification_models.shufflenetv2 import (
- ShuffleNetV2Base,
- ShufflenetV2_x0_5,
- ShufflenetV2_x1_0,
- ShufflenetV2_x1_5,
- CustomizedShuffleNetV2,
- ShufflenetV2_x2_0,
- )
- from super_gradients.training.models.classification_models.vgg import VGG
- from super_gradients.training.models.classification_models.vit import ViT, ViTBase, ViTLarge, ViTHuge
- # Detection models
- from super_gradients.training.models.detection_models.csp_darknet53 import CSPDarknet53
- from super_gradients.training.models.detection_models.pp_yolo_e.pp_yolo_e import PPYoloE, PPYoloE_S, PPYoloE_M, PPYoloE_L, PPYoloE_X
- from super_gradients.training.models.detection_models.darknet53 import Darknet53, Darknet53Base
- from super_gradients.training.models.detection_models.ssd import SSDMobileNetV1, SSDLiteMobileNetV2
- from super_gradients.training.models.detection_models.yolo_base import YoloBase, YoloPostPredictionCallback
- from super_gradients.training.models.detection_models.yolox import YoloX_N, YoloX_T, YoloX_S, YoloX_M, YoloX_L, YoloX_X, CustomYoloX
- from super_gradients.training.models.detection_models.customizable_detector import CustomizableDetector
- # Segmentation models
- from super_gradients.training.models.segmentation_models.shelfnet import (
- ShelfNet50,
- ShelfNet101,
- ShelfNetHW,
- ShelfNetLW,
- ShelfNetBase,
- ShelfNet503343,
- ShelfNet18_LW,
- ShelfNet34_LW,
- )
- from super_gradients.training.models.segmentation_models.unet.unet import UNet, UNetBase, UNetCustom
- from super_gradients.training.models.segmentation_models.ddrnet import DDRNet, DDRNet23, DDRNet39, DDRNetCustom, DDRNet23Slim
- from super_gradients.training.models.segmentation_models.laddernet import LadderNet, LadderNet50, LadderNet101, LadderNet503433
- from super_gradients.training.models.segmentation_models.ppliteseg import PPLiteSegBase, PPLiteSegB, PPLiteSegT
- from super_gradients.training.models.segmentation_models.regseg import RegSeg, RegSeg48, RegSeg53
- from super_gradients.training.models.segmentation_models.stdc import (
- STDC1Seg,
- STDC2Seg,
- STDCClassification,
- STDC1Classification,
- STDCClassificationBase,
- STDC2Classification,
- STDCSegmentationBase,
- CustomSTDCSegmentation,
- )
- # Pose estimation
- from super_gradients.training.models.pose_estimation_models.pose_ppyolo import PosePPYoloL
- from super_gradients.training.models.pose_estimation_models.pose_ddrnet39 import PoseDDRNet39
- from super_gradients.training.models.pose_estimation_models.dekr_hrnet import DEKRPoseEstimationModel, DEKRW32
- # KD
- from super_gradients.training.models.kd_modules.kd_module import KDModule
- import super_gradients.training.models.user_models as user_models
- from super_gradients.training.models.model_factory import get, get_model_name
- from super_gradients.training.models.arch_params_factory import get_arch_params
- from super_gradients.training.models.conversion import convert_to_onnx, convert_from_config
- from super_gradients.common.object_names import Models
- from super_gradients.common.registry.registry import ARCHITECTURES
- __all__ = [
- "SgModule",
- "Beit",
- "BeitLargePatch16_224",
- "BeitBasePatch16_224",
- "DenseNet",
- "CustomizedDensnet",
- "DenseNet121",
- "DenseNet161",
- "DenseNet169",
- "DenseNet201",
- "DPN",
- "DPN26",
- "DPN92",
- "CustomizedEfficientnet",
- "EfficientNet",
- "EfficientNetB0",
- "EfficientNetB1",
- "EfficientNetL2",
- "EfficientNetB2",
- "EfficientNetB3",
- "EfficientNetB4",
- "EfficientNetB5",
- "EfficientNetB6",
- "EfficientNetB7",
- "EfficientNetB8",
- "GoogleNetV1",
- "GoogLeNet",
- "LeNet",
- "MobileNet",
- "MobileNetBase",
- "MobileNetV2Base",
- "MobileNetV2",
- "MobileNetV2_135",
- "CustomMobileNetV2",
- "MobileNetV3",
- "PNASNet",
- "PNASNetA",
- "PNASNetB",
- "PreActResNet",
- "PreActResNet18",
- "PreActResNet34",
- "PreActResNet50",
- "PreActResNet101",
- "PreActResNet152",
- "ResNet",
- "ResNet18",
- "ResNet34",
- "ResNet50",
- "ResNet101",
- "ResNet152",
- "ResNet18Cifar",
- "ResNet50_3343",
- "CifarResNet",
- "CustomizedResnet",
- "CustomizedResnet50Cifar",
- "CustomizedResnetCifar",
- "CustomizedResnet50",
- "ResNeXt",
- "ResNeXt50",
- "ResNeXt101",
- "SENet",
- "SENet18",
- "ShuffleNet",
- "ShuffleNetG2",
- "ShuffleNetG3",
- "ShuffleNetV2Base",
- "ShufflenetV2_x0_5",
- "ShufflenetV2_x1_0",
- "ShufflenetV2_x1_5",
- "CustomizedShuffleNetV2",
- "ShufflenetV2_x2_0",
- "VGG",
- "ViT",
- "ViTBase",
- "ViTLarge",
- "ViTHuge",
- "CSPDarknet53",
- "PPYoloE",
- "PPYoloE_S",
- "PPYoloE_M",
- "PPYoloE_L",
- "PPYoloE_X",
- "Darknet53",
- "Darknet53Base",
- "SSDMobileNetV1",
- "SSDLiteMobileNetV2",
- "YoloBase",
- "YoloX_N",
- "YoloX_T",
- "YoloX_S",
- "YoloX_M",
- "YoloX_L",
- "YoloX_X",
- "CustomYoloX",
- "YoloPostPredictionCallback",
- "CustomizableDetector",
- "ShelfNet50",
- "ShelfNet101",
- "ShelfNetHW",
- "ShelfNetLW",
- "ShelfNetBase",
- "ShelfNet503343",
- "ShelfNet18_LW",
- "ShelfNet34_LW",
- "UNet",
- "UNetBase",
- "UNetCustom",
- "DDRNet",
- "DDRNet23",
- "DDRNet39",
- "DDRNetCustom",
- "DDRNet23Slim",
- "LadderNet",
- "LadderNet50",
- "LadderNet101",
- "LadderNet503433",
- "PPLiteSegBase",
- "PPLiteSegB",
- "PPLiteSegT",
- "RegSeg",
- "RegSeg48",
- "RegSeg53",
- "STDC1Seg",
- "STDC2Seg",
- "STDCClassification",
- "STDC1Classification",
- "STDCClassificationBase",
- "STDC2Classification",
- "STDCSegmentationBase",
- "CustomSTDCSegmentation",
- "PosePPYoloL",
- "PoseDDRNet39",
- "DEKRPoseEstimationModel",
- "DEKRW32",
- "KDModule",
- "get",
- "get_model_name",
- "get_arch_params",
- "convert_to_onnx",
- "convert_from_config",
- "ARCHITECTURES",
- "Models",
- "user_models",
- ]
|