How to use wendys-llc/checkbox-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="wendys-llc/checkbox-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("wendys-llc/checkbox-classifier") model = AutoModelForImageClassification.from_pretrained("wendys-llc/checkbox-classifier")
Thanks so much for this model!What checkbox detection model would you suggest using (before using this classifier) in order in order to detect the checkbox regions?
· Sign up or log in to comment