Winning a Kaggle Competition in Python
Yauhen Babakhin
Kaggle Grandmaster
| Evaluation metric | Type of problem |
|---|---|
| Area Under the ROC (AUC) | Classification |
| F1 Score (F1) | Classification |
| Mean Log Loss (LogLoss) | Classification |
| Mean Absolute Error (MAE) | Regression |
| Mean Squared Error (MSE) | Regression |
| Mean Average Precision at K (MAPK, MAP@K) | Ranking |

# Write a submission file to the disk
submission[['id', 'target']].to_csv('submission_1.csv', index=False)
| Submission | Public LB MSE | Private LB MSE |
|---|---|---|
| submission_1.csv | 2.895 | ? |





Winning a Kaggle Competition in Python