This is a repository for the Spaceship Titanic Competition in Kaggle, used by the Kaggle 1 Insper Dynamics team. This repository will be mostly used for practicing and testing the code for future, more complex competitions.
- Felipe Maluli de Carvalho Dias
- Lucca Hiratsuca Costa
- João Alfredo Cardoso Lamy
- Thomas Chiari Ciocchetti de Souza
Submission1
: Uses a Random Forest Classifier, with 100 trees, usingscikit-learn
library (more info on the notebookSpaceship-Titanic.ipynb
).Submission2
: Uses a Logistic Regression Classifier, withscikit-learn
library, and applies Feature Selection and Engineering techniques (more info on the notebookSpaceship-Titanic-LogReg.ipynb
).Submission3
: Uses a Random Forest Classifier, usingtensorflow-decision-forests
library, with default parameters and configurations (more info on the notebookST_TFDF.ipynb
).
- tree_1.png and tree_model_1.png: Represent the Decision Tree Classifier first elaborated in the notebook
Spaceship-Titanic.ipynb
, withmax_depth=3
. - tree_model_2.png: Represents the Decision Tree Classifier elaborated in the notebook
Spaceship-Titanic-LogReg.ipynb
, withmax_depth=5
. - tree_random_forest.png: Represents one of the trees of the Random Forest Classifier elaborated in the notebook
Spaceship-Titanic.ipynb
, withn_estimators=100
.