--- license: agpl-3.0 language: - zh - en pipeline_tag: image-text-to-text library_name: transformers tags: - openvino - openvino-export base_model: opendatalab/MinerU2.5-2509-1.2B --- This model was converted to OpenVINO from [`opendatalab/MinerU2.5-2509-1.2B`](https://huggingface.co/opendatalab/MinerU2.5-2509-1.2B) using [optimum-intel](https://github.com/huggingface/optimum-intel) via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space. First make sure you have optimum-intel installed: ```bash pip install optimum[openvino] ``` To load your model you can do as follows: ```python from optimum.intel import OVModelForVisualCausalLM model_id = "openmartin/MinerU2.5-2509-1.2B-openvino" model = OVModelForVisualCausalLM.from_pretrained(model_id) ```