--- language: fa tags: - bert-fa - bert-persian - persian-lm - openvino - openvino-export license: apache-2.0 base_model: HooshvareLab/bert-fa-base-uncased pipeline_tag: fill-mask --- This model was converted to OpenVINO from [`HooshvareLab/bert-fa-base-uncased`](https://huggingface.co/HooshvareLab/bert-fa-base-uncased) 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 OVModelForMaskedLM model_id = "Messbah-A/bert-fa-base-uncased-openvino" model = OVModelForMaskedLM.from_pretrained(model_id) ```