GoVed-AI / Readme.md
Aditya Sah
Initial GoVed-AI model upload
8021009
# ๐Ÿ„ 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)