Views
No views yet
laion/CLIP-ViT-H-14-laion2B-s32B-b79K. The image encoder is finetuned with FARE at $\epsilon=2/255$.1from transformers import CLIPProcessor, CLIPModel
2
3model_name = "LEAF-CLIP/OpenCLIP-ViT-H-FARE2"
4processor_name = "laion/CLIP-ViT-H-14-laion2B-s32B-b79K"
5
6model = CLIPModel.from_pretrained(model_name)
7processor = CLIPProcessor.from_pretrained(processor_name)