TheHierophant commited on
Commit
7d3f9e2
1 Parent(s): a427666

Upload README.md with huggingface_hub

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