Skip to content

This is the repository for Kaggle's Titanic Dataset Problem for the Hackerrank Live

License

Notifications You must be signed in to change notification settings

missrhea/Kaggle_Titanic

Repository files navigation

Titanic scikit-learn demo

Jupyter Notebook for Data Science Presentation. This Notebook shows examples of Feature Engineering and Hyperparameter tuning.

The Kaggle Titanic Problem

Video: Dive Into Data Science and Build your First ML Model – With All Star Rhea

Dependencies

Install pip3 and python3 and then the necessary packages from requirements.txt

python -m pip install -r requirements.txt

I like to create a python virtual environment for individual projects. This is a resource I refer to frequently.

Once you have pip3 installed locally, install the virtualenv package with

python3 -m pip install --user virtualenv

Then go ahead and create a virtual environment which will be saved in a directory called 'env' within your current directory, as follows

python3 -m venv env

Note: You should exclude your virtual environment directory from your version control system using .gitignore or similar.

Activate the virtual environment by

source env/bin/activate

And to deactivate,

deactivate

Once you are within the active virtual environment you can install the dependent packages from the requirement.txt file in this repository by,

python3 -m pip install -r requirements.txt

In case you were wondering, I created the requirement.txt file like this,

python3 -m pip freeze

About

This is the repository for Kaggle's Titanic Dataset Problem for the Hackerrank Live

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published