DID-MDN
DID-MDN copied to clipboard
Density-aware Single Image De-raining using a Multi-stream Dense Network (CVPR 2018)
I am getting a cropped output derained image, as the program in test.py seems to be providing a cropped version of the input image to the network, even if the...
你好,有个问题为什么batchsize设置为1啊?
I want to learn this code following with the readme, but there is not a demo.dy file in this repository. Would you like upload a new demo.dy?
你好,test1200数据集不能下载
Guidance from `README.md` ```markdown python derain_train_2018.py --dataroot ./facades/DID-MDN-training/Rain_Medium/train2018new --valDataroot ./facades/github --exp ./check --netG ./pre_trained/netG_epoch_9.pth. Make sure you download the training sample and put in the right folder ``` Code Snippet...
from `test.py`, it seems that there three sub-networks (`Dense_rain_residual`, `vgg19ca`, `Dense_rain`) are actually used, which are completely different architecture. It was never mentioned in the paper.
Seemingly, there is three training stage according to your paper: - Stage 1: training residual extraction network only - Stage 2: training density classification network based on residue output from...
Code snippet from `train_rain_class.py`: ```python netG = net1.vgg19ca() residue_net = net2.Dense_rain_residual() # ... optimizerG = optim.Adam(netG.parameters(), ...) # ... optmizerG.step() ``` It seems that `train_rain_class.py` corresponds to the joint optimization...
how to handle this issue?
models.vgg19_bn(pretrained=True) vgg19_bn在哪里?