Files
wehub-resource-sync 2aaeece67c
Codestyle Check / Lint (push) Has been cancelled
Codestyle Check / Check bypass (push) Has been cancelled
Pipelines-Test / Pipelines-Test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:37:14 +08:00

131 lines
5.3 KiB
Python

# Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Adapted from https://github.com/ymcui/Chinese-LLaMA-Alpaca and https://github.com/SJTU-LIT/ceval
import argparse
import json
import os
import time
import pandas as pd
from model_evaluator import ModelEvaluator
choices = ["A", "B", "C", "D"]
def main(args, evaluator, take):
assert os.path.exists("subject_mapping.json"), "subject_mapping.json not found!"
with open("subject_mapping.json") as f:
subject_mapping = json.load(f)
filenames = os.listdir("data/val")
subject_list = [val_file.replace("_val.csv", "") for val_file in filenames]
accuracy, summary = {}, {}
run_date = time.strftime("%Y-%m-%d_%H-%M-%S", time.localtime(time.time()))
output_dir = args.output_dir
save_result_dir = os.path.join(output_dir, f"take{take}")
if not os.path.exists(save_result_dir):
os.makedirs(save_result_dir, exist_ok=True)
all_answers = {}
for index, subject_name in enumerate(subject_list):
print(
f"{index/len(subject_list)} Inference starts at {run_date} on {args.model_name_or_path} with subject of {subject_name}!"
)
val_file_path = os.path.join("data/val", f"{subject_name}_val.csv")
dev_file_path = os.path.join("data/dev", f"{subject_name}_dev.csv")
test_file_path = os.path.join("data/test", f"{subject_name}_test.csv")
val_df = pd.read_csv(val_file_path) if args.do_test is False else pd.read_csv(test_file_path)
dev_df = pd.read_csv(dev_file_path) if args.few_shot else None
correct_ratio, answers = evaluator.eval_subject(
subject_name,
val_df,
dev_df,
save_result_dir=save_result_dir if args.do_save_csv else None,
few_shot=args.few_shot,
cot=args.cot,
with_prompt=args.with_prompt,
constrained_decoding=args.constrained_decoding,
do_test=args.do_test,
)
print(f"Subject: {subject_name}")
print(f"Acc: {correct_ratio}")
accuracy[subject_name] = correct_ratio
summary[subject_name] = {
"score": correct_ratio,
"num": len(val_df),
"correct": correct_ratio * len(val_df) / 100,
}
all_answers[subject_name] = answers
json.dump(all_answers, open(save_result_dir + "/submission.json", "w"), ensure_ascii=False, indent=4)
print("Accuracy:")
for k, v in accuracy.items():
print(k, ": ", v)
total_num = 0
total_correct = 0
summary["grouped"] = {
"STEM": {"correct": 0.0, "num": 0},
"Social Science": {"correct": 0.0, "num": 0},
"Humanities": {"correct": 0.0, "num": 0},
"Other": {"correct": 0.0, "num": 0},
}
for subj, info in subject_mapping.items():
group = info[2]
summary["grouped"][group]["num"] += summary[subj]["num"]
summary["grouped"][group]["correct"] += summary[subj]["correct"]
for group, info in summary["grouped"].items():
info["score"] = info["correct"] / info["num"]
total_num += info["num"]
total_correct += info["correct"]
summary["All"] = {"score": total_correct / total_num, "num": total_num, "correct": total_correct}
json.dump(summary, open(save_result_dir + "/summary.json", "w"), ensure_ascii=False, indent=2)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--model_name_or_path", type=str)
parser.add_argument("--cot", choices=["False", "True"], default="False")
parser.add_argument("--few_shot", choices=["False", "True"], default="True")
parser.add_argument("--ntrain", "-k", type=int, default=5)
parser.add_argument("--with_prompt", choices=["False", "True"], default="False")
parser.add_argument("--constrained_decoding", choices=["False", "True"], default="True")
parser.add_argument("--temperature", type=float, default=0.2)
parser.add_argument("--n_times", default=1, type=int)
parser.add_argument("--do_save_csv", choices=["False", "True"], default="False")
parser.add_argument("--output_dir", type=str)
parser.add_argument("--do_test", choices=["False", "True"], default="False")
args = parser.parse_args()
args.cot = args.cot == "True"
args.few_shot = args.few_shot == "True"
args.with_prompt = args.with_prompt == "True"
args.constrained_decoding = args.constrained_decoding == "True"
args.do_test = args.do_test == "True"
args.do_save_csv = args.do_save_csv == "True"
if args.constrained_decoding is True:
args.n_times = max(args.n_times, 1)
print(args)
evaluator = ModelEvaluator(
choices=choices, k=args.ntrain, model_name_or_path=args.model_name_or_path, temperature=args.temperature
)
for i in range(args.n_times):
main(args, evaluator=evaluator, take=i)