File size: 445 Bytes
8021009 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 🐄 GoVed-AI: Indian Cattle & Buffalo Breed Classifier
GoVed-AI is a deep learning model trained to classify 40+ Indian cattle and buffalo breeds using **ResNet-18**.
## 🚀 Usage
You can use the Hugging Face Inference API:
```python
from huggingface_hub import InferenceClient
from PIL import Image
client = InferenceClient("username/GoVed-AI")
result = client.post(
json={"inputs": "https://example.com/cow.jpg"}
)
print(result)
|