Update README.md
Browse files
README.md
CHANGED
@@ -171,7 +171,7 @@ It took ~2 hours to train 2 epochs on 1x A100 (40 GB SXM).
|
|
171 |
|
172 |
### Prompt Format
|
173 |
|
174 |
-
This model was finetuned with the following format
|
175 |
|
176 |
```python
|
177 |
tokenizer.chat_template = "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST] ' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token + ' ' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}"
|
|
|
171 |
|
172 |
### Prompt Format
|
173 |
|
174 |
+
This model was finetuned with the following format:
|
175 |
|
176 |
```python
|
177 |
tokenizer.chat_template = "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST] ' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token + ' ' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}"
|