mirror of
https://github.com/immich-app/immich.git
synced 2025-06-06 07:04:26 -04:00
10 lines
397 B
Python
10 lines
397 B
Python
from export.models.openclip import OpenCLIPModelConfig
|
|
|
|
|
|
MCLIP_TO_OPENCLIP = {
|
|
"XLM-Roberta-Large-Vit-B-32": OpenCLIPModelConfig("ViT-B-32", "openai"),
|
|
"XLM-Roberta-Large-Vit-B-16Plus": OpenCLIPModelConfig("ViT-B-16-plus-240", "laion400m_e32"),
|
|
"LABSE-Vit-L-14": OpenCLIPModelConfig("ViT-L-14", "openai"),
|
|
"XLM-Roberta-Large-Vit-L-14": OpenCLIPModelConfig("ViT-L-14", "openai"),
|
|
}
|