cd DomainEval/setup
env_name="your env name"
conda create -n "$env_name" python=3.9 -y
conda activate "$env_name"
conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia -y
pip install -r requirements_py39.txt
Move the code repository to the path directory of the corresponding domain {src_data}/{domain}
.
domain="your domain"
version="your version"
srcdata_dir="{src_data}"
cd DomainEval
mkdir "log_${version}"
nohup python -u sandbox.py \
--domain "$domain" \
--srcdata_dir "$srcdata_dir" \
--output_dir "bench_${version}" \
> "log_${version}/result_sandbox_${domain}.txt" &
python -u codefilter.py \
--bench_dir "bench_${version}" \
> "log_${version}/result_codefilter.txt"
version="your version"
nohup python -u datagenerate.py \
--eval_dir "domaineval_${version}" \
> log_${version}/result_datagenerate.txt &
The final data is in domaineval_{your version}
.
The data is in the format of json, each line is a json object, the format is:
{
"method_name":,
"full_method_name":,
"method_path":,
"method_code":,
"test_code_list":[
{"test_code":, "code_start":, "test_path":},
{"test_code":, "code_start":, "test_path":}
],
"instruction":,
"method_code_mask":,
}
First, you need include the path and name of your model in self.model_path_dict
within modeleval.py
and add your model api in get_message
within utils/utils_chat.py
and self.model_name_list_api
within modeleval.py
.
model_name="your model name or std"
# set the k in pass@k, it can only be 1 or 5 currently
k_pass=1 # or k_pass=5
# set the version of the dataset
version="your version"
eval_dir="domaineval_${version}"
# model inference
nohup python -u modeleval.py \
-m "$model_name" \
-b "$eval_dir" \
-k "$k_pass" \
> "result_modeleval_${model_name}_pass\@${k_pass}.txt" &
# result execution and analysis
nohup python -u resultexec.py \
-m "$model_name" \
-v "$eval_dir" \
-k "$k_pass" \
> result_exec.txt &
resultexec_pid=$!
echo $resultexec_pid
wait $resultexec_pid
mkdir -p "analyseresult/pass@${k_pass}"
python resultanalyse.py \
-m "$model_name" \
-v "$eval_dir" \
-k "$k_pass" \
> "analyseresult/pass@${k_pass}/result_analyse_${model_name}.txt"
Tips:
If you want to directly use dataset domaineval_20240711
to evaluate LLMs, you can first set model_name="std"
, k_pass=1
, version="20240711"
, and then run the commands in Evaluation
section. If the environment is installed correctly, the accuracy of std
should be close to or equal to 100%, and the only reason for test failure should be timed out
.
Now you have the results of your model on the dataset.
DomainEval/modelresult/${eval_dir}/${model_name}/pass_${k_pass}
: Completed code generated by your LLM.DomainEval/executeresult/${eval_dir}/${model_name}/pass_${k_pass}
: Execution results of the generated code.DomainEval/analyseresult/pass@${k_pass}/result_analyse_${model_name}.txt
: Analysis results of the generated code.
The next step is to submit a pull request for the project:
- Fork the repository into your own GitHub account.
- Clone the repository to your local.
- Checkout a new branch from main.
- Make the results directories above (i.e.
./modelresult/${eval_dir}/${model_name}
,./executeresult/${eval_dir}/${model_name}
,./analyseresult/pass@${k_pass}/result_analyse_${model_name}.txt
). - Submit the Pull Request.
- The maintainers will review your Pull Request soon.
Once your pull request is accepted, we will update the Leaderboard with your results.