https://github.com/luk4z7/ml
Machine Learning Udacity
https://github.com/luk4z7/ml
data-science jupyter jupyter-notebook machine-learning ml python udacity
Last synced: about 2 months ago
JSON representation
Machine Learning Udacity
- Host: GitHub
- URL: https://github.com/luk4z7/ml
- Owner: luk4z7
- License: bsd-3-clause
- Created: 2017-10-25T23:26:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T15:40:29.000Z (almost 6 years ago)
- Last Synced: 2025-01-20T10:48:42.240Z (3 months ago)
- Topics: data-science, jupyter, jupyter-notebook, machine-learning, ml, python, udacity
- Language: Jupyter Notebook
- Homepage:
- Size: 18.6 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Machine Learning
## Getting-started
## Install
### prerequisites
- python 2
- numpy
- pandas
- sklearn
- matplotlib
- ipython
- scikit-image
- tensorflow
- keras
- h5py
- skimage
- jupyter
- Pillowclone the project
```bash
git clone https://github.com/luk4z7/ml
```Install dependencies
```bash
cd mlpip install -r requirements.txt --user
```Execute notebook jupyter
```bash
jupyter notebook --allow-root
```## docker
```bash
docker pull jupyter/datascience-notebook
``````bash
cd mldocker run -d --rm -p 10000:8888 -v "$PWD":/home/jovyan/work jupyter/datascience-notebook
```