Instructions to use ipd805/digit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ipd805/digit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="ipd805/digit")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ipd805/digit", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- model_card.json +6 -0
model_card.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "Digit and Icon Detection",
|
| 3 |
+
"tags": ["object-detection", "onnx"],
|
| 4 |
+
"library_name": "yolov8",
|
| 5 |
+
"pipeline_tag": "object-detection"
|
| 6 |
+
}
|