File size: 750 Bytes
aaebaab | 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 | #!/bin/sh
cd /mnt/petrelfs/leihaodong/sjdtree
isp='random'
method='lantern'
num_init_new_token=16
benchmark_way='order'
prompt="T2ICompBenchVal"
num_images=2400
slice='485-2400'
output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/lantern
tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
mkdir -p ${output_path}
srun \
-N 1 \
--ntasks-per-node 1 \
python main_emu3.py \
--tokenizer_path=$tokenizer_path \
--output_path=$output_path \
--isp=$isp \
--method=$method \
--num_init_new_token=$num_init_new_token \
--benchmark_way=$benchmark_way \
--prompt=$prompt \
--num_images=$num_images \
--slice=$slice \
--static_tree \
--target_size=720 \
--tree_choices=Line_16 > ${output_path}.log 2>&1 |