File size: 689 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
#!/bin/sh
cd /mnt/petrelfs/leihaodong/sjdtree
tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
isp='random'
method='speculative_jacobi'
num_init_new_token=1
benchmark_way='order'
prompt="T2ICompBenchVal"
num_images=2400
slice='0-2400'
output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/base
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 > ${output_path}.log 2>&1