AIFunOver commited on
Commit
a20518b
·
verified ·
1 Parent(s): 7a9202a

Upload README.md with huggingface_hub

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