Views
No views yet
mlx_vlm.convert), ~1.09 GB on diskPaddleOCRVLForConditionalGeneration (custom paddleocr_vl model type; trust_remote_code required)mlx_vlm.server or the MLX Python API with trust_remote_code=Truepip install mlx-vlm1from mlx_vlm import load, generate
2
3model, processor = load("OpenGryd/PaddleOCR-VL-1.6-MLX-8bit")
4output = generate(model, processor, "media/document.png", max_tokens=4096)
5print(output)python -m mlx_vlm.server --model OpenGryd/PaddleOCR-VL-1.6-MLX-8bit --port 8090trust_remote_code=True (custom modeling code ships with the repo)1@misc{paddleocrvl2025,
2 title={PaddleOCR-VL-1.6: Expanding the Frontier of Document Parsing with Under-Optimized Region Refinement and Progressive Post-Training},
3 author={PaddlePaddle Team},
4 year={2025},
5 howpublished={\url{https://huggingface.co/PaddlePaddle/PaddleOCR-VL-1.6}},
6}