I am trying to fit a model using the xgboos
t package on PyCharm
using Python 3.6
.
When I call the model.fit(arr_train,arr_test)
I get the following message:
Process finished with exit code -1073740791 (0xC0000409)
How can I resolve this?
I resolved this by uninstalling xgboost 0.90 (via the terminal) and then installing xgboost 0.80 instead
Are you on a Windows system? If so 0xC0000409
refers to a stack buffer overflow. As you can see from here
Quoting from the website:
The error code STATUS_STACK_BUFFER_OVERRUN (0xc0000409) refers to a stack buffer overflow while the error code STATUS_STACK_OVERFLOW (0xc00000fd) refers to stack exhaustion.
Maybe your dataset is too large to fit in memory. Try to reduce the size of your training set before doing the fit.
User contributions licensed under CC BY-SA 3.0