forked from epfl-dlab/understanding-decoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigure_4_RQ2.sh
More file actions
46 lines (39 loc) · 1.58 KB
/
figure_4_RQ2.sh
File metadata and controls
46 lines (39 loc) · 1.58 KB
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
#!/bin/bash
export PYTHONPATH=".:transformers/src:mctx"
PRINT=false
CI=0.95_confidence_level_50_bootstrap_samples
ENTITY=epfl-dlab
ROOT=epfl-dlab/understanding-decoding
VERSION=paper-v1
if [ $PRINT == true ]
then
echo python -m scripts.visualize_figure4 \
--confidence_interval_id $CI \
--wandb_entity_for_report $ENTITY \
--wandb_run_paths \
$ROOT/2xogfbel $ROOT/38vrpbjt $ROOT/2gchwiy1 $ROOT/3jtpx0zz $ROOT/3g2q6r6x $ROOT/yqyctpgx \
$ROOT/2xdt1zgn $ROOT/7y0pr9sw $ROOT/13niq0lx $ROOT/uykq2pgp $ROOT/37wx7n8u $ROOT/2yc65rt8 \
--wandb_id_for_report Fig4-$VERSION;
echo python -m scripts.visualize_figure4 \
--confidence_interval_id $CI \
--wandb_entity_for_report $ENTITY \
--wandb_run_paths \
$ROOT/3a5ydpr4 $ROOT/1yc972vw $ROOT/2an1uakn $ROOT/2lveviea \
$ROOT/ilkuz1w4 $ROOT/2ah4esvq $ROOT/1jl4dhvh $ROOT/2flwrn8g \
--wandb_id_for_report Fig4-$VERSION
else
python scripts/visualize_figure4.py \
--confidence_interval_id $CI \
--wandb_entity_for_report $ENTITY \
--wandb_run_paths \
$ROOT/2xogfbel $ROOT/38vrpbjt $ROOT/2gchwiy1 $ROOT/3jtpx0zz $ROOT/3g2q6r6x $ROOT/yqyctpgx \
$ROOT/2xdt1zgn $ROOT/7y0pr9sw $ROOT/13niq0lx $ROOT/uykq2pgp $ROOT/37wx7n8u $ROOT/2yc65rt8 \
--wandb_id_for_report Fig4-$VERSION;
python scripts/visualize_figure4.py \
--confidence_interval_id $CI \
--wandb_entity_for_report $ENTITY \
--wandb_run_paths \
$ROOT/3a5ydpr4 $ROOT/1yc972vw $ROOT/2an1uakn $ROOT/2lveviea \
$ROOT/ilkuz1w4 $ROOT/2ah4esvq $ROOT/1jl4dhvh $ROOT/2flwrn8g \
--wandb_id_for_report Fig4-$VERSION
fi