-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_gcondnet.sh
executable file
·36 lines (34 loc) · 1.05 KB
/
train_gcondnet.sh
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
# GCondNet with KNN graphs
python src/main.py \
--model 'dnn' \
--winit_initialisation 'gcondnet' \
--winit_first_layer_interpolation_scheduler 'linear' \
--winit_first_layer_interpolation_end_iteration 200 \
--winit_first_layer_interpolation 1 \
--winit_graph_connectivity_type 'knn' \
\
--logger 'csv' \
--experiment_name 'GCondNet_KNN' \
\
--lr 0.0001 \
\
--dataset 'toxicity' \
--disable_wandb \
# --run_repeats_and_cv \ # if you want to runs 25 runs (5-fold cross-validation with 5 repeats)
# GCondNet with SRD graphs
# python src/main.py \
# --model 'dnn' \
# --winit_initialisation 'gcondnet' \
# --winit_first_layer_interpolation_scheduler 'linear' \
# --winit_first_layer_interpolation_end_iteration 200 \
# --winit_first_layer_interpolation 1 \
# --winit_graph_connectivity_type 'sparse-relative-distance' \
# \
# --logger 'csv' \
# --experiment_name 'GCondNet_SRD' \
# \
# --lr 0.0001 \
# \
# --dataset 'toxicity' \
# --disable_wandb \
# # --run_repeats_and_cv \ # if you want to runs 25 runs (5-fold cross-validation with 5 repeats)