sacmehta / ESPNet

ESPNet: Efficient Spatial Pyramid of Dilated Convolutions for Semantic Segmentation
https://sacmehta.github.io/ESPNet/
MIT License
541 stars 112 forks source link

Question about RuntimeError #37

Closed msson closed 5 years ago

msson commented 5 years ago

Hi, I got this error below and I can't figure it out which part is wrong. (I also attached my parameters) I've already run with 1024x768 size dataset using same parameter but when I resize my dataset to 512x384 then the error shows up. (I also changed the parameters width and height) 2018-11-16 11-39-39 2018-11-16 11-36-45

msson commented 5 years ago

I am wondering this is because the data augmentation parts. 2018-11-16 11-50-36

sacmehta commented 5 years ago

All parameters inside myTransforms.Scale should be divisible by 8. For example, 538 in trainDataset_scale2 is not divisible by 8. Please check all of them and it should help you resolve your error.

msson commented 5 years ago

Thanks a lot!