Instructions to use aslakey/text_overlay_detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aslakey/text_overlay_detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="aslakey/text_overlay_detection") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoTokenizer, AutoModelForImageClassification tokenizer = AutoTokenizer.from_pretrained("aslakey/text_overlay_detection") model = AutoModelForImageClassification.from_pretrained("aslakey/text_overlay_detection") - Notebooks
- Google Colab
- Kaggle