Search for pages and actions
Predict which passengers survived the Titanic shipwreck. This classic binary classification challenge uses real passenger data to explore feature engineering and model selection.
The dataset contains demographics and travel information for 891 training passengers:
The test set contains 418 passengers without the Survived column.
Submissions are scored using accuracy — the percentage of correctly predicted survival outcomes.
$$\text{Accuracy} = \frac{\text{Correct Predictions}}{\text{Total Predictions}}$$
Submit a CSV with exactly two columns:
| Column | Description |
|---|---|
| PassengerId | ID from the test set |
| Survived | Your binary prediction (0 or 1) |
Spec version: v1