forked from AljazBozic/NeuralGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viz.sh
executable file
·35 lines (28 loc) · 1.08 KB
/
viz.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
###############################################################
# PARAMS
###############################################################
# Time step increment
TIME_INC=5 #1
# Grid params
GRID_DIM=128
GRID_NUM_CHUNKS=64
# Graph params
NUM_NEIGHBORS=4
EDGE_WEIGHT_THRESHOLD=0.05
# Dataset
GT_DATA_DIR="out/dataset/doozy"
# Model
# CHECKPOINT_PATH="out/experiments/doozy_graph/checkpoints/00510000_model.pt"
# CHECKPOINT_PATH="out/experiments/doozy_shape/checkpoints/00430000_model.pt"
CHECKPOINT_PATH="out/models/doozy_checkpoint.pt"
###############################################################
# RUN VISUALIZATION
###############################################################
python viz.py --checkpoint_path ${CHECKPOINT_PATH} \
--time_inc ${TIME_INC} \
--gt_data_dir ${GT_DATA_DIR} \
--grid_dim ${GRID_DIM} \
--grid_num_chunks ${GRID_NUM_CHUNKS} \
--num_neighbors ${NUM_NEIGHBORS} \
--edge_weight_threshold ${EDGE_WEIGHT_THRESHOLD} \
# --viz_only_graph \