microsoft/cats_vs_dogs
Viewer • Updated • 23.4k • 5.25k • 63
How to use parneetsingh022/dog-cat-classification with Transformers:
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("parneetsingh022/dog-cat-classification", dtype="auto")If you encounter any problems with downloading or using the model, please report the issue by creating one at the following GitHub repository: https://github.com/parneetsingh022/dog-cat-classification.git
https://huggingface.co/spaces/parneetsingh022/cat-vs-dog
In order to download and use the model follow these steps:
git clone https://github.com/parneetsingh022/dog-cat-classification.git
pip install transformers
custom_classifier as described below:Required Imports:
import torch
from PIL import Image
from torchvision import transforms
from custom_classifier.configuration import CustomModelConfig
from custom_classifier.model import CustomClassifier
Loading the model:
model_name = "parneetsingh022/dog-cat-classification"
config = CustomModelConfig.from_pretrained(model_name)
model = CustomClassifier.from_pretrained(model_name, config=config)
Pridicting probability of individual class:
# Load an example image
image_path = "dog.jpeg"
outputs = model.predict(image_path)
print(outputs)
Output: {'cat': 0.003, 'dog': 0.997}
Getting class name instead of probabilities:
# Load an example image
image_path = "dog_new.jpeg"
outputs = model.predict(image_path, get_class=True)
print(output)
Output: 'dog'