-
Notifications
You must be signed in to change notification settings - Fork 0
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
Tensorflow crashes #2
Comments
Hi @ronias, I think that warning is acceptable. I have a few questions to start getting to the bottom of this issue.
Thanks. Best, |
When I debug it and see the variables values then this is what sent:
checkpointFileMatch = 0
Thank you. |
Thanks for the previous reply about where to locate the T1w files.
I managed to get the files and run the code, but when the python code (in the file orig_mod_NNEval.py) is executed, it crashes at line 130:
b = sess.run(pred,feed_dict={X:mri}
When this line is exectued it just give the following warnings:
2023-09-18 01:44:09.620351: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 805306368 exceeds 10% of free system memory.
2023-09-18 01:44:16.856842: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 805306368 exceeds 10% of free system memory.
The 805306368 bytes in the warning equals to just 0.8GB of memory and I have 8GB of memory in my machine.
After one minute the program process ends with no error, I even wrapped it in a try-except (like try-catch) and added a print, but it doesnt get into the execpt part.
I'm using tensor flow cpu mode.
Dou you have any idea what can cause it?
Thanks.
The text was updated successfully, but these errors were encountered: