-
Notifications
You must be signed in to change notification settings - Fork 6
/
train.sh
executable file
·34 lines (28 loc) · 980 Bytes
/
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
30
31
32
33
34
#!/bin/bash
# !! Updata the path to the dataset and directory to
# !! save your trained models with your own local path !!
carla_dataset_type=Carla
carla_root_path_training_data=path_to_carla_rs/train
fastec_dataset_type=Fastec
fastec_root_path_training_data=path_to_fastec_rs/train/
log_dir=path_to_log_dir/
#
cd deep_unroll_net
python train.py \
--dataset_type=$carla_dataset_type \
--dataset_root_dir=$carla_root_path_training_data \
--log_dir=$log_dir \
--net_type='netMiddle' \
--lamda_perceptual=1 \
--lamda_L1=10 \
--lamda_gt_flow=0 \
--lamda_flow_smoothness=0.1
python train.py \
--dataset_type=$fastec_dataset_type \
--dataset_root_dir=$fastec_root_path_training_data \
--log_dir=$log_dir \
--net_type='netMiddle' \
--lamda_perceptual=1 \
--lamda_L1=10 \
--lamda_gt_flow=0 \
--lamda_flow_smoothness=0.1