Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mneedham/kaggle-titanic
An attempt by Nathan Fisher and me at http://www.kaggle.com/c/titanic-gettingStarted/
https://github.com/mneedham/kaggle-titanic
Last synced: 12 days ago
JSON representation
An attempt by Nathan Fisher and me at http://www.kaggle.com/c/titanic-gettingStarted/
- Host: GitHub
- URL: https://github.com/mneedham/kaggle-titanic
- Owner: mneedham
- Created: 2013-11-03T12:58:05.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-13T23:05:26.000Z (about 11 years ago)
- Last Synced: 2024-04-14T09:10:04.733Z (9 months ago)
- Language: Python
- Homepage:
- Size: 363 KB
- Stars: 7
- Watchers: 5
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Steps to get going with this
### Install virtual env and create a profile for kaggle
pip install https://github.com/pypa/virtualenv/tarball/develop
virtualenv kaggle
. kaggle/bin/activate### Install all the things
pip install numpy scikit-learn pandas scipy sklearn-pandas
### Generate some entries for the Kaggle Titanic problem
# Simple version using tutorial from the website
python titanic.ml
# Version using the ExtraTreesClassifier from scikit-learn
python titanic-ml.py
Exploration of which classifier would work best can be seen at:python titanic-ml-explore.py