forked from deephyper/deephyper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost_training.sh
More file actions
32 lines (29 loc) · 777 Bytes
/
post_training.sh
File metadata and controls
32 lines (29 loc) · 777 Bytes
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
#!/bin/bash
conda activate agu # or source activate agu
ROOT_DIR="./autognnuq/"
POST_DIR="./autognnuq/"
DATA_DIR="./autognnuq/data/"
BATCH_SIZE=128
LEARNING_RATE=0.001
EPOCH=1000
for SEED in {0..7}; do
for DATASET in "delaney" "freesolv" "lipo" "qm7" "qm9"; do
if [ "$DATASET" == "qm9" ]; then
SPLIT_TYPE="811"
else
SPLIT_TYPE="523"
fi
for MODE in "normal" "simple" "random"; do
python post_training.py --ROOT_DIR "$ROOT_DIR" \
--POST_DIR "$POST_DIR" \
--DATA_DIR "$DATA_DIR" \
--SPLIT_TYPE "$SPLIT_TYPE" \
--seed $SEED \
--dataset "$DATASET" \
--batch_size $BATCH_SIZE \
--learning_rate $LEARNING_RATE \
--epoch $EPOCH \
--mode "$MODE"
done
done
done