Open RuthKassahun opened 5 months ago
Hi
Thanks a lot for trying out NIDDL.
This was due to a bug in the code (hopefully fixed now). Choices for max_proj
are integers 0 or 1. However the way max_proj
was being parsed in parse_argument
function was reading a string '0'
from the input. This has been fixed now by specifying type int
of the input as -
parser.add_argument('max_proj', type=int, choices= [1, 0], help= '1 if train network on max projection of 3D stacks else 0', default= 0)
Also I would highly recommend you to try the new pytorch version of the code. You can see that by selecting the pytorch
branch on the repo page. To clone pytorch
branch, do - git clone -b pytorch https://github.com/shiveshc/NIDDL.git
Some advantages of using the pytorch version are -
example.ipynb
to try training and inference quickly in notebooknapari_niddl.py
and follow instructions in Napari.Hope this helps.
Hello,
Thank you for sharing your great work. I want to test the denoising with your network. I've installed everything as mention, however I have some issues while running specifically with the positional argument max_projection
I get an argument error
train.py: error: argument max_proj: invalid choice: '0' (choose from 1, 0)
eventhough I choose 0 for the network not to apply on max_projection of the stack. Can you please let me know what goes wrong here.