Hi,
I´m working with H2O Python scripts.
I'm trying to estimate uncertainty in a process that includes DRF predictions.
This is the process:
Read training/test data (CSV). In this dataset, there are 1000 Y columns.
Read prediction database (CSV).
i=0
repeat:
Select training and testing sub-datasets randomly
Generate the model using Y[i] column
Generate predictions using this model
Add predicted values to a results dataset
Sum predicted values to a Sum column in results dataset
if (i % 10) == 0:
Save results
results = None
i+=1
until i==1000
Saving results for i == 34, I´m getting the error:
h2o.exceptions.H2OServerError: HTTP 500 Server Error:
Server error water.util.DistributedException:
Error: DistributedException from /
127.0.0.1:54321: 'GC overhead limit exceede'
How can I solve it?
Tks,
Mauro Assis