-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValueError when using complex64 with cgrappa #79
Comments
Hi @zaccharieramzi, thanks for reporting this. What operating system are you using and what version of python? |
I am on Linux Ubuntu 16.04 with Python 3.6.8. |
Alright, I knew this looked familiar. This is a known issue (not well documented, tests only run on There's not an easy fix, but here are some options:
|
Not really in the scope of this issue but since you mention it, does |
Keep in mind many of the algorithms found in pygrappa currently only support 2D+coil datasets as I was trying to just get them working. They are slowly getting migrated to be able to handle 3D+coil datasets (e.g., most recently
I don't see any reason nonisotropic voxels shouldn't work, let me know if you run into issues. |
Yes that's what I did, looping over the 3rd dimension was my solution so far. However, it is very slow (12 minutes for a fastMRI volume) and doesn't have acceptable results (13dB in PSNR). It probably has to do with the setting of the |
Might be regularization term, could be something else. I've also had issues with some methods using 7T data (#74). I haven't worked with fastMRI volumes. Do you mind sending a link to the one you are trying to use? Real datasets often behave very differently from synthetic ones and I'd like to start setting up some benchmarks with real data to make sure performance is acceptable. |
I am not sure I understood, do you want the link to the fastMRI dataset? In this case here you go: https://fastmri.med.nyu.edu/. If you want like an extract from this dataset to run GRAPPA on I can zip one for you just tell me. |
I think the confusion is because I am not familiar with fastMRI.
This would probably be easiest for now. Do you mind sharing the dataset as a zip file? |
I can't really share the whole dataset as a zip file since it's 1TB but I ll try with just one volume. |
Hi, thanks very much for this implementation.
I tried to use
cgrappa
withnp.complex64
data and got the following error:The code to reproduce the error is the following:
The text was updated successfully, but these errors were encountered: