We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b611e49 commit 8b57962Copy full SHA for 8b57962
README.md
@@ -249,6 +249,10 @@ Then, run the evaluation:
249
bigcodebench.evaluate --subset [complete|instruct] --samples samples-sanitized-calibrated.jsonl
250
# ...If you really don't want to check the ground truths
251
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/*
256
```
257
258
> [!Tip]
0 commit comments