themightywolfie commited on
Commit
a43fe7f
·
verified ·
1 Parent(s): 526edf8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ datasets:
5
+ - PrimeIntellect/verifiable-coding-problems
6
+ - likaixin/TACO-verified
7
+ - livecodebench/code_generation_lite
8
+ language:
9
+ - en
10
+ base_model: agentica-org/DeepCoder-1.5B-Preview
11
+ pipeline_tag: text-generation
12
+ tags:
13
+ - openvino
14
+ - openvino-export
15
+ ---
16
+
17
+ This model was converted to OpenVINO from [`agentica-org/DeepCoder-1.5B-Preview`](https://huggingface.co/agentica-org/DeepCoder-1.5B-Preview) using [optimum-intel](https://github.com/huggingface/optimum-intel)
18
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
19
+
20
+ First make sure you have optimum-intel installed:
21
+
22
+ ```bash
23
+ pip install optimum[openvino]
24
+ ```
25
+
26
+ To load your model you can do as follows:
27
+
28
+ ```python
29
+ from optimum.intel import OVModelForCausalLM
30
+
31
+ model_id = "themightywolfie/DeepCoder-1.5B-Preview-openvino"
32
+ model = OVModelForCausalLM.from_pretrained(model_id)
33
+ ```