Instructions to use csr2000/UCF_Crime with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use csr2000/UCF_Crime with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="csr2000/UCF_Crime") 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("csr2000/UCF_Crime") model = AutoModelForImageClassification.from_pretrained("csr2000/UCF_Crime") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -4,6 +4,7 @@ tags:
|
|
| 4 |
- generated_from_trainer
|
| 5 |
datasets:
|
| 6 |
- imagefolder
|
|
|
|
| 7 |
model-index:
|
| 8 |
- name: UCF_Crime
|
| 9 |
results: []
|
|
|
|
| 4 |
- generated_from_trainer
|
| 5 |
datasets:
|
| 6 |
- imagefolder
|
| 7 |
+
base_model: google/vit-base-patch16-224
|
| 8 |
model-index:
|
| 9 |
- name: UCF_Crime
|
| 10 |
results: []
|