@@ -124,7 +124,7 @@ python Scripts/get_scores.py --pred <path_to_preds> --output <path_to_file_to_sa
124124
125125### Cityscapes
126126- Download the Cityscapes dataset (leftImg8bit\_ trainvaltest.zip) from the official [ website] ( https://www.cityscapes-dataset.com/downloads/ ) [ 11 GB]
127- - Download our processed annotation files from [ here ] ( http://www.cs.toronto.edu/~amlan/data/polygon/cityscapes.tar.gz ) [ 68 MB ]
127+ - Our processed annotation files are included in the download file you get after signing up
128128- From the root directory, run the following command with appropriate paths to get the annotation files ready for your machine
129129```
130130python Scripts/data/change_paths.py --city_dir <path_to_downloaded_leftImg8bit_folder> --json_dir <path_to_downloaded_annotation_file> --output_dir <output_dir>
@@ -141,15 +141,15 @@ To train on your custom datasets, you have one of two options:
141141- ** Note** - While resuming training, always resume from end of epoch checkpoints to produce reproducible results!
142142
143143### Training MLE model
144- - Edit the experiment file at [ Experiments/mle.json] ( Experiments/mle.json ) and change paths for your machine
144+ - Edit the experiment file at Experiments/mle.json and change paths for your machine
145145- From the root directory, run
146146```
147147python Scripts/train/train_ce.py --exp Experiments/mle.json --reload <optional_if_resuming_training>
148148```
149149- You can view progress on Tensorboard (logs are at <experiment\_ dir>/logs/)
150150
151151### Training RL model
152- - Edit the experiment file at [ Experiments/rl.json] ( Experiments/rl.json ) and change paths for your machine
152+ - Edit the experiment file at Experiments/rl.json and change paths for your machine
153153- In the experiment file, set xe\_ initializer to the best MLE model
154154- From the root directory, run
155155```
@@ -158,15 +158,15 @@ python Scripts/train/train_rl.py --exp Experiments/mle.json --reload <optional_i
158158- ** Note** - You might have to play with hyperparameters a bit to achieve stable training, especially temperature, lr and lr\_ decay
159159
160160### Training Evaluator
161- - Edit the experiment file at [ Experiments/evaluator.json] ( Experiments/evaluator.json ) and change paths for your machine
161+ - Edit the experiment file at Experiments/evaluator.json and change paths for your machine
162162- In the experiment file, set xe\_ initializer to the best RL model
163163- From the root directory, run
164164```
165165python Scripts/train/train_evaluator.py --exp Experiments/evaluator.json --reload <optional_if_resuming_training>
166166```
167167
168168### Training GGNN
169- - Edit the experiment file at [ Experiments/ggnn.json] ( Experiments/ggnn.json ) and change paths for your machine
169+ - Edit the experiment file at Experiments/ggnn.json and change paths for your machine
170170- In the experiment file, set xe\_ initializer to the best Evaluator model
171171- From the root directory, run
172172```
0 commit comments