AIFunOver commited on
Commit
eb86754
·
verified ·
1 Parent(s): cbd1de6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: NovaSky-AI/Sky-T1-32B-Preview
3
+ datasets:
4
+ - codeparrot/apps
5
+ - BAAI/TACO
6
+ - AI-MO/NuminaMath-CoT
7
+ language:
8
+ - en
9
+ library_name: transformers
10
+ license: apache-2.0
11
+ tags:
12
+ - openvino
13
+ - nncf
14
+ - 8-bit
15
+ base_model_relation: quantized
16
+ ---
17
+
18
+ This model is a quantized version of [`NovaSky-AI/Sky-T1-32B-Preview`](https://huggingface.co/NovaSky-AI/Sky-T1-32B-Preview) 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).
19
+ First make sure you have `optimum-intel` installed:
20
+ ```bash
21
+ pip install optimum[openvino]
22
+ ```
23
+ To load your model you can do as follows:
24
+ ```python
25
+ from optimum.intel import OVModelForCausalLM
26
+ model_id = "AIFunOver/Sky-T1-32B-Preview-openvino-8bit"
27
+ model = OVModelForCausalLM.from_pretrained(model_id)
28
+ ```