Instructions to use dilexsan/yolo_receipt_detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dilexsan/yolo_receipt_detection with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dilexsan/yolo_receipt_detection", dtype="auto") - Notebooks
- Google Colab
- Kaggle
from ultralytics import YOLO
import matplotlib.pyplot as plt
model = YOLO("modelv8n_1.onnx")
<!-- model = YOLO("modelv8n_1.pt") -->
results = model("image.jpg")
results[0].show()
output_image = results[0].plot()
plt.imshow(output_image)
plt.axis("off")
plt.show()
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support