Spaces:
Sleeping
Sleeping
File size: 432 Bytes
6e9c433 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""
Do not import other modules!
"""
class PRETRAINED_BACKBONE:
MULTIMAE = "multimae"
S_MULTIMAE = "s-multimae"
LARGE_S_MULTIMAE = "large-s-multimae"
MAE = "mae"
LARGE_MAE = "large-mae"
HUGE_MAE = "huge-mae"
FINETUNE_LARGE_S_MULTIMAE = "finetune-large-s-multimae"
FINETUNE_S_MULTIMAE = "finetune-s-multimae"
VIT = "vit" # train from supervised model
NONE = None # train from scratch
|