AIFunOver commited on
Commit
d30fc20
·
verified ·
1 Parent(s): 989d074

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: tiiuae/Falcon3-1B-Instruct
3
+ language:
4
+ - en
5
+ - fr
6
+ - es
7
+ - pt
8
+ library_name: transformers
9
+ license: other
10
+ license_name: falcon-llm-license
11
+ license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
12
+ tags:
13
+ - falcon3
14
+ - openvino
15
+ - nncf
16
+ - fp16
17
+ ---
18
+
19
+ This model is a quantized version of [`tiiuae/Falcon3-1B-Instruct`](https://huggingface.co/tiiuae/Falcon3-1B-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).
20
+ First make sure you have `optimum-intel` installed:
21
+ ```bash
22
+ pip install optimum[openvino]
23
+ ```
24
+ To load your model you can do as follows:
25
+ ```python
26
+ from optimum.intel import OVModelForCausalLM
27
+ model_id = "AIFunOver/Falcon3-1B-Instruct-openvino-fp16"
28
+ model = OVModelForCausalLM.from_pretrained(model_id)
29
+ ```