While I'm training the data using XGBoostClassifier I'm getting the following error
from xgboost import XGBClassifier as XGBoostClassifier
X_train, X_test, y_train, y_test = train_test_split(data_model.iloc[:, 1:], data_model.iloc[:, 0],
train_size=0.7, stratify=data_model.iloc[:, 0],
random_state=seed)
precision, recall, accuracy, f1 = test_classifier(X_train, y_train, X_test, y_test, XGBoostClassifier(seed=seed))
xgb_acc = cv(XGBoostClassifier(seed=seed),data_model.iloc[:, 1:], data_model.iloc[:, 0])
error occurred:
OSError: [WinError -529697949] Windows Error 0xe06d7363
User contributions licensed under CC BY-SA 3.0