Reputation: 149
I am trying to run information.gain on 15 million data .The code I have used:
library(FSelector)
weights <- information.gain(is_opened~.,df)
but I am getting this error.
Error in .jnew("java/lang/String", k) : java.lang.OutOfMemoryError: GC overhead limit exceeded
How should I overcome this?
I tried to use this code, still it didn't work:
options(java.parameters = "-Xmx8192m")
Upvotes: 0
Views: 98