Process finished with exit code -1073740791 (0xC0000409) on PyCharm with XGBoost

1

I am trying to fit a model using the xgboost 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?

python
python-3.x
pycharm
python-3.6
xgboost
asked on Stack Overflow Sep 16, 2019 by groot592 • edited Sep 16, 2019 by milanbalazs

2 Answers

2

I resolved this by uninstalling xgboost 0.90 (via the terminal) and then installing xgboost 0.80 instead

answered on Stack Overflow Sep 18, 2019 by groot592
1

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.

answered on Stack Overflow Sep 16, 2019 by Nikaido

User contributions licensed under CC BY-SA 3.0