File size: 459 Bytes
7be0be1 59d0d91 7be0be1 59d0d91 7be0be1 59d0d91 7be0be1 8d202ab 59d0d91 7be0be1 59d0d91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
library_name: torch
tags:
- image-classification
- resnet
---
# Model Card Content
## Model Description
This is a ResNet model for image classification.
## Usage
```python
import requests
API_URL = "https://api-inference.huggingface.co/models/giulio678/model_v11"
headers = {"Authorization": "Bearer TUO_TOKEN"}
payload = {"inputs": "path/to/your/image.jpg"}
response = requests.post(API_URL, headers=headers, json=payload)
print(response.json())
|