ramfais nielsr HF staff commited on
Commit
aa32d84
1 Parent(s): f1a48db

Add model card (#1)

Browse files

- Add model card (dd2dad1b1f88386b64cf6c4f30ae769c85f7ff2c)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +14 -0
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
+ ```