From fc02cd83737b54c7ab1565f4ad3b23329a3a296c Mon Sep 17 00:00:00 2001 From: Benjamin Berman Date: Thu, 5 Sep 2024 01:24:14 -0700 Subject: [PATCH] Add fine tuned CLIP checkpoint --- comfy/model_downloader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy/model_downloader.py b/comfy/model_downloader.py index 3189f1dce..5cef8f07f 100644 --- a/comfy/model_downloader.py +++ b/comfy/model_downloader.py @@ -436,6 +436,7 @@ KNOWN_CLIP_MODELS: Final[KnownDownloadables] = KnownDownloadables([ HuggingFile("comfyanonymous/flux_text_encoders", "clip_l.safetensors", save_with_filename="clip_l.safetensors"), # uses names from https://comfyanonymous.github.io/ComfyUI_examples/audio/ HuggingFile("google-t5/t5-base", "model.safetensors", save_with_filename="t5_base.safetensors"), + HuggingFile("zer0int/CLIP-GmP-ViT-L-14", "ViT-L-14-TEXT-detail-improved-hiT-GmP-TE-only-HF.safetensors"), ], folder_name="clip") _known_models_db: list[KnownDownloadables] = [