Delete README.md
Browse files
README.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
| 1 |
-
---
|
| 2 |
-
library_name: transformers
|
| 3 |
-
license: mit
|
| 4 |
-
base_model: LocoreMind/LocoOperator-4B
|
| 5 |
-
tags:
|
| 6 |
-
- code
|
| 7 |
-
- agent
|
| 8 |
-
- tool-calling
|
| 9 |
-
- distillation
|
| 10 |
-
- qwen3
|
| 11 |
-
- gguf
|
| 12 |
-
- llama-cpp
|
| 13 |
-
- openvino
|
| 14 |
-
- openvino-export
|
| 15 |
-
language:
|
| 16 |
-
- en
|
| 17 |
-
pipeline_tag: text-generation
|
| 18 |
-
---
|
| 19 |
-
|
| 20 |
-
This model was converted to OpenVINO from [`LocoreMind/LocoOperator-4B`](https://huggingface.co/LocoreMind/LocoOperator-4B) using [optimum-intel](https://github.com/huggingface/optimum-intel)
|
| 21 |
-
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
|
| 22 |
-
|
| 23 |
-
First make sure you have optimum-intel installed:
|
| 24 |
-
|
| 25 |
-
```bash
|
| 26 |
-
pip install optimum[openvino]
|
| 27 |
-
```
|
| 28 |
-
|
| 29 |
-
To load your model you can do as follows:
|
| 30 |
-
|
| 31 |
-
```python
|
| 32 |
-
from optimum.intel import OVModelForCausalLM
|
| 33 |
-
|
| 34 |
-
model_id = "leon3334/LocoOperator-4B-openvino"
|
| 35 |
-
model = OVModelForCausalLM.from_pretrained(model_id)
|
| 36 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|