RED-CNN
RED-CNN copied to clipboard
Pytorch Implementation of Low-Dose CT with a Residual Encoder-Decoder Convolutional Neural Network (RED-CNN)
When I run the file 'main.py' using 'python main.py --load_mode=0', but it doesn't work which shows' IndexError: list index out of range'. Why? I have no idea. Does anyone know?
I've been running your code recently. But my final PSNR value is about 26. The PSNR value written in your paper is above 40. I use the AAPM dataset. Is...
Hello, I opened the data download interface according to the data set connection you provided, but the data set inside was 952G, and I didn't see the data of these...
Hi, I have learned a lot going through your code! What confuses me a little bit is the dataset used but it is not your problem. Previous publications including Red_CNN...
In networks.py, when init class RED_CNN, only 4 nn.Conv2d were instantiated. ``` def __init__(self, out_ch=96): super(RED_CNN, self).__init__() self.conv_first = nn.Conv2d(1, out_ch, kernel_size=5, stride=1, padding=0) self.conv = nn.Conv2d(out_ch, out_ch, kernel_size=5, stride=1,...
Hello, I’m working on your RED_CNN. Since it needs time to go through paper work from downloading data. Will you please share your trained model (.ckpt)? So that maybe I...