Corey-Zumar / MRI-Reconstruction

An open source implementation of the deep learning platform for undersampled MRI reconstruction described by Hyun et. al. (https://arxiv.org/pdf/1709.02576.pdf)
53 stars 19 forks source link

ModuleNotFoundError: No module named 'train' #12

Closed adithyaOvGu closed 4 years ago

adithyaOvGu commented 4 years ago

Thank you for creating this reconstruction model. I am working on a student project on Undersampled MR image reconstruction using deep learning. I came across your work and tried implementing it with my data, but I get the following error during the training part.

File "/path/MRI-Recon-master/submrine/submrine/init.py", line 1, in from train import train_net ModuleNotFoundError: No module named 'train'

I installed the submrine package using pip3 install -e submrine from the root directory

while running the following line, the above mentioned error occurs submrine-train -d /data/training -s 100 -c /submrine/checkpoints -g 0 -b 32 -s 4 -f .04

I am new to the world of python and using such models, it would be great if you could help me.