Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/97k/machinelearning_is_fun
This repo contains all the projects and python notebooks that I am doing to dive deeper in ML.(From Data Preprocessing to more complex models)
https://github.com/97k/machinelearning_is_fun
100daysofcode jupyter-notebook machinelearning-python
Last synced: about 1 month ago
JSON representation
This repo contains all the projects and python notebooks that I am doing to dive deeper in ML.(From Data Preprocessing to more complex models)
- Host: GitHub
- URL: https://github.com/97k/machinelearning_is_fun
- Owner: 97k
- Created: 2018-05-28T11:53:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-20T12:23:36.000Z (over 6 years ago)
- Last Synced: 2024-11-11T08:24:45.005Z (3 months ago)
- Topics: 100daysofcode, jupyter-notebook, machinelearning-python
- Language: HTML
- Homepage:
- Size: 114 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MachineLearning_is_FUN
This repo contains all the projects and python notebooks that I am doing and studying to dive deeper in ML.(From Data Preprocessing to more complex models). My study resources include online-courses form Udemy, Udacity and Coursera.
All the python notebooks will be about some concepts that I've studied and then their implementatin and also there gonna be some live projects that I'll be scribbling here.## Requirements
I am coding into the jupyter notebooks. In order to run the ipython notebooks you can do two things
* Install jupyter-notebook on your machine
* You can install in by using a python distribution like anaconda(Jupyter comes preinstalled in anaconda)
* You can install jupyter notebook to your machine, follow this [link](https://jupyter-notebook.readthedocs.io/en/stable/ "Jupyter Docs")
* Convert the python notebook to python file
>
From the command line you can convert a notebook to python with this command:ipython nbconvert --to python .ipynb
You may have to install the python mistune package:sudo pip install mistune
or follow this [stack overflow sol](https://stackoverflow.com/questions/35545402/how-to-run-an-ipynb-jupyter-notebook-from-terminal)