Closed sbharadwajj closed 6 years ago
Hi @chichilicious, It should work alright by just changing the values in the "Resize" functions in the input and target transforms. I've uploaded an update in the file to specify the interpolation types (it needs to be bilinear for input and nearest for target):
`input_transform_cityscapes = Compose([ Resize((512,1024),Image.BILINEAR), ToTensor(),
]) target_transform_cityscapes = Compose([ Resize((512,1024),Image.NEAREST), ToLabel(), Relabel(255, 19), #ignore label to 19 ])`
Hi @Eromera it works fine. Thank you!
I've been trying to run the eval/eval_cityscape_color.py for a demoSequence for different sizes and I'm getting an error. Only 1024 x 2048 works. Is there anyway to run for different sizes?