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:

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)