santhosh commited on
Commit
4204b83
·
verified ·
1 Parent(s): 00750bb

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
+ base_model: qingy2024/GRMR-2B-Instruct
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - unsloth
7
+ - gemma2
8
+ - trl
9
+ - openvino
10
+ - openvino-export
11
+ license: apache-2.0
12
+ language:
13
+ - en
14
+ pipeline_tag: text-generation
15
+ ---
16
+
17
+ This model was converted to OpenVINO from [`qingy2024/GRMR-2B-Instruct`](https://huggingface.co/qingy2024/GRMR-2B-Instruct) 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 = "santhosh/GRMR-2B-Instruct-openvino"
32
+ model = OVModelForCausalLM.from_pretrained(model_id)
33
+ ```