From a7d80a45e75876f748c15d8ac4fd5032add4e443 Mon Sep 17 00:00:00 2001 From: Prannaya Date: Sat, 3 Aug 2024 12:33:35 +0800 Subject: [PATCH] feat(experiment): add xstest + logs in script --- experiments/scripts/run_mutations.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/experiments/scripts/run_mutations.sh b/experiments/scripts/run_mutations.sh index f0e1ac5..e6a5eee 100644 --- a/experiments/scripts/run_mutations.sh +++ b/experiments/scripts/run_mutations.sh @@ -1,2 +1,13 @@ +echo "$(pwd)" + +echo "Starting Generation on HarmBench with Mistral" python experiments/mutation_generation.py -d harmbench -m mistral-7b -v > runs/mutations-harmbench-mistral.log 2> runs/mutations-harmbench-mistral.log -python experiments/mutation_generation.py -d harmbench -m llama2-7b-uncensored -v > runs/mutations-harmbench-llama2.log 2> runs/mutations-harmbench-llama2.log \ No newline at end of file +echo "Starting Generation on HarmBench with Llama 2" +python experiments/mutation_generation.py -d harmbench -m llama2-7b-uncensored -v > runs/mutations-harmbench-llama2.log 2> runs/mutations-harmbench-llama2.log + +echo "Starting Generation on XSTest with Mistral" +python experiments/mutation_generation.py -d xstest -m mistral-7b -v > runs/mutations-xstest-mistral.log 2> runs/mutations-xstest-mistral.log +echo "Starting Generation on XSTest with Llama 2" +python experiments/mutation_generation.py -d xstest -m llama2-7b-uncensored -v > runs/mutations-xstest-llama2.log 2> runs/mutations-xstest-llama2.log + +echo "Finished Generation" \ No newline at end of file