bench_other.py 3.24 KB
Newer Older
Lianmin Zheng's avatar
Lianmin Zheng committed
1
2
3
4
5
import argparse
import json
import os
import time
import uuid
Liangsheng Yin's avatar
Liangsheng Yin committed
6
from concurrent.futures import ThreadPoolExecutor
Lianmin Zheng's avatar
Lianmin Zheng committed
7
8

from fastchat.model import get_conversation_template
Liangsheng Yin's avatar
Liangsheng Yin committed
9
from tqdm import tqdm
Liangsheng Yin's avatar
Liangsheng Yin committed
10

Liangsheng Yin's avatar
Liangsheng Yin committed
11
from sglang.test.test_utils import add_common_other_args_and_parse, get_call_generate
Lianmin Zheng's avatar
Lianmin Zheng committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40


def load_questions(filename):
    questions = []
    with open(filename, "r") as fin:
        for line in fin:
            obj = json.loads(line)
            questions.append(obj)
    return questions


def write_answers(filename, model_id, questions, answers):
    with open(os.path.expanduser(filename), "w") as fout:
        for i in range(len(answers)):
            ans_json = {
                "question_id": questions[i]["question_id"],
                "answer_id": uuid.uuid4().hex,
                "model_id": model_id,
                "choices": {
                    "index": 0,
                    "turns": [answers[i][0], answers[i][1]],
                },
                "tstamp": time.time(),
            }
            fout.write(json.dumps(ans_json) + "\n")


def main(args):
    questions = load_questions(args.question_file)
Liangsheng Yin's avatar
Liangsheng Yin committed
41
    questions = (questions * 10)[: args.num_questions]
Lianmin Zheng's avatar
Lianmin Zheng committed
42
43
44
45
46
47
    max_tokens = 256
    model_id = "llama-2-chat"

    conv_main = get_conversation_template(model_id)

    # Select backend
Liangsheng Yin's avatar
Liangsheng Yin committed
48
    call_generate = get_call_generate(args)
Lianmin Zheng's avatar
Lianmin Zheng committed
49
50
51
52
53
54
55
56
57
58
59

    answers = [None] * len(questions)

    def get_answer(i):
        conv = conv_main.copy()
        cur_answers = []
        for j in range(2):
            q = questions[i]["turns"][j]
            conv.append_message(conv.roles[0], q)
            conv.append_message(conv.roles[1], None)

Liangsheng Yin's avatar
Liangsheng Yin committed
60
61
            prompt = conv.get_prompt()
            output = call_generate(prompt, temperature=0, max_tokens=max_tokens).strip()
Lianmin Zheng's avatar
Lianmin Zheng committed
62
63
64
65
66
67
68
69
70

            cur_answers.append(output)
            conv.update_last_message(output)

        answers[i] = cur_answers

    # Run requests
    tic = time.time()
    if args.parallel == 1:
Liangsheng Yin's avatar
Liangsheng Yin committed
71
        for i in tqdm(range(len(questions))):
Lianmin Zheng's avatar
Lianmin Zheng committed
72
73
74
            get_answer(i)
    else:
        with ThreadPoolExecutor(args.parallel) as executor:
Liangsheng Yin's avatar
Liangsheng Yin committed
75
76
77
78
79
80
81
            list(
                tqdm(
                    executor.map(get_answer, list(range(len(questions)))),
                    total=len(questions),
                )
            )

Lianmin Zheng's avatar
Lianmin Zheng committed
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
    latency = time.time() - tic

    print(f"#questions: {len(questions)}, Latency: {latency:.2f}")

    # Write results
    answer_file = args.answer_file or f"tmp_output_{args.backend}.txt"
    write_answers(answer_file, model_id, questions, answers)

    with open(args.result_file, "a") as fout:
        value = {
            "task": "mtbench",
            "backend": args.backend,
            "num_gpus": 1,
            "latency": round(latency, 3),
            "num_requests": args.num_questions,
            "other": {
                "num_questions": args.num_questions,
                "parallel": args.parallel,
Liangsheng Yin's avatar
Liangsheng Yin committed
100
            },
Lianmin Zheng's avatar
Lianmin Zheng committed
101
102
103
104
105
106
107
108
109
110
111
        }
        fout.write(json.dumps(value) + "\n")


if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument("--question-file", type=str, default="question.jsonl")
    parser.add_argument("--answer-file", type=str, default=None)
    parser.add_argument("--num-questions", type=int, default=80)
    args = add_common_other_args_and_parse(parser)
    main(args)