Enhance model card: Add metadata, paper, project, and code links, fix usage snippet
#1
by
nielsr HF Staff - opened
This PR enhances the model card for CLIC-ViT-L-14-224-CogVLM by:
- Adding the
pipeline_tag: zero-shot-image-classificationfor improved discoverability. - Specifying
library_name: open_clipto enable the "how to use" widget on the model page. - Including the
license: apache-2.0. - Adding direct links to the paper (Advancing Compositional Awareness in CLIP with Efficient Fine-Tuning), project page (https://clic-compositional-clip.github.io/), and GitHub repository (https://github.com/AmitPeleg/CLIC).
- Improving the
Model Detailssection by removing a redundant comment and simplifying the description. - Fixing the
OpenCLIPsample usage code snippet by adding the necessaryfrom urllib.request import urlopenimport statement to make it runnable.