Views
No views yet

| Model | Average | ARC | HellaSwag | MMLU | TruthfulQA | Winogrande | GSM8K |
|---|---|---|---|---|---|---|---|
| rishiraj/CatPPT | 72.32 | 68.09 | 86.69 | 65.16 | 61.55 | 81.61 | 70.81 |
| Intel/neural-chat-7b-v3-3 | 69.83 | 66.89 | 85.26 | 63.07 | 63.01 | 79.64 | 61.11 |
| openchat/openchat-3.5-1210 | 68.89 | 64.93 | 84.92 | 64.62 | 52.15 | 80.74 | 65.96 |
| meta-math/MetaMath-Mistral-7B | 65.78 | 60.67 | 82.58 | 61.95 | 44.89 | 75.77 | 68.84 |
| Deci/DeciLM-7B-instruct | 63.19 | 61.01 | 82.37 | 60.24 | 49.75 | 79.72 | 46.02 |
| mistralai/Mistral-7B-Instruct-v0.2 | 65.71 | 63.14 | 84.88 | 60.78 | 68.26 | 77.19 | 40.03 |
| mistralai/Mixtral-8x7B-Instruct-v0.1 | 72.62 | 70.22 | 87.63 | 71.16 | 64.58 | 81.37 | 60.73 |
| meta-llama/Llama-2-70b-hf | 67.87 | 67.32 | 87.33 | 69.83 | 44.92 | 83.74 | 54.06 |
| tiiuae/falcon-180B | 67.85 | 69.45 | 88.86 | 70.5 | 45.47 | 86.9 | 45.94 |
import torch
from transformers import pipeline
pipe = pipeline("text-generation", model="rishiraj/CatPPT", torch_dtype=torch.bfloat16, device_map="auto")
# We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
messages = [
{
"role": "system",
"content": "You are a friendly chatbot who always responds in the style of a pirate"
},
{
"role": "user",
"content": "How many helicopters can a human eat in one sitting?"
}
]
prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.9947 | 0.16 | 3 | 2.0093 |
@misc{rishiraj2023catppt,
author = {Rishiraj Acharya},
title = {CatPPT},
year = {2023},
publisher = {Hugging Face},
journal = {Hugging Face repository},
howpublished = {\url{https://huggingface.co/rishiraj/CatPPT}}
}