__init__.py 865 Bytes
Newer Older
1
from .alexnet import *
limm's avatar
limm committed
2
from .convnext import *
Geoff Pleiss's avatar
Geoff Pleiss committed
3
from .densenet import *
limm's avatar
limm committed
4
from .efficientnet import *
5
from .googlenet import *
limm's avatar
limm committed
6
from .inception import *
7
from .mnasnet import *
limm's avatar
limm committed
8
9
10
from .mobilenet import *
from .regnet import *
from .resnet import *
Bar's avatar
Bar committed
11
from .shufflenetv2 import *
limm's avatar
limm committed
12
13
14
15
16
17
18
19
20
21
22
23
from .squeezenet import *
from .vgg import *
from .vision_transformer import *
from .swin_transformer import *
from .maxvit import *
from . import detection, optical_flow, quantization, segmentation, video

# The Weights and WeightsEnum are developer-facing utils that we make public for
# downstream libs like torchgeo https://github.com/pytorch/vision/issues/7094
# TODO: we could / should document them publicly, but it's not clear where, as
# they're not intended for end users.
from ._api import get_model, get_model_builder, get_model_weights, get_weight, list_models, Weights, WeightsEnum