7 lines
326 B
Bash
7 lines
326 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -x
|
||
|
DATAPATH="/home/xyguo/data/scene_flow/"
|
||
|
python main.py --dataset sceneflow \
|
||
|
--datapath $DATAPATH --trainlist ./filenames/sceneflow_train.txt --testlist ./filenames/sceneflow_test.txt \
|
||
|
--epochs 16 --lrepochs "10,12,14,16:2" \
|
||
|
--model gwcnet-gc --logdir ./checkpoints/sceneflow/gwcnet-gc
|