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="lrzjason/hand-classifier")
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("lrzjason/hand-classifier")
model = AutoModelForImageClassification.from_pretrained("lrzjason/hand-classifier")
Quick Links

a hand classifier detect the image is showing left hand or right hand

it is trained with hagrid dataset on vit model, google/vit-base-patch16-224-in21k.

Limitation: it couldn't predict both hand and no hand images.

inputs = image_processor(image, return_tensors="pt")
with torch.no_grad():
    logits = model(**inputs).logits

predicted_label = logits.argmax(-1).item()
print(f'predicted_label: {model.config.id2label[predicted_label]}')
Downloads last month
9
Safetensors
Model size
85.8M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support