hezhangsprinter / DCPDN

Densely Connected Pyramid Dehazing Network (CVPR'2018)
404 stars 112 forks source link

The result is very different from that in the paper #28

Closed TingMAC closed 5 years ago

TingMAC commented 5 years ago

I downloaded the pre_trained model and the nature image, and run the command python demo.py --dataroot ./facades/nat_new4 --valDataroot ./facades/nat_new4 --netG ./demo_model/netG_epoch_8.pth, but the obtained results in result_cvpr18 are different from those in the paper. There is obvious haze in the results. If you have time, please tell me how can I solve the problem?

hezhangsprinter commented 5 years ago

If you strictly follow the readme.md and do exactly everything same, you should reproduce the results exactly same as in my github and also the paper. It won't be huge difference if you following everything and use the same image.

Make sure you are using net.train() rather than net.eval().

If you want to reproduce the table results, please using the demo.py to generate the target image and then do the comparison using SSIM.

Let me know if you have further concerns.

TingMAC commented 5 years ago

Thank you. I have reproduce the results.

TingMAC commented 5 years ago

Another question. If the image is not 256256 or 512512, there will be an error message:‘’invalid argument 0: Sizes of tensors must match except in dimension 1. Got 3 and 2 in dimension 2 at /opt/conda/conda-bld/pytorch_1525796793591/work/torch/lib/THC/generic/THCTensorMath.cu:111‘’. Is there a way to run the code with input hazy image of any arbitrary size?