File size: 5,027 Bytes
df763d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from .beit import *
from .byoanet import *
from .byobnet import *
from .cait import *
from .coat import *
from .convit import *
from .convmixer import *
from .convnext import *
from .crossvit import *
from .cspnet import *
from .davit import *
from .deit import *
from .densenet import *
from .dla import *
from .dpn import *
from .edgenext import *
from .efficientformer import *
from .efficientformer_v2 import *
from .efficientnet import *
from .efficientvit_mit import *
from .efficientvit_msra import *
from .eva import *
from .fastvit import *
from .focalnet import *
from .gcvit import *
from .ghostnet import *
from .hardcorenas import *
from .hgnet import *
from .hiera import *
from .hieradet_sam2 import *
from .hrnet import *
from .inception_next import *
from .inception_resnet_v2 import *
from .inception_v3 import *
from .inception_v4 import *
from .levit import *
from .maxxvit import *
from .mambaout import *
from .metaformer import *
from .mlp_mixer import *
from .mobilenetv3 import *
from .mobilevit import *
from .mvitv2 import *
from .nasnet import *
from .nest import *
from .nextvit import *
from .nfnet import *
from .pit import *
from .pnasnet import *
from .pvt_v2 import *
from .rdnet import *
from .regnet import *
from .repghost import *
from .repvit import *
from .res2net import *
from .resnest import *
from .resnet import *
from .resnetv2 import *
from .rexnet import *
from .selecsls import *
from .senet import *
from .sequencer import *
from .sknet import *
from .swin_transformer import *
from .swin_transformer_v2 import *
from .swin_transformer_v2_cr import *
from .tiny_vit import *
from .tnt import *
from .tresnet import *
from .twins import *
from .vgg import *
from .visformer import *
from .vision_transformer import *
from .vision_transformer_hybrid import *
from .vision_transformer_relpos import *
from .vision_transformer_sam import *
from .vitamin import *
from .volo import *
from .vovnet import *
from .xception import *
from .xception_aligned import *
from .xcit import *

from ._builder import (
    build_model_with_cfg as build_model_with_cfg,
    load_pretrained as load_pretrained,
    load_custom_pretrained as load_custom_pretrained,
    resolve_pretrained_cfg as resolve_pretrained_cfg,
    set_pretrained_download_progress as set_pretrained_download_progress,
    set_pretrained_check_hash as set_pretrained_check_hash,
)
from ._factory import (
    create_model as create_model,
    parse_model_name as parse_model_name,
    safe_model_name as safe_model_name,
)
from ._features import (
    FeatureInfo as FeatureInfo,
    FeatureHooks as FeatureHooks,
    FeatureHookNet as FeatureHookNet,
    FeatureListNet as FeatureListNet,
    FeatureDictNet as FeatureDictNet,
)
from ._features_fx import (
    FeatureGraphNet as FeatureGraphNet,
    GraphExtractNet as GraphExtractNet,
    create_feature_extractor as create_feature_extractor,
    get_graph_node_names as get_graph_node_names,
    register_notrace_module as register_notrace_module,
    is_notrace_module as is_notrace_module,
    get_notrace_modules as get_notrace_modules,
    register_notrace_function as register_notrace_function,
    is_notrace_function as is_notrace_function,
    get_notrace_functions as get_notrace_functions,
)
from ._helpers import (
    clean_state_dict as clean_state_dict,
    load_state_dict as load_state_dict,
    load_checkpoint as load_checkpoint,
    remap_state_dict as remap_state_dict,
    resume_checkpoint as resume_checkpoint,
)
from ._hub import (
    load_model_config_from_hf as load_model_config_from_hf,
    load_state_dict_from_hf as load_state_dict_from_hf,
    push_to_hf_hub as push_to_hf_hub,
)
from ._manipulate import (
    model_parameters as model_parameters,
    named_apply as named_apply,
    named_modules as named_modules,
    named_modules_with_params as named_modules_with_params,
    group_modules as group_modules,
    group_parameters as group_parameters,
    checkpoint_seq as checkpoint_seq,
    checkpoint as checkpoint,
    adapt_input_conv as adapt_input_conv,
)
from ._pretrained import (
    PretrainedCfg as PretrainedCfg,
    DefaultCfg as DefaultCfg,
    filter_pretrained_cfg as filter_pretrained_cfg,
)
from ._prune import adapt_model_from_string as adapt_model_from_string
from ._registry import (
    split_model_name_tag as split_model_name_tag,
    get_arch_name as get_arch_name,
    generate_default_cfgs as generate_default_cfgs,
    register_model as register_model,
    register_model_deprecations as register_model_deprecations,
    model_entrypoint as model_entrypoint,
    list_models as list_models,
    list_pretrained as list_pretrained,
    get_deprecated_models as get_deprecated_models,
    is_model as is_model,
    list_modules as list_modules,
    is_model_in_modules as is_model_in_modules,
    is_model_pretrained as is_model_pretrained,
    get_pretrained_cfg as get_pretrained_cfg,
    get_pretrained_cfg_value as get_pretrained_cfg_value,
    get_arch_pretrained_cfgs as get_arch_pretrained_cfgs,
)