├── .gitattributes ├── Documentation ├── MachineModelsDesc.docx ├── Project Report.pdf └── testingthetest.csv ├── GUI.py ├── MLModelPics ├── .DS_Store ├── DecisionTree.jpg ├── LinearSUPPORTvector.png ├── LogRegression.jpg ├── MachineModelsDesc.txt.docx ├── bg2.jpg ├── bg2.png ├── gNaiveBayes.png ├── gradient-descent.png ├── img1.jpg ├── img2.png ├── kNearestNeighbor.png ├── percepetron(neuron).jpg └── rForest.png ├── dataPreprocessing.py ├── machineLearningModels.py ├── readme.md ├── requirements.txt ├── test.csv └── train.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/.gitattributes -------------------------------------------------------------------------------- /Documentation/MachineModelsDesc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/Documentation/MachineModelsDesc.docx -------------------------------------------------------------------------------- /Documentation/Project Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/Documentation/Project Report.pdf -------------------------------------------------------------------------------- /Documentation/testingthetest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/Documentation/testingthetest.csv -------------------------------------------------------------------------------- /GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/GUI.py -------------------------------------------------------------------------------- /MLModelPics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/.DS_Store -------------------------------------------------------------------------------- /MLModelPics/DecisionTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/DecisionTree.jpg -------------------------------------------------------------------------------- /MLModelPics/LinearSUPPORTvector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/LinearSUPPORTvector.png -------------------------------------------------------------------------------- /MLModelPics/LogRegression.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/LogRegression.jpg -------------------------------------------------------------------------------- /MLModelPics/MachineModelsDesc.txt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/MachineModelsDesc.txt.docx -------------------------------------------------------------------------------- /MLModelPics/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/bg2.jpg -------------------------------------------------------------------------------- /MLModelPics/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/bg2.png -------------------------------------------------------------------------------- /MLModelPics/gNaiveBayes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/gNaiveBayes.png -------------------------------------------------------------------------------- /MLModelPics/gradient-descent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/gradient-descent.png -------------------------------------------------------------------------------- /MLModelPics/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/img1.jpg -------------------------------------------------------------------------------- /MLModelPics/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/img2.png -------------------------------------------------------------------------------- /MLModelPics/kNearestNeighbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/kNearestNeighbor.png -------------------------------------------------------------------------------- /MLModelPics/percepetron(neuron).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/percepetron(neuron).jpg -------------------------------------------------------------------------------- /MLModelPics/rForest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/MLModelPics/rForest.png -------------------------------------------------------------------------------- /dataPreprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/dataPreprocessing.py -------------------------------------------------------------------------------- /machineLearningModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/machineLearningModels.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/test.csv -------------------------------------------------------------------------------- /train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsiddiqui/Predicting-Survival-on-Titanic-with-Machine-Learning-and-Graphical-User-Interface/HEAD/train.csv --------------------------------------------------------------------------------