bnjmnmarie commited on
Commit
303a809
·
verified ·
1 Parent(s): 37cbd11

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -3
README.md CHANGED
@@ -1,3 +1,37 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ library_name: transformers
5
+ tags:
6
+ - auto-gptq
7
+ - AutoRound
8
+ ---
9
+
10
+
11
+ ## Model Details
12
+
13
+ This is [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct) quantized with [AutoRound](https://github.com/intel/auto-round/tree/main) (asymmetric quantization) and serialized with the GPTQ format in 4-bit. The model has been created, tested, and evaluated by The Kaitchup.
14
+
15
+ Details on the quantization process and how to use the model here:
16
+ [The Best Quantization Methods to Run Llama 3.1 on Your GPU](https://newsletter.kaitchup.com/p/the-best-quantization-methods-to)
17
+
18
+ I used these hyperparameters for quantization:
19
+
20
+ ```
21
+ bits, group_size = 4, 128
22
+
23
+ autoround = AutoRound(model, tokenizer, nsamples=512, iters=1000, low_gpu_mem_usage=False, bits=bits, group_size=group_size)
24
+
25
+ autoround.quantize()
26
+ output_dir = "./tmp_autoround"
27
+ autoround.save_quantized(output_dir, format='auto_gptq', inplace=True)
28
+ ```
29
+
30
+ Evaluation results:
31
+
32
+ ![arc_challenge, musr, gpqa, mmlu_pro, mmlu….png](https://cdn-uploads.huggingface.co/production/uploads/64b93e6bd6c468ac7536607e/ExiQHtJf981JcUsHcbZW9.png)
33
+
34
+
35
+ - **Developed by:** [The Kaitchup](https://newsletter.kaitchup.com/)
36
+ - **Language(s) (NLP):** English
37
+ - **License:** Apache 2.0 license