Matlab - Out of memory problem
I have a problem which occurs when I write the command line of the rbf (radial basis function) neural network
net = newrb(Train, Desired);
I get the error
??? Error using ==> unknown
Out of memory. Type HELP MEMORY for your options.
I'm working with 2 GB RAM
Virtual Memory Initial size 4 GB & Maximum size 8 GB
I tried
- Maximizing the virtual memory
- enlarging the memory for matlab by adding this statment to the boot.ini
/fastdetect /3GB /USERVA=3030
but all this with no use
Any help please ?!!!!!!
Thanx in advance
net = newrb(Train, Desired);
I get the error
??? Error using ==> unknown
Out of memory. Type HELP MEMORY for your options.
I'm working with 2 GB RAM
Virtual Memory Initial size 4 GB & Maximum size 8 GB
I tried
- Maximizing the virtual memory
- enlarging the memory for matlab by adding this statment to the boot.ini
/fastdetect /3GB /USERVA=3030
but all this with no use
Any help please ?!!!!!!
Thanx in advance
0
Comments
Training a neural net takes a lot of memory. You can try using less training points or limiting the number of neurons:
http://www.mathworks.com/access/helpdesk/help/toolbox/nnet/newrb.html
but when I try the network with the 20000 record it gives me the out of memory error
newrb is adding a neuron for every record you input, unless you limit it at something. That's why you're running out of memory.
Thanx 4 trying to help