shuyuej commited on
Commit
e2585c8
1 Parent(s): 28accb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -1,3 +1,28 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # The Quantized LLaMA 3.1 70B Instruct Model
6
+
7
+ Original Base Model: `meta-llama/Meta-Llama-3.1-70B`.<br>
8
+ Link: [https://huggingface.co/meta-llama/Meta-Llama-3.1-70B](https://huggingface.co/meta-llama/Meta-Llama-3.1-70B)
9
+
10
+ ## Quantization Configurations
11
+ ```
12
+ "quantization_config": {
13
+ "bits": 4,
14
+ "checkpoint_format": "gptq",
15
+ "damp_percent": 0.01,
16
+ "desc_act": true,
17
+ "group_size": 128,
18
+ "model_file_base_name": null,
19
+ "model_name_or_path": null,
20
+ "quant_method": "gptq",
21
+ "static_groups": false,
22
+ "sym": true,
23
+ "true_sequential": true
24
+ },
25
+ ```
26
+
27
+ ## Source Codes
28
+ Source Codes: [https://github.com/vkola-lab/medpodgpt/tree/main/quantization](https://github.com/vkola-lab/medpodgpt/tree/main/quantization).