I would have wanted to actually participate in this challenge because it is exciting! But I am in another one that's more to my personal liking, predicting the South African CPI. ButI agree with ff.
Will try. I just happen to have multiple use cases though, many of which to do with my employer, especially time series clustering and time series demand forecasting.
I tried to apply your advice but it kept throwing errors, I googled the problem many times but the given solutions do not work.
ValueError: Unknown label type: 'continuous'
this is the message. Itried to label encode target as all solution does but it failed, I am boosting two lightgbm models.any help would be appreciated.
Very helpful , especially for those who've made lots of submissions and are still unable to climb into 0.8
I thought the same thing since many people use the staternotebook as their base.
I would have wanted to actually participate in this challenge because it is exciting! But I am in another one that's more to my personal liking, predicting the South African CPI. ButI agree with ff.
You can also participate,Iam also in RMB challenge
Will try. I just happen to have multiple use cases though, many of which to do with my employer, especially time series clustering and time series demand forecasting.
I tried to apply your advice but it kept throwing errors, I googled the problem many times but the given solutions do not work. ValueError: Unknown label type: 'continuous' this is the message. Itried to label encode target as all solution does but it failed, I am boosting two lightgbm models.any help would be appreciated.I strongly advise you to study the "auc" metric so that you can better improve your score in the competition.
Thank you very much!
In R,
predictions <- predict(model, df_test_dummy, type = "prob")
# Then keep the second column
predictions <- predictions[2]