Image Classification
Transformers
Safetensors
bit
LADI
Aerial Imagery
Disaster Response
Emergency Management
Instructions to use MITLL/LADI-v2-classifier-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MITLL/LADI-v2-classifier-small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="MITLL/LADI-v2-classifier-small") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("MITLL/LADI-v2-classifier-small") model = AutoModelForImageClassification.from_pretrained("MITLL/LADI-v2-classifier-small") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -107,10 +107,16 @@ print(labels)
|
|
| 107 |
**BibTeX:**
|
| 108 |
|
| 109 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
```
|
| 111 |
|
| 112 |
-
Paper forthcoming - watch this space for details
|
| 113 |
-
|
| 114 |
---
|
| 115 |
- **Developed by:** Jeff Liu, Sam Scheele
|
| 116 |
- **Funded by:** Department of the Air Force under Air Force Contract No. FA8702-15-D-0001
|
|
|
|
| 107 |
**BibTeX:**
|
| 108 |
|
| 109 |
```
|
| 110 |
+
@misc{ladi_v2,
|
| 111 |
+
title={LADI v2: Multi-label Dataset and Classifiers for Low-Altitude Disaster Imagery},
|
| 112 |
+
author={Samuel Scheele and Katherine Picchione and Jeffrey Liu},
|
| 113 |
+
year={2024},
|
| 114 |
+
eprint={2406.02780},
|
| 115 |
+
archivePrefix={arXiv},
|
| 116 |
+
primaryClass={cs.CV}
|
| 117 |
+
}
|
| 118 |
```
|
| 119 |
|
|
|
|
|
|
|
| 120 |
---
|
| 121 |
- **Developed by:** Jeff Liu, Sam Scheele
|
| 122 |
- **Funded by:** Department of the Air Force under Air Force Contract No. FA8702-15-D-0001
|