dpastushenkov commited on
Commit
c8335dd
·
verified ·
1 Parent(s): 377d4a7

Upload README.md with huggingface_hub

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