Primary competition visual

Zimnat Insurance Recommendation Challenge

Helping Zimbabwe
$5 000 USD
Challenge completed ~5 years ago
Prediction
Collaborative Filtering
1763 joined
612 active
Starti
Jul 01, 20
Closei
Sep 13, 20
Reveali
Sep 13, 20
User avatar
Great lakes institute of Management
which is best algorithim for this data
Data · 12 Sep 2020, 09:42 · 12

can anyone suggest me which one was the best algorthim works for this data

Discussion 12 answers

So far Catboost.

12 Sep 2020, 09:46
Upvotes 0

Catboost and Feed forward neural networks get you in the 0.027-0.028 range that is for me this was the case. Eventually Catboost trumped it. Make sure to run any of the NN algos on Google colab to use its higher GPU bandwidth. Otherwise it is very very taxing.

12 Sep 2020, 09:49
Upvotes 0

You can also use kaggke privit notebook with GPU, it works well. The data is available there.

12 Sep 2020, 14:58
Upvotes 0

LightGBM ended up working the best for me, but it required a lot more tweaking than Catboost did.

14 Sep 2020, 02:00
Upvotes 0

Can you share your code. Would like to see your approach and learn from it.

5-fold LGB gave me the best result

14 Sep 2020, 02:25
Upvotes 0

Lightgbm in dart mode had the best results according to cross validation. However, catboost had the best results according to public and private leaderboard. I should have put more weight to catboost in my ensemble to score higher. At first, I thought that my catboost model were overfitting to public leaderboard, but it wasn't the case.

14 Sep 2020, 06:00
Upvotes 0

could your share please your params? for me catboost and xgb perform worse.

@lcfstat, just asking-how do you get to see how your model is peforming from the private leaderboard?

@ssshch { 'boosting_type': 'dart', "max_depth":-1, "num_leaves":32, 'learning_rate': 0.1,"min_child_samples": 20, 'feature_fraction': 0.8,"bagging_freq":1,'bagging_fraction': 0.9,"lambda_l1":1,"lambda_l2":1}

However, I think you should be carefull with the number of iterations because dart mode does not support early stopping rounds.

@elijah-a-w Once the competision has finished, all participants can see their private leaderboard scores in the submissions menu.

My approach was sum of lgbm multiclass and binary problems.

one hot of categorical features, tfidf and tuning lambda_l2 increased my score.(+/- 40 place on public and privat)

14 Sep 2020, 06:40
Upvotes 0