Kareem Amr
Results
2
issues of
Kareem Amr
I am using this [lib](https://pypi.org/project/datarobot-predict/) which is a wrapper for some Java code and in turn uses py4j. For some reason when I run a specific line of code in...
```py from sklearn import model_selection params = {'reg_lambda': [0], 'learning_rate': [.1, .3], 'subsample': [.7, 1], 'max_depth': [2, 3], 'random_state': [42], 'n_jobs': [-1], 'n_estimators': [200]} xgb2 = xgb.XGBClassifier(early_stopping_rounds=5) cv = (model_selection.GridSearchCV(xgb2,...