File size: 391 Bytes
f1106d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from .dataset_config import *
from .model_config import *
ModelConfig = {
"PRETUNE": model_config_pretune,
"FINETUNE": model_config_finetune,
}
DataConfig = {
"Pretrain": [Pretrain, COCO_CAP, COCO_REG, COCO_REC],
"SQA": [SQA],
"FINETUNE": [VIT, MIMIC_imageonly, VIDEO],
"Pretrainv1.5": [Pretrain, Pretrain_valley_llava],
"FINETUNEv1.5": [VIT, VIDEO, LLaVA],
} |