-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsynthetic_experiment_learning_curves.sh
More file actions
39 lines (33 loc) · 1.06 KB
/
synthetic_experiment_learning_curves.sh
File metadata and controls
39 lines (33 loc) · 1.06 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
ROOT_DIR=benchmark_results_learning_curve
BATCH_SIZE=20
N=4000
EPOCHS=100
DEVICE=cpu
mkdir -p ${ROOT_DIR}
FRAMEWORK=tf
python3 ${FRAMEWORK}/synthetic_experiment_learning_curves.py \
--batch_size ${BATCH_SIZE} \
--n ${N} \
--epochs ${EPOCHS} \
--device ${DEVICE} \
--method softsort \
--tau 0.03 \
--pow 2.0 \
2>&1 | tee ${ROOT_DIR}/benchmark_results_learning_curve_softsort_p2_${FRAMEWORK}_${N}_${BATCH_SIZE}.txt
python3 ${FRAMEWORK}/synthetic_experiment_learning_curves.py \
--batch_size ${BATCH_SIZE} \
--n ${N} \
--epochs ${EPOCHS} \
--device ${DEVICE} \
--method softsort \
--tau 0.1 \
--pow 1.0 \
2>&1 | tee ${ROOT_DIR}/benchmark_results_learning_curve_softsort_p1_${FRAMEWORK}_${N}_${BATCH_SIZE}.txt
python3 ${FRAMEWORK}/synthetic_experiment_learning_curves.py \
--batch_size ${BATCH_SIZE} \
--n ${N} \
--epochs ${EPOCHS} \
--device ${DEVICE} \
--method neuralsort \
--tau 100.0 \
2>&1 | tee ${ROOT_DIR}/benchmark_results_learning_curve_neuralsort_${FRAMEWORK}_${N}_${BATCH_SIZE}.txt