Closed Marwen-Bhj closed 4 years ago
ckpt_postfix
is simply the postfix in the checkpoint filename; check out this linepretrained
only applies to the encoder; if it is set to True
, then the encoder weights are initialised from the pre-trained network. You can see the exact datasets used for initialisation here
I have a dataset that contains masked and depth images. I would like to train this model on this dataset. As I understand, first, my masks and depth images should be 1 channel, then I need to modify the hyper-parameters within the config.py file accordingly to the paper. My concern here is the pre-trained model, in the
train.py
,line 12
the checkpoint isckpt_postfix = 'mtrflw-nyudv2'
which is the multi-task-refinenet trained on the nuydv2 dataset. Since my dataset is outdoor images, I need to feed-in the pre-trained model on the kitti dataset. If my understanding of the whole process is right, how can I do that and what other things should I be considering ? @DrSleep