"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

February 23, 2019

XGBoost on Windows, Python 3

#Install XGboost on windows, Python 3.2
#Step 1
anaconda search -t conda xgboost
#Step2
conda install -c mikesilva xgboost
#Step 3
pip install xgboost
from xgboost import XGBClassifie
classifier = XGBClassifier()
classifier.fit(x1,y1)
#https://towardsdatascience.com/fine-tuning-xgboost-in-python-like-a-boss-b4543ed8b1e
Happy Mastering DL!!!

No comments: