Initial GPTQ model commit
Browse files
README.md
CHANGED
|
@@ -47,10 +47,10 @@ Multiple GPTQ parameter permutations are provided; see Provided Files below for
|
|
| 47 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/CodeLlama-13B-GGML)
|
| 48 |
* [Meta's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/codellama/CodeLlama-13b-hf)
|
| 49 |
|
| 50 |
-
## Prompt template:
|
| 51 |
|
| 52 |
```
|
| 53 |
-
|
| 54 |
```
|
| 55 |
|
| 56 |
## Provided files and GPTQ parameters
|
|
@@ -159,7 +159,7 @@ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
|
|
| 159 |
"""
|
| 160 |
|
| 161 |
prompt = "Tell me about AI"
|
| 162 |
-
prompt_template=f'''
|
| 163 |
'''
|
| 164 |
|
| 165 |
print("\n\n*** Generate:")
|
|
|
|
| 47 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/CodeLlama-13B-GGML)
|
| 48 |
* [Meta's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/codellama/CodeLlama-13b-hf)
|
| 49 |
|
| 50 |
+
## Prompt template: None
|
| 51 |
|
| 52 |
```
|
| 53 |
+
{prompt}
|
| 54 |
```
|
| 55 |
|
| 56 |
## Provided files and GPTQ parameters
|
|
|
|
| 159 |
"""
|
| 160 |
|
| 161 |
prompt = "Tell me about AI"
|
| 162 |
+
prompt_template=f'''{prompt}
|
| 163 |
'''
|
| 164 |
|
| 165 |
print("\n\n*** Generate:")
|