Views
No views yet
laion/CLIP-ViT-bigG-14-laion2B-39B-b160k. The text encoder is finetuned with LEAF at $k=1$ with $\rho=50$.1from transformers import CLIPProcessor, CLIPModel
2
3model_name = "LEAF-CLIP/OpenCLIP-ViT-bigG-rho50-k1"
4processor_name = "laion/CLIP-ViT-bigG-14-laion2B-39B-b160k"
5
6model = CLIPModel.from_pretrained(model_name)
7processor = CLIPProcessor.from_pretrained(processor_name)