-
Notifications
You must be signed in to change notification settings - Fork 135
/
evaluation.sh
33 lines (32 loc) · 1.39 KB
/
evaluation.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
CUDA_VISIBLE_DEVICES=0 python evaluation.py --crop_height=384 \
--crop_width=1248 \
--max_disp=192 \
--data_path='/ssd1/zhangfeihu/data/kitti2015/training/' \
--test_list='lists/kitti2015_train.list' \
--save_path='./result/' \
--resume='./checkpoint/kitti2015_final.pth' \
--threshold=3.0 \
--kitti2015=1
# 2>&1 |tee logs/log_evaluation.txt
exit
CUDA_VISIBLE_DEVICES=0 python evaluation.py --crop_height=384 \
--crop_width=1248 \
--max_disp=192 \
--data_path='/ssd1/zhangfeihu/data/kitti2012/training/' \
--test_list='lists/kitti2012_train.list' \
--save_path='./result/' \
--resume='./checkpoint/kitti_final.pth' \
--threshold=3.0 \
--kitti=1
# 2>&1 |tee logs/log_evaluation.txt
exit
CUDA_VISIBLE_DEVICES=0 python evaluation.py --crop_height=576 \
--crop_width=960 \
--max_disp=192 \
--data_path='/ssd1/zhangfeihu/data/sceneflow/' \
--test_list='lists/sceneflow_test.list' \
--save_path='./result/' \
--resume='./checkpoint/sceneflow_epoch_10.pth' \
--threshold=1.0
# 2>&1 |tee logs/log_evaluation.txt
exit