Skip to content

Commit 8b57962

Browse files
committed
docs: add eval clean
1 parent b611e49 commit 8b57962

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,10 @@ Then, run the evaluation:
249249
bigcodebench.evaluate --subset [complete|instruct] --samples samples-sanitized-calibrated.jsonl
250250
# ...If you really don't want to check the ground truths
251251
bigcodebench.evaluate --subset [complete|instruct] --samples samples-sanitized-calibrated.jsonl --no-gt
252+
253+
# You are strongly recommended to use the following command to clean up the environment after evaluation:
254+
pids=$(ps -u $(id -u) -o pid,comm | grep '^ *[0-9]\\+ bigcodebench' | awk '{print $1}'); if [ -n \"$pids\" ]; then echo $pids | xargs -r kill; fi;
255+
rm -rf /tmp/*
252256
```
253257
254258
> [!Tip]

0 commit comments

Comments
 (0)