├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── configs └── jupyter_notebook_config.py └── notebooks ├── .keep └── titanic ├── docs ├── decision-tree-examplee.png ├── linear-nonlinear-examples.png ├── linear-regression-example.png ├── logistic-curve.png ├── logistic-regression-example.jpg ├── one-hot-enconding.png ├── precision-recall.png ├── sgd-example.png ├── sgd-git-example.gif └── svm-example.jpg ├── input ├── test.csv └── train.csv └── titanic.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/README.md -------------------------------------------------------------------------------- /configs/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/configs/jupyter_notebook_config.py -------------------------------------------------------------------------------- /notebooks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/titanic/docs/decision-tree-examplee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/decision-tree-examplee.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/linear-nonlinear-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/linear-nonlinear-examples.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/linear-regression-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/linear-regression-example.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/logistic-curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/logistic-curve.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/logistic-regression-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/logistic-regression-example.jpg -------------------------------------------------------------------------------- /notebooks/titanic/docs/one-hot-enconding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/one-hot-enconding.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/precision-recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/precision-recall.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/sgd-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/sgd-example.png -------------------------------------------------------------------------------- /notebooks/titanic/docs/sgd-git-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/sgd-git-example.gif -------------------------------------------------------------------------------- /notebooks/titanic/docs/svm-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/docs/svm-example.jpg -------------------------------------------------------------------------------- /notebooks/titanic/input/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/input/test.csv -------------------------------------------------------------------------------- /notebooks/titanic/input/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/input/train.csv -------------------------------------------------------------------------------- /notebooks/titanic/titanic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-science-joinville/notebooks/HEAD/notebooks/titanic/titanic.ipynb --------------------------------------------------------------------------------