NitroLLM commited on
Commit
fef5760
·
verified ·
1 Parent(s): 24e79f0

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -28
README.md DELETED
@@ -1,28 +0,0 @@
1
- ---
2
- license: apache-2.0
3
- datasets:
4
- - allenai/dolma
5
- pipeline_tag: text-generation
6
- tags:
7
- - openvino
8
- - openvino-export
9
- base_model: amd/AMD-OLMo-1B
10
- ---
11
-
12
- This model was converted to OpenVINO from [`amd/AMD-OLMo-1B`](https://huggingface.co/amd/AMD-OLMo-1B) using [optimum-intel](https://github.com/huggingface/optimum-intel)
13
- via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
14
-
15
- First make sure you have optimum-intel installed:
16
-
17
- ```bash
18
- pip install optimum[openvino]
19
- ```
20
-
21
- To load your model you can do as follows:
22
-
23
- ```python
24
- from optimum.intel import OVModelForCausalLM
25
-
26
- model_id = "Choo-choo-cat/AMD-OLMo-1B-openvino"
27
- model = OVModelForCausalLM.from_pretrained(model_id)
28
- ```