Skip to content

Instantly share code, notes, and snippets.

@monteirobrena
Last active May 5, 2018 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monteirobrena/22af505697210f60bde07dd5a40bf27a to your computer and use it in GitHub Desktop.
Save monteirobrena/22af505697210f60bde07dd5a40bf27a to your computer and use it in GitHub Desktop.
Machine Learning

Linear Regression

Naive Bayes

Decisions Trees

Logistic Regression

Support Vector Machines

Neural Networks

Kernel Trick

Clustering

Mean Absolute Error

Mean Squared Error

Batch

Mini-batch

Stochastic

# Mac OS
# Download and install Python:
# https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.9.pkg
# Upgrade pip:
$ python3 -m pip install --upgrade pip
# Install dependencies:
$ python3 -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
# Install Jupyter:
$ python3 -m pip install jupyter
# Edit the bash profile:
$ vim ~/.bash_profile
# Add this line inside ~/.bash_profile:
export PATH=$PATH:~/.local/bin
# Update the source:
$ source ~/.bash_profile
# Open Jupyter:
$ jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment