The val_args copys from train_args while it does not change crop.
However, the data_grep/get_cityscapes_list.py offers is_crop, I think val_bigger_patch.lst should not be cropped version. So I set is_crop as False to produce val_bigger_patch.lst, and I tried to disable 'crop' in train/solver.py as below:
val_args = train_args.copy()
val_args['data_shape'] = [(self.batch_size, 3, 1024, 2048)]
val_args['label_shape'] = [
(self.batch_size, 1024 * 2048 / self.cell_width ** 2)]
val_args['scale_factors'] = [1]
val_args['use_random_crop'] = False
val_args['use_mirror'] = False
val_args['crop'] = False
But module.fit fails and it seems that it complains train_data and val_data is not consistent while their data and label's shape are not same, module is bind to the train_data's shape as below already:
module.bind(
data_shapes=[(self.data_name[0], self.data_shape[0])],
label_shapes=[(self.label_name[0], self.label_shape[0])])
If you use cropped val_bigger_patch.lst actually, then I tried to validate it on full image by myself, or the program may be buggy in validating, it not enouge to fix #16 .
The
val_argscopys fromtrain_argswhile it does not changecrop.However, the
data_grep/get_cityscapes_list.pyoffersis_crop, I thinkval_bigger_patch.lstshould not be cropped version. So I setis_cropasFalseto produceval_bigger_patch.lst, and I tried to disable 'crop' intrain/solver.pyas below:But
module.fitfails and it seems that it complains train_data and val_data is not consistent while their data and label's shape are not same, module is bind to the train_data's shape as below already:If you use cropped val_bigger_patch.lst actually, then I tried to validate it on full image by myself, or the program may be buggy in validating, it not enouge to fix #16 .