# 🐄 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)