This project uses the [Titanic - Machine Learning from Disaster] dataset from Kaggle to predict passenger survival using Gradient Boosting Classifier.
- Cleaned dataset (removed unnecessary columns, handled missing values)
- Converted categorical features (
Sex,Embarked) to numerical using one-hot encoding - Trained model using
GradientBoostingClassifierfromscikit-learn - Evaluated using:
- Accuracy
- Classification Report
- Confusion Matrix
- Python
- pandas
- scikit-learn
- numpy