-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_shadow_train.sh
30 lines (24 loc) · 1.06 KB
/
run_shadow_train.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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
DATASET="ogbn-products"
MACHINES=2
DATA_PATH="data/${DATASET}-p${MACHINES}"
DGL_DATASET_PATH="/data/gangda/dgl"
FILE_PATH="intermediate"
DEVICE=0
RUNS=5
EPOCHS=35
BATCH_SIZE=128
MODEL="GAT-NORM-ACT"
DIM=256
POOL="max"
python shadow_gnn/run_shadow.py --data_name "${DATASET}" \
--data_path "${DATA_PATH}" --file_path "${FILE_PATH}"\
--dgl_path "${DGL_DATASET_PATH}" \
--device "${DEVICE}" \
--runs "${RUNS}" --epochs "${EPOCHS}" \
--batch_size "${BATCH_SIZE}" \
--model "${MODEL}" --dim "${DIM}" \
--stand --norm \
--pool "${POOL}" --feat_aug --cs