Image Classification
Transformers
Safetensors
swinv2
LADI
Aerial Imagery
Disaster Response
Emergency Management
Instructions to use MITLL/LADI-v2-classifier-large-reference with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MITLL/LADI-v2-classifier-large-reference with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="MITLL/LADI-v2-classifier-large-reference") 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-large-reference") model = AutoModelForImageClassification.from_pretrained("MITLL/LADI-v2-classifier-large-reference") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ This 'reference' model is trained only on the training split, which contains 8,0
|
|
| 40 |
- **Developed by:** Jeff Liu, Sam Scheele
|
| 41 |
- **Funded by:** Department of the Air Force under Air Force Contract No. FA8702-15-D-0001
|
| 42 |
- **License:** MIT
|
| 43 |
-
- **Finetuned from model:** [
|
| 44 |
|
| 45 |
## How to Get Started with the Model
|
| 46 |
|
|
|
|
| 40 |
- **Developed by:** Jeff Liu, Sam Scheele
|
| 41 |
- **Funded by:** Department of the Air Force under Air Force Contract No. FA8702-15-D-0001
|
| 42 |
- **License:** MIT
|
| 43 |
+
- **Finetuned from model:** [microsoft/swinv2-large-patch4-window12to16-192to256-22kto1k-ft](https://huggingface.co/microsoft/swinv2-large-patch4-window12to16-192to256-22kto1k-ft)
|
| 44 |
|
| 45 |
## How to Get Started with the Model
|
| 46 |
|