marcusos / 100-Days-Of-ML-Code

100 Days of ML Coding

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

100-Days-Of-ML-Code

100 Days of Machine Learning Coding as proposed by Siraj Rava, That means coding and/or studying machine learning for at least an hour everyday for the next 100 days. I will do Inphograpichs inspired by Avik Jain, but my inovation will do the explanation and the Inphograpichs in portuguese language(my native language) because of the lack of good ML content in portuguese.

Day 0

The Day 0 purpose is to have a ML and Data Science python environment

Install Conda https://conda.io/docs/installation.html

Cheatsheet https://conda.io/docs/_downloads/conda-cheatsheet.pdf

//OSX or Linux
conda create -n pyml python=3.5
source activate pyml
conda install pandas matplotlib jupyter notebook scipy scikit-learn nltk nb_conda 
//optional for deep learning
conda install -c conda-forge tensorflow keras
pip install gym

//Windows
conda create -n pyml python=3.5
activate pyml
conda install pandas matplotlib jupyter notebook scipy scikit-learn nltk nb_conda
//optional for deep learning
conda install -c conda-forge tensorflow keras

About

100 Days of ML Coding

License:Apache License 2.0