File size: 638 Bytes
4b8501f a0775f9 6ff9ad4 a0775f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
license: mit
tags:
- image-classification
- resnet50
task:
- image-classification
output:
- label: "Class Name"
score: 0.95
widget:
- text: "path_to_image.jpg"
output:
- label: "Class Name"
score: 0.95
---
# Model Card for Your Model
This is a pre-trained ResNet-50 model for image classification. It has been trained on [your dataset description].
## Model Usage
You can use this model with the Hugging Face API as follows:
```python
from transformers import pipeline
classifier = pipeline("image-classification", model="username/model_name")
result = classifier("path_to_image.jpg")
print(result)
|