AIFunOver commited on
Commit
5001fff
1 Parent(s): 17a15ad

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: THUDM/chatglm3-6b
3
+ language:
4
+ - zh
5
+ - en
6
+ tags:
7
+ - glm
8
+ - chatglm
9
+ - thudm
10
+ - openvino
11
+ - nncf
12
+ - 8-bit
13
+ base_model_relation: quantized
14
+ ---
15
+
16
+ This model is a quantized version of [`THUDM/chatglm3-6b`](https://huggingface.co/THUDM/chatglm3-6b) and is converted to the OpenVINO format. This model was obtained via the [nncf-quantization](https://huggingface.co/spaces/echarlaix/nncf-quantization) space with [optimum-intel](https://github.com/huggingface/optimum-intel).
17
+ First make sure you have `optimum-intel` installed:
18
+ ```bash
19
+ pip install optimum[openvino]
20
+ ```
21
+ To load your model you can do as follows:
22
+ ```python
23
+ from optimum.intel import OVModelForCausalLM
24
+ model_id = "AIFunOver/chatglm3-6b-openvino-8bit"
25
+ model = OVModelForCausalLM.from_pretrained(model_id)
26
+ ```