Skip to content

Instantly share code, notes, and snippets.

View allen-li1231's full-sized avatar
🚱
No Watering

Allen Li allen-li1231

🚱
No Watering
View GitHub Profile
@allen-li1231
allen-li1231 / group13_budt758x_project_update-1.ipynb
Last active April 9, 2020 19:24
Group13_BUDT758X_Project_Update.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@allen-li1231
allen-li1231 / XGBoost_template.R
Last active May 10, 2020 21:37
XGBoost model selection and fine tune from BUDT758T
library(xgboost)
airbnb_train <- read.csv()#TODO
airbnb_test <- read.csv()#TODO
train_test_split <- function(df, split_ = 0.7, seed_ = NULL)
{
if (!is.null(seed_))
{