Add model card
Browse filesThis PR adds a model card, pipeline tag, and makes sure it can be viewed from https://huggingface.co/papers/2403.04908.
Cheers,
Niels
README.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pipeline_tag: zero-shot-image-classification
|
3 |
+
---
|
4 |
+
|
5 |
+
This repository contains the checkpoints of the paper [Self-Adapting Large Visual-Language Models to Edge Devices across Visual Modalities](https://huggingface.co/papers/2403.04908).
|
6 |
+
|
7 |
+
To download one checkpoint, one can do:
|
8 |
+
|
9 |
+
```python
|
10 |
+
!pip install huggingface_hub
|
11 |
+
from huggingface_hub import hf_hub_download
|
12 |
+
|
13 |
+
filepath = hf_hub_download(repo_id="ramfais/edgevl_weights", filename="datt_eurosat/wandb/latest-run/files/src/best_model.pth")
|
14 |
+
```
|