Views
No views yet
| Model | Average | ARC (25-shot) | HellaSwag (10-shot) | MMLU (5-shot) | TruthfulQA (0-shot) |
|---|---|---|---|---|---|
| SebastianSchramm/Cerebras-GPT-111M-instruction | 31.6 | 24.3 | 26.2 | 26.5 | 49.5 |
| cerebras/Cerebras-GPT-111M | 29.9 | 20 | 26.7 | 26.7 | 46.3 |
1PROMPT_DICT = {
2 "prompt_input": (
3 "Below is an instruction that describes a task, paired with an input that provides further context. "
4 "Write a response that appropriately completes the request.\n\n"
5 "### Instruction:\n{instruction}\n\n### Input:\n{input}\n\n### Response:"
6 ),
7 "prompt_no_input": (
8 "Below is an instruction that describes a task. "
9 "Write a response that appropriately completes the request.\n\n"
10 "### Instruction:\n{instruction}\n\n### Response:"
11 ),
12}