Commit
•
6dbadc1
1
Parent(s):
c87c4f9
Add transformers + AWQ inference support (#1)
Browse files- Update config.json (3f181d8a46880e5da4efcaeb1a73e513a577f329)
Co-authored-by: Younes Belkada <[email protected]>
- config.json +8 -1
config.json
CHANGED
@@ -24,5 +24,12 @@
|
|
24 |
"torch_dtype": "float16",
|
25 |
"transformers_version": "4.35.0",
|
26 |
"use_cache": true,
|
27 |
-
"vocab_size": 32000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
|
|
24 |
"torch_dtype": "float16",
|
25 |
"transformers_version": "4.35.0",
|
26 |
"use_cache": true,
|
27 |
+
"vocab_size": 32000,
|
28 |
+
"quantization_config": {
|
29 |
+
"quant_method": "awq",
|
30 |
+
"zero_point": true,
|
31 |
+
"group_size": 128,
|
32 |
+
"bits": 4,
|
33 |
+
"version": "gemm"
|
34 |
+
}
|
35 |
}
|