Text Generation
GGUF
English
quantized
1b
llama-cpp
imatrix
conversational
MrDevCoder01 commited on
Commit
7f8b339
·
verified ·
1 Parent(s): 181e148

MetaData Update

Browse files

Updated metadata:
* **general.type**: SLM
* **general.name**: PTM1 1B Q8
* **general.finetune**:

* **general.basename**: PTM1
* **general.license**: apache 2.0
* **general.tags**: [pytorch, llama-cpp, text-generation]
* **tokenizer.chat_template**:
```django
{{- bos_token }}
{%- if messages[0]['role'] == 'system' %}
{%- set system_message = messages[0]['content'] | trim %}
{%- set messages = messages[1:] %}
{%- else %}
{%- set system_message = "You are a helpful AI assistant." %}
{%- endif %}
{{- '<|start_header_id|>system<|end_header_id|>\n\n' }}
{{- system_message }}
{{- '<|eot_id|>' }}
{%- for message in messages %}
{%- if message['role'] == 'user' %}
{{- '<|start_header_id|>user<|end_header_id|>\n\n' }}
{{- message['content'] | trim }}
{{- '<|eot_id|>' }}
{%- elif message['role'] == 'assistant' %}
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
{{- message['content'] | trim }}
{{- '<|eot_id|>' }}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
{%- endif %}
```
* **general.quantization_version**: 1
* **quantize.imatrix.file**:

* **quantize.imatrix.dataset**:

* **quantize.imatrix.entries_count**: 0
* **quantize.imatrix.chunks_count**: 0

PT1S-1B-Q8.gguf → PTM1-1B-Q8.gguf RENAMED
File without changes