Instructions to use PaddlePaddle/PP-OCRv6_tiny_det with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PaddleOCR
How to use PaddlePaddle/PP-OCRv6_tiny_det with PaddleOCR:
# 1. See https://www.paddlepaddle.org.cn/en/install to install paddlepaddle # 2. pip install paddleocr from paddleocr import TextDetection model = TextDetection(model_name="PP-OCRv6_tiny_det") output = model.predict(input="path/to/image.png", batch_size=1) for res in output: res.print() res.save_to_img(save_path="./output/") res.save_to_json(save_path="./output/res.json") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -28,7 +28,6 @@ PP-OCRv6: From 1.5M to 34.5M Parameters, Surpassing Billion-Scale VLMs on OCR Ta
|
|
| 28 |
[](https://huggingface.co/PaddlePaddle/PP-OCRv6_tiny_det_safetensors)
|
| 29 |
[](https://huggingface.co/PaddlePaddle/PP-OCRv6_tiny_det_onnx)
|
| 30 |
|
| 31 |
-
|
| 32 |
**🔥 [Official Website](https://www.paddleocr.com)**
|
| 33 |
**📝 [Technical Report](https://arxiv.org/pdf/2606.13108)**
|
| 34 |
|
|
|
|
| 28 |
[](https://huggingface.co/PaddlePaddle/PP-OCRv6_tiny_det_safetensors)
|
| 29 |
[](https://huggingface.co/PaddlePaddle/PP-OCRv6_tiny_det_onnx)
|
| 30 |
|
|
|
|
| 31 |
**🔥 [Official Website](https://www.paddleocr.com)**
|
| 32 |
**📝 [Technical Report](https://arxiv.org/pdf/2606.13108)**
|
| 33 |
|