Views
No views yet
### System:
{System}
### User:
{User}
### Assistant:
{Assistant}rope_scaling option1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
3
4tokenizer = AutoTokenizer.from_pretrained("upstage/llama-30b-instruct-2048")
5model = AutoModelForCausalLM.from_pretrained(
6 "upstage/llama-30b-instruct-2048",
7 device_map="auto",
8 torch_dtype=torch.float16,
9 load_in_8bit=True,
10 rope_scaling={"type": "dynamic", "factor": 2} # allows handling of longer inputs
11)
12
13prompt = "### User:\nThomas is healthy, but he has to go to the hospital. What could be the reasons?\n\n### Assistant:\n"
14inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
15del inputs["token_type_ids"]
16streamer = TextStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True)
17
18output = model.generate(**inputs, streamer=streamer, use_cache=True, max_new_tokens=float('inf'))
19output_text = tokenizer.decode(output[0], skip_special_tokens=True)ARC-Challenge, HellaSwag, MMLU, and TruthfulQA
We used the lm-evaluation-harness repository, specifically commit b281b0921b636bc36ad05c0b0b0763bd6dd43463| Model | H4(Avg) | ARC | HellaSwag | MMLU | TruthfulQA | MT_Bench | |
|---|---|---|---|---|---|---|---|
| Llama-2-70b-instruct-v2(Ours, Open LLM Leaderboard) | 73 | 71.1 | 87.9 | 70.6 | 62.2 | 7.44063 | |
| Llama-2-70b-instruct (Ours, Open LLM Leaderboard) | 72.3 | 70.9 | 87.5 | 69.8 | 61 | 7.24375 | |
| llama-65b-instruct (Ours, Open LLM Leaderboard) | 69.4 | 67.6 | 86.5 | 64.9 | 58.8 | ||
| Llama-2-70b-hf | 67.3 | 67.3 | 87.3 | 69.8 | 44.9 | ||
| llama-30b-instruct-2048 (Ours, Open LLM Leaderboard) | 67.0 | 64.9 | 84.9 | 61.9 | 56.3 | ||
| llama-30b-instruct (Ours, Open LLM Leaderboard) | 65.2 | 62.5 | 86.2 | 59.4 | 52.8 | ||
| llama-65b | 64.2 | 63.5 | 86.1 | 63.9 | 43.4 | ||
| falcon-40b-instruct | 63.4 | 61.6 | 84.3 | 55.4 | 52.5 |
# clone the repository
git clone https://github.com/EleutherAI/lm-evaluation-harness.git
# check out the specific commit
git checkout b281b0921b636bc36ad05c0b0b0763bd6dd43463
# change to the repository directory
cd lm-evaluation-harness