How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-classification", model="JungminChung/India_ResNet")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")
# Load model directly
from transformers import AutoImageProcessor, AutoModelForImageClassification

processor = AutoImageProcessor.from_pretrained("JungminChung/India_ResNet")
model = AutoModelForImageClassification.from_pretrained("JungminChung/India_ResNet")
Quick Links
README.md exists but content is empty.
Downloads last month
8
Safetensors
Model size
11.2M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Spaces using JungminChung/India_ResNet 2