Rayleihaodong commited on
Commit
aaebaab
·
verified ·
1 Parent(s): 201d1a0

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. scripts/ablation/delta/mscr-sjd/mscr_sjd_0.008.sh +33 -0
  2. scripts/ablation/delta/mscr-sjd/mscr_sjd_0.01.sh +33 -0
  3. scripts/ablation/delta/mscr-sjd/mscr_sjd_0.1.sh +33 -0
  4. scripts/ablation/delta/mscr-sjd/mscr_sjd_1.sh +33 -0
  5. scripts/ablation/group_num/sjdtree_4.sh +30 -0
  6. scripts/ablation/group_num/sjdtree_6.sh +30 -0
  7. scripts/ablation/group_num/sjdtree_8.sh +30 -0
  8. scripts/ablation/group_num_short/sjdtree_10.sh +30 -0
  9. scripts/ablation/group_num_short/sjdtree_11.sh +30 -0
  10. scripts/ablation/group_num_short/sjdtree_11_10.sh +30 -0
  11. scripts/ablation/group_num_short/sjdtree_11_6.sh +30 -0
  12. scripts/ablation/group_num_short/sjdtree_11_8.sh +30 -0
  13. scripts/ablation/group_num_short/sjdtree_12.sh +29 -0
  14. scripts/ablation/group_num_short/sjdtree_2.sh +30 -0
  15. scripts/ablation/group_num_short/sjdtree_3.sh +30 -0
  16. scripts/ablation/group_num_short/sjdtree_4.sh +30 -0
  17. scripts/ablation/group_num_short/sjdtree_5.sh +30 -0
  18. scripts/ablation/group_num_short/sjdtree_5_10.sh +30 -0
  19. scripts/ablation/group_num_short/sjdtree_6.sh +30 -0
  20. scripts/ablation/group_num_short/sjdtree_6_10.sh +30 -0
  21. scripts/ablation/group_num_short/sjdtree_6_14.sh +30 -0
  22. scripts/ablation/group_num_short/sjdtree_7.sh +30 -0
  23. scripts/ablation/group_num_short/sjdtree_8.sh +30 -0
  24. scripts/ablation/group_num_short/sjdtree_9.sh +30 -0
  25. scripts/ablation/group_num_short/slurm-6200549.out +0 -0
  26. scripts/ablation/group_num_short/slurm-6200585.out +0 -0
  27. scripts/ablation/group_num_short/slurm-6200599.out +0 -0
  28. scripts/ablation/group_num_short/slurm-6201430.out +0 -0
  29. scripts/ablation/sematic/ms_sjd_random/ms_sjd_random.sh +31 -0
  30. scripts/ablation/sematic/ms_sjd_re_1/ms_sjd_re.sh +31 -0
  31. scripts/ablation/test_fast.sh +9 -0
  32. scripts/emu3/MSCOCO/base.sh +26 -0
  33. scripts/emu3/MSCOCO/gsd.sh +29 -0
  34. scripts/emu3/MSCOCO/jd.sh +29 -0
  35. scripts/emu3/MSCOCO/lantern.sh +29 -0
  36. scripts/emu3/MSCOCO/ms_sjd.sh +29 -0
  37. scripts/emu3/MSCOCO/mscr_gsd.sh +31 -0
  38. scripts/emu3/MSCOCO/mscr_gsd1.sh +31 -0
  39. scripts/emu3/MSCOCO/mscr_sjd.sh +31 -0
  40. scripts/emu3/MSCOCO/sjd.sh +29 -0
  41. scripts/emu3/PP/base.sh +37 -0
  42. scripts/emu3/PP/gsd.sh +29 -0
  43. scripts/emu3/PP/jd.sh +29 -0
  44. scripts/emu3/PP/lantern.sh +29 -0
  45. scripts/emu3/PP/ms_sjd.sh +29 -0
  46. scripts/emu3/PP/mscr_gsd.sh +31 -0
  47. scripts/emu3/PP/mscr_sjd.sh +47 -0
  48. scripts/emu3/PP/sjd.sh +29 -0
  49. scripts/emu3/T2ICompBench/base.sh +26 -0
  50. scripts/emu3/T2ICompBench/gsd.sh +29 -0
scripts/ablation/delta/mscr-sjd/mscr_sjd_0.008.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=0.008
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/delta/mscr-sjd/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
14
+ mkdir -p ${output_path}
15
+
16
+ srun \
17
+ -N 1 \
18
+ --ntasks-per-node 1 \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --model_path=$model_path \
23
+ --isp=$isp \
24
+ --method=$method \
25
+ --num_init_new_token=$num_init_new_token \
26
+ --benchmark_way=$benchmark_way \
27
+ --prompt=$prompt \
28
+ --num_images=$num_images \
29
+ --slice=$slice \
30
+ --static_tree \
31
+ --groupsum_delta=$groupsum_delta \
32
+ --target_size=768 \
33
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/ablation/delta/mscr-sjd/mscr_sjd_0.01.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=0.01
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/delta/mscr-sjd/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
14
+ mkdir -p ${output_path}
15
+
16
+ srun \
17
+ -N 1 \
18
+ --ntasks-per-node 1 \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --model_path=$model_path \
23
+ --isp=$isp \
24
+ --method=$method \
25
+ --num_init_new_token=$num_init_new_token \
26
+ --benchmark_way=$benchmark_way \
27
+ --prompt=$prompt \
28
+ --num_images=$num_images \
29
+ --slice=$slice \
30
+ --static_tree \
31
+ --groupsum_delta=$groupsum_delta \
32
+ --target_size=768 \
33
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/ablation/delta/mscr-sjd/mscr_sjd_0.1.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=0.1
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/delta/mscr-sjd/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
14
+ mkdir -p ${output_path}
15
+
16
+ srun \
17
+ -N 1 \
18
+ --ntasks-per-node 1 \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --model_path=$model_path \
23
+ --isp=$isp \
24
+ --method=$method \
25
+ --num_init_new_token=$num_init_new_token \
26
+ --benchmark_way=$benchmark_way \
27
+ --prompt=$prompt \
28
+ --num_images=$num_images \
29
+ --slice=$slice \
30
+ --static_tree \
31
+ --groupsum_delta=$groupsum_delta \
32
+ --target_size=768 \
33
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/ablation/delta/mscr-sjd/mscr_sjd_1.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=1
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/delta/mscr-sjd/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
14
+ mkdir -p ${output_path}
15
+
16
+ srun \
17
+ -N 1 \
18
+ --ntasks-per-node 1 \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --model_path=$model_path \
23
+ --isp=$isp \
24
+ --method=$method \
25
+ --num_init_new_token=$num_init_new_token \
26
+ --benchmark_way=$benchmark_way \
27
+ --prompt=$prompt \
28
+ --num_images=$num_images \
29
+ --slice=$slice \
30
+ --static_tree \
31
+ --groupsum_delta=$groupsum_delta \
32
+ --target_size=768 \
33
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/ablation/group_num/sjdtree_4.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1600'
9
+ tree_type=Grouped_Tree_4
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num/sjdtree_6.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1600'
9
+ tree_type=Grouped_Tree_6
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num/sjdtree_8.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1600'
9
+ tree_type=Grouped_Tree_8
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_10.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_10
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_11.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_11
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_11_10.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_11_10
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_11_6.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_11_6
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_11_8.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_11_8
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_12.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1'
10
+ tree_type=Grouped_Tree_12
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_2.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_2
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_3.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_3
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_4.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_4
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_5.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_5
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_5_10.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_5_10
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_6.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_6
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_6_10.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_6_10
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_6_14.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_6_14
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_7.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_7
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_8.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_8
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/sjdtree_9.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
2
+ isp='random'
3
+ method='speculative_jacobi'
4
+ num_init_new_token=16
5
+ benchmark_way='order'
6
+ prompt="PartiPrompts"
7
+ num_images=1600
8
+ slice='0-1'
9
+ tree_type=Grouped_Tree_9
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/group_num/sjd_test_${tree_type}
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ --gres=gpu:1 \
18
+ -p DataFrontier_Knowledge \
19
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
20
+ --tokenizer_path=$tokenizer_path \
21
+ --output_path=$output_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --tree_choices=$tree_type > ${output_path}.log 2>&1
scripts/ablation/group_num_short/slurm-6200549.out ADDED
File without changes
scripts/ablation/group_num_short/slurm-6200585.out ADDED
File without changes
scripts/ablation/group_num_short/slurm-6200599.out ADDED
File without changes
scripts/ablation/group_num_short/slurm-6201430.out ADDED
File without changes
scripts/ablation/sematic/ms_sjd_random/ms_sjd_random.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_random'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-100'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/sematic/ms_sjd_random
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --model_path=$model_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --target_size=768 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/ablation/sematic/ms_sjd_re_1/ms_sjd_re.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/ICLR25/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_replace'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='1301-1600'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/ablation/sematic/ms_sjd_re
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ model_path=Alpha-VLLM/Lumina-mGPT-7B-768
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python /mnt/petrelfs/leihaodong/ICLR25/sjdtree/main.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --model_path=$model_path \
22
+ --isp=$isp \
23
+ --method=$method \
24
+ --num_init_new_token=$num_init_new_token \
25
+ --benchmark_way=$benchmark_way \
26
+ --prompt=$prompt \
27
+ --num_images=$num_images \
28
+ --slice=$slice \
29
+ --static_tree \
30
+ --target_size=768 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}_${slice}.log 2>&1
scripts/ablation/test_fast.sh ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ cd /mnt/petrelfs/leihaodong/ICLR25/scripts/ablation/group_num_short
2
+ # echo 11
3
+ # bash sjdtree_11.sh
4
+ echo 6
5
+ # sbatch --quotatype=auto sjdtree_12.sh
6
+ sbatch \
7
+ -p DataFrontier_Knowledge \
8
+ --gres=gpu:1 \
9
+ sjdtree_12.sh
scripts/emu3/MSCOCO/base.sh ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
4
+ isp='random'
5
+ method='speculative_jacobi'
6
+ num_init_new_token=1
7
+ benchmark_way='order'
8
+ prompt="MSCOCO2017Val"
9
+ num_images=4000
10
+ slice='0-4000'
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/base
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/gsd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='485-4000'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/gsd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/jd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='0-1'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/lantern.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='lantern'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='485-4000'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/lantern
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/ms_sjd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='0-4000'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/ms_sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/mscr_gsd.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='485-4000'
10
+ groupsum_delta=0.008
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/mscr_gsd
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python main_emu3.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --groupsum_delta=$groupsum_delta \
30
+ --target_size=720 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/mscr_gsd1.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='0-4000'
10
+ groupsum_delta=0.005
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/mscr_gsd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python main_emu3.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --groupsum_delta=$groupsum_delta \
30
+ --target_size=720 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/mscr_sjd.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='0-4000'
10
+ groupsum_delta=0.05
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python main_emu3.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --groupsum_delta=$groupsum_delta \
30
+ --target_size=720 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/MSCOCO/sjd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="MSCOCO2017Val"
8
+ num_images=4000
9
+ slice='485-4000'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/PP/base.sh ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
4
+ isp='random'
5
+ method='speculative_jacobi'
6
+ num_init_new_token=1
7
+ benchmark_way='order'
8
+ prompt="PartiPrompts"
9
+ num_images=1600
10
+ slice='0-1600'
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/base
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice > ${output_path}.log 2>&1
27
+
28
+ # python main_emu3.py \
29
+ # --tokenizer_path=$tokenizer_path \
30
+ # --output_path=$output_path \
31
+ # --isp=$isp \
32
+ # --method=$method \
33
+ # --num_init_new_token=$num_init_new_token \
34
+ # --benchmark_way=$benchmark_way \
35
+ # --prompt=$prompt \
36
+ # --num_images=$num_images \
37
+ # --slice=$slice > ${output_path}.log 2>&1
scripts/emu3/PP/gsd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='485-1600'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/gsd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/PP/jd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/PP/lantern.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='lantern'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='485-1600'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/lantern
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/PP/ms_sjd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/ms_sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/PP/mscr_gsd.sh ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=0.008
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/mscr_gsd
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python main_emu3.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --groupsum_delta=$groupsum_delta \
30
+ --target_size=720 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/PP/mscr_sjd.sh ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi_groupsum'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ groupsum_delta=0.05
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/mscr_sjd_${groupsum_delta}
12
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
13
+ mkdir -p ${output_path}
14
+
15
+ srun \
16
+ -N 1 \
17
+ --ntasks-per-node 1 \
18
+ python main_emu3.py \
19
+ --tokenizer_path=$tokenizer_path \
20
+ --output_path=$output_path \
21
+ --isp=$isp \
22
+ --method=$method \
23
+ --num_init_new_token=$num_init_new_token \
24
+ --benchmark_way=$benchmark_way \
25
+ --prompt=$prompt \
26
+ --num_images=$num_images \
27
+ --slice=$slice \
28
+ --static_tree \
29
+ --groupsum_delta=$groupsum_delta \
30
+ --target_size=720 \
31
+ --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
32
+
33
+ # python main_emu3.py \
34
+ # --tokenizer_path=$tokenizer_path \
35
+ # --output_path=$output_path \
36
+ # --model_path=$model_path \
37
+ # --isp=$isp \
38
+ # --method=$method \
39
+ # --num_init_new_token=$num_init_new_token \
40
+ # --benchmark_way=$benchmark_way \
41
+ # --prompt=$prompt \
42
+ # --num_images=$num_images \
43
+ # --slice=$slice \
44
+ # --static_tree \
45
+ # --groupsum_delta=$groupsum_delta \
46
+ # --target_size=720 \
47
+ # --tree_choices=Grouped_Tree_6 > ${output_path}.log 2>&1
scripts/emu3/PP/sjd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="PartiPrompts"
8
+ num_images=1600
9
+ slice='0-1600'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/sjd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1
scripts/emu3/T2ICompBench/base.sh ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
4
+ isp='random'
5
+ method='speculative_jacobi'
6
+ num_init_new_token=1
7
+ benchmark_way='order'
8
+ prompt="T2ICompBenchVal"
9
+ num_images=2400
10
+ slice='0-2400'
11
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/base
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice > ${output_path}.log 2>&1
scripts/emu3/T2ICompBench/gsd.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ cd /mnt/petrelfs/leihaodong/sjdtree
3
+ isp='random'
4
+ method='group_speculative_jacobi'
5
+ num_init_new_token=16
6
+ benchmark_way='order'
7
+ prompt="T2ICompBenchVal"
8
+ num_images=2400
9
+ slice='485-2400'
10
+ output_path=/mnt/petrelfs/leihaodong/ICLR25/exp/Emu3/${prompt}/gsd
11
+ tokenizer_path=/mnt/petrelfs/leihaodong/local_model/chameleon/tokenizer
12
+ mkdir -p ${output_path}
13
+
14
+ srun \
15
+ -N 1 \
16
+ --ntasks-per-node 1 \
17
+ python main_emu3.py \
18
+ --tokenizer_path=$tokenizer_path \
19
+ --output_path=$output_path \
20
+ --isp=$isp \
21
+ --method=$method \
22
+ --num_init_new_token=$num_init_new_token \
23
+ --benchmark_way=$benchmark_way \
24
+ --prompt=$prompt \
25
+ --num_images=$num_images \
26
+ --slice=$slice \
27
+ --static_tree \
28
+ --target_size=720 \
29
+ --tree_choices=Line_16 > ${output_path}.log 2>&1