Spaces:
No application file
No application file
File size: 1,983 Bytes
73f4c20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
#!/bin/bash
#SBATCH --partition tron
#SBATCH --gres=gpu:rtxa6000:1
#SBATCH --ntasks=4
#SBATCH --mem=32G
#SBATCH --account=nexus
#SBATCH --qos=default
#SBATCH --time=48:00:00
#SBATCH --array=0-1
#SBATCH --output=slurm_logs/%A_%a.out
#SBATCH --job-name=run-detect
source ~/.bashrc
conda activate watermarking-dev
OUTPUT_DIR=/cmlscratch/manlis/test/watermarking-root/input/new_runs
# model_name="facebook/opt-1.3b"
# data_path="/cmlscratch/manlis/test/watermarking-root/input/new_runs/test_len_200_opt1_3b_evaluation/gen_table_w_metrics.jsonl"
model_name='facebook/opt-6.7b'
data_path='/cmlscratch/manlis/test/watermarking-root/input/new_runs/test_len_1000_evaluation/gen_table_w_metrics.jsonl'
mask_model="t5-3b"
# token_len=200
chunk_size=32
pct=0.3
split="no_wm"
textlen=600
# python detectgpt_main.py \
# --n_perturbation_list="10,100" \
# --do_chunk \
# --base_model_name=${model_name} \
# --mask_filling_model_name=${mask_model} \
# --data_path=/cmlscratch/manlis/test/watermarking-root/input/new_runs/test_len_${textlen}_evaluation/gen_table_w_metrics.jsonl \
# --token_len=${textlen} \
# --pct_words_masked=${pct} \
# --chunk_size=${chunk_size} \
# --data_split=${split};
declare -a commands
for textlen in 600 1000;
do
commands+=( "python detectgpt_main.py \
--n_perturbation_list="10,100" \
--do_chunk \
--base_model_name=${model_name} \
--mask_filling_model_name=${mask_model} \
--data_path=/cmlscratch/manlis/test/watermarking-root/input/new_runs/test_len_${textlen}_evaluation/gen_table_w_metrics.jsonl \
--token_len=${textlen} \
--pct_words_masked=${pct} \
--chunk_size=${chunk_size} \
--data_split=${split};" )
done
bash -c "${commands[${SLURM_ARRAY_TASK_ID}]}"
# --data_path=/cmlscratch/manlis/test/watermarking-root/input/new_runs/test_len_${textlen}_evaluation/gen_table_w_metrics.jsonl \
|