chkiic commited on
Commit
a9e2502
·
verified ·
1 Parent(s): 7093933

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - cerebras/SlimPajama-627B
5
+ - bigcode/starcoderdata
6
+ - HuggingFaceH4/ultrachat_200k
7
+ - HuggingFaceH4/ultrafeedback_binarized
8
+ language:
9
+ - en
10
+ widget:
11
+ - example_title: Fibonacci (Python)
12
+ messages:
13
+ - role: system
14
+ content: You are a chatbot who can help code!
15
+ - role: user
16
+ content: Write me a function to calculate the first 10 digits of the fibonacci
17
+ sequence in Python and print it out to the CLI.
18
+ pipeline_tag: text-generation
19
+ tags:
20
+ - openvino
21
+ - openvino-export
22
+ base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
23
+ ---
24
+
25
+ This model was converted to OpenVINO from [`TinyLlama/TinyLlama-1.1B-Chat-v1.0`](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) using [optimum-intel](https://github.com/huggingface/optimum-intel)
26
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
27
+
28
+ First make sure you have optimum-intel installed:
29
+
30
+ ```bash
31
+ pip install optimum[openvino]
32
+ ```
33
+
34
+ To load your model you can do as follows:
35
+
36
+ ```python
37
+ from optimum.intel import OVModelForCausalLM
38
+
39
+ model_id = "Choo-choo-cat/TinyLlama-1.1B-Chat-v1.0-openvino"
40
+ model = OVModelForCausalLM.from_pretrained(model_id)
41
+ ```