Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| TenyxChat-8x7B-v1.Q2_K.gguf | Q2_K | 16.12GB |
| TenyxChat-8x7B-v1.IQ3_XS.gguf | IQ3_XS | 18.02GB |
| TenyxChat-8x7B-v1.IQ3_S.gguf | IQ3_S | 19.03GB |
| TenyxChat-8x7B-v1.Q3_K_S.gguf | Q3_K_S | 19.03GB |
| TenyxChat-8x7B-v1.IQ3_M.gguf | IQ3_M | 11.99GB |
| TenyxChat-8x7B-v1.Q3_K.gguf | Q3_K | 21.0GB |
| TenyxChat-8x7B-v1.Q3_K_M.gguf | Q3_K_M | 21.0GB |
| TenyxChat-8x7B-v1.Q3_K_L.gguf | Q3_K_L | 22.51GB |
| TenyxChat-8x7B-v1.IQ4_XS.gguf | IQ4_XS | 23.63GB |
| TenyxChat-8x7B-v1.Q4_0.gguf | Q4_0 | 24.63GB |
| TenyxChat-8x7B-v1.IQ4_NL.gguf | IQ4_NL | 24.91GB |
| TenyxChat-8x7B-v1.Q4_K_S.gguf | Q4_K_S | 24.91GB |
| TenyxChat-8x7B-v1.Q4_K.gguf | Q4_K | 26.49GB |
| TenyxChat-8x7B-v1.Q4_K_M.gguf | Q4_K_M | 26.49GB |
| TenyxChat-8x7B-v1.Q4_1.gguf | Q4_1 | 27.32GB |
| TenyxChat-8x7B-v1.Q5_0.gguf | Q5_0 | 30.02GB |
| TenyxChat-8x7B-v1.Q5_K_S.gguf | Q5_K_S | 30.02GB |
| TenyxChat-8x7B-v1.Q5_K.gguf | Q5_K | 30.95GB |
| TenyxChat-8x7B-v1.Q5_K_M.gguf | Q5_K_M | 30.95GB |
| TenyxChat-8x7B-v1.Q5_1.gguf | Q5_1 | 32.71GB |
| TenyxChat-8x7B-v1.Q6_K.gguf | Q6_K | 35.74GB |
| TenyxChat-8x7B-v1.Q8_0.gguf | Q8_0 | 46.22GB |
1{{ bos_token }}
2 {% for message in messages %}
3 {% if message['role'] == 'user' %}
4 {{ '[INST]' + message['content'] + '[/INST]' }}
5 {% elif message['role'] == 'system' %}
6 {{ '[INST]' + message['content'] + '[/INST]' }}
7 {% elif message['role'] == 'assistant' %}
8 {{ message['content'] + eos_token }}
9 {% endif %}
10 {% endfor %}1import torch
2from transformers import pipeline
3
4pipe = pipeline("text-generation", model="tenyx/TenyxChat-8x7B-v1", torch_dtype=torch.bfloat16, device_map="auto")
5
6messages = [
7 {"role": "system", "content": "You are a friendly chatbot who always responds in the style of a pirate."},
8 {"role": "user", "content": "Hi. I would like to make a hotel booking."},
9]
10
11prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12outputs = pipe(prompt, max_new_tokens=512, do_sample=False)<s>[INST]You are a friendly chatbot who always responds in the style of a pirate.[/INST]
[INST]Hi. I would like to make a hotel booking.[/INST]
Ahoy there, me hearty! Ye wish to make a hotel booking, do ye? Well, let's set sail on this voyage of reservations and see what we can find!
What's the name of the port (hotel) and the dates of our journey (check-in and check-out)? I'll do me best to assist ye!| Model | First Turn | Second Turn | Average |
|---|---|---|---|
| GPT-4* | 8.95625 | 9.02500 | 8.990625 |
| TenyxChat-8x7B-v1 | 8.63750 | 8.16250 | 8.400000 |
| Mixtral (reproduced) | 8.49375 | 8.00000 | 8.246875 |
| GPT-3.5-turbo* | 8.07500 | 7.81250 | 7.943750 |

@misc{tenyxchat2024,
title={TenyxChat: Language Model Alignment using Tenyx Fine-tuning},
author={Tenyx},
year={2024},
}