All Projects → savarin → Python_for_ml

savarin / Python_for_ml

brief introduction to Python for machine learning

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python for ml

Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (+7475.86%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Data Science Portfolio
Portfolio of data science projects completed by me for academic, self learning, and hobby purposes.
Stars: ✭ 559 (+1827.59%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Code
Compilation of R and Python programming codes on the Data Professor YouTube channel.
Stars: ✭ 287 (+889.66%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (+93.1%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Pymc Example Project
Example PyMC3 project for performing Bayesian data analysis using a probabilistic programming approach to machine learning.
Stars: ✭ 90 (+210.34%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Crime Analysis
Association Rule Mining from Spatial Data for Crime Analysis
Stars: ✭ 20 (-31.03%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Machinelearningcourse
A collection of notebooks of my Machine Learning class written in python 3
Stars: ✭ 35 (+20.69%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Dat8
General Assembly's 2015 Data Science course in Washington, DC
Stars: ✭ 1,516 (+5127.59%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Data Science Projects With Python
A Case Study Approach to Successful Data Science Projects Using Python, Pandas, and Scikit-Learn
Stars: ✭ 198 (+582.76%)
Mutual labels:  jupyter-notebook, data-science, pandas, scikit-learn
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+11120.69%)
Mutual labels:  jupyter-notebook, data-science, scikit-learn
Zat
Zeek Analysis Tools (ZAT): Processing and analysis of Zeek network data with Pandas, scikit-learn, Kafka and Spark
Stars: ✭ 303 (+944.83%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn
Python Introducing Pandas
Introduction to pandas Treehouse course
Stars: ✭ 24 (-17.24%)
Mutual labels:  jupyter-notebook, data-science, pandas
Sklearn Evaluation
Machine learning model evaluation made easy: plots, tables, HTML reports, experiment tracking and Jupyter notebook analysis.
Stars: ✭ 294 (+913.79%)
Mutual labels:  jupyter-notebook, data-science, scikit-learn
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (+1089.66%)
Mutual labels:  jupyter-notebook, data-science, scikit-learn
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (+841.38%)
Mutual labels:  jupyter-notebook, data-science, pandas
Kagglestruggle
Kaggle Struggle
Stars: ✭ 228 (+686.21%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (+1213.79%)
Mutual labels:  jupyter-notebook, data-science, pandas
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (+1313.79%)
Mutual labels:  jupyter-notebook, data-science, pandas
Data Science Ipython Notebooks
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
Stars: ✭ 22,048 (+75927.59%)
Mutual labels:  data-science, pandas, scikit-learn
Just Pandas Things
An ongoing list of pandas quirks
Stars: ✭ 660 (+2175.86%)
Mutual labels:  jupyter-notebook, data-science, pandas

Python for ML

Installation Notes

This tutorial requires pandas, scikit-learn and IPython with the IPython Notebook. These can be installed with pip by typing the following in terminal:

pip install --upgrade pip
pip install scipy
pip install numpy pandas sklearn ipython
pip install jupyter

Next, clone the material in this tutorial using git as follows:

git clone git://github.com/savarin/python_for_ml.git

We will be reviewing the materials with the IPython Notebook. You should be able to type

jupyter notebook

in your terminal window and see the notebook panel load in your web browser.

Presentation Format

The tutorial will start with data manipulation using pandas - loading and cleaning data. We'll then use scikit-learn to make predictions. By the end of the session, we would have worked on the Kaggle Titanic data from start to finish, through a number of iterations in an increasing order of sophistication. Time-permitting, we’ll also have a brief discussion on cross-validation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].