oooOOoOo1's picture
Upload README.md with huggingface_hub
324a19a verified
---
license: apache-2.0
datasets:
- open-r1/codeforces-cots
language:
- en
base_model: open-r1/OlympicCoder-7B
pipeline_tag: text-generation
library_name: transformers
tags:
- openvino
- openvino-export
---
This model was converted to OpenVINO from [`open-r1/OlympicCoder-7B`](https://huggingface.co/open-r1/OlympicCoder-7B) 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 OVModelForCausalLM
model_id = "oooOOoOo1/OlympicCoder-7B-openvino"
model = OVModelForCausalLM.from_pretrained(model_id)
```