CoolFace
Modelpublic

apple/DFN2B-CLIP-ViT-L-14

sourceHugging Faceapple-amlrupdated 2y agoView on Hugging Face
17likes23kdownloads
Model Card

A CLIP (Contrastive Language-Image Pre-training) model trained on DFN-2B. Data Filtering Networks (DFNs) are small networks used to automatically filter large pools of uncurated data. This model was trained on 2B images that were filtered from a pool of 12.8B uncurated image-text pairs (12.8B image-text pairs from CommonPool-12.8B).

This model has been converted to PyTorch from the original JAX checkpoints from Axlearn (https://github.com/apple/axlearn). These weights are directly usable in OpenCLIP (image + text).

Model Details

  • Model Type: Contrastive Image-Text, Zero-Shot Image Classification.
  • Dataset: DFN-2b
  • Papers:
  • Data Filtering Networks: https://arxiv.org/abs/2309.17425
  • Examples Seen: 12.8B

Model Metrics

Eval DatasetMetric
ImageNet 1k0.81396
Caltech-1010.953141
CIFAR-100.9836
CIFAR-1000.8835
CLEVR Counts0.3338
CLEVR Distance0.248733
Country2110.28237
Describable Textures0.66117
EuroSAT0.646296
FGVC Aircraft0.395945
Food-1010.945861
GTSRB0.616152
ImageNet Sketch0.683311
ImageNet v20.7453
ImageNet-A0.6676
ImageNet-O0.3915
ImageNet-R0.900033
KITTI Vehicle Distance0.201125
MNIST0.8468
ObjectNet0.739367
Oxford Flowers-1020.865822
Oxford-IIIT Pet0.954941
Pascal VOC 20070.81644
PatchCamelyon0.63028
Rendered SST20.551345
RESISC450.733175
Stanford Cars0.947146
STL-100.976625
SUN3970.754565
SVHN0.653503
Flickr0.8244
MSCOCO0.570363
WinoGAViL0.551645
iWildCam0.18877
Camelyon170.626179
FMoW0.222137
Dollar Street0.688084
GeoDE0.91023
Average0.668558

Model Usage

With OpenCLIP

import torch
import torch.nn.functional as F
from urllib.request import urlopen
from PIL import Image
from open_clip import create_model_from_pretrained, get_tokenizer 

model, preprocess = create_model_from_pretrained('hf-hub:apple/DFN2B-CLIP-ViT-L-14')
tokenizer = get_tokenizer('ViT-L-14')

image = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))
image = preprocess(image).unsqueeze(0)

labels_list = ["a dog", "a cat", "a donut", "a beignet"]
text = tokenizer(labels_list, context_length=model.context_length)

with torch.no_grad(), torch.cuda.amp.autocast():
    image_features = model.encode_image(image)
    text_features = model.encode_text(text)
    image_features = F.normalize(image_features, dim=-1)
    text_features = F.normalize(text_features, dim=-1)

    text_probs = torch.sigmoid(image_features @ text_features.T * model.logit_scale.exp() + model.logit_bias)

zipped_list = list(zip(labels_list, [round(p.item(), 3) for p in text_probs[0]]))
print("Label probabilities: ", zipped_list)

Citation

bibtex
@article{fang2023data,
  title={Data Filtering Networks},
  author={Fang, Alex and Jose, Albin Madappally and Jain, Amit and Schmidt, Ludwig and Toshev, Alexander and Shankar, Vaishaal},
  journal={arXiv preprint arXiv:2309.17425},
  year={2023}
}