-
Notifications
You must be signed in to change notification settings - Fork 418
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
Memory used in models vgg #64
Comments
16 GiB would be enough -- but your other machine is 32 bit, so any given process can just address 4 GiB of memory. I'm still a bit surprised you're hitting an error on build_model_vgg19() already, when creating the weight matrix of the first dense layer. Is this the original model with an input layer of 224x224 or did you increase that? Is there anything else in your memory that's large? |
code is exactly the same
|
Still, try to find out where your memory goes. Possibly step through the code in pdb and watch memory usage in top, or use a memory profiler. Maybe you're unintentionally using up a major portion of the 4 GiB your process has available. |
For classification problems, I use the model vgg. I have a computer with Debian 6.0.9, 32 bit, RAM 15.8Gb. When I try to load a model vgg19 or vgg16. I receive a memory error
There is a second computer RAM 32 Gb 64bit
on this computer is working correctly
i.e. 16 GB RAM is not enough
is it normal?
The text was updated successfully, but these errors were encountered: