I have read a lot of "increasing Java heap space" questions here in SO and I have yet to understand this question that's bugging me:
If I increase the heap size in either the GUI via
> Run > Run Configurations > Arguments > type -Xmx2048m
or other size that you want (related); or directly editing theeclipse.ini
file (related) with the necessary options, is the value I provided limited by my RAM or can it exceed that?
I only have access to a 2GB machine and I am performing operations on a 150,000-record dataset. I have tried both of the techniques I specified and it still failed.
Note: Specifically I am training the 150K dataset with the WEKA 3.7.10 API in my Eclipse Luna.