Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/billy0402/python-machine-learning

A learning project from NTUB machine learning course.
https://github.com/billy0402/python-machine-learning

ai course jupyter-notebook python scikit-learn tensorflow

Last synced: about 1 month ago
JSON representation

A learning project from NTUB machine learning course.

Awesome Lists containing this project

README

        

# python-machine-learning

## environment
- [macOS 10.15.4](https://www.apple.com/tw/macos/catalina/)
- [PyCharm 2019.3.4](https://www.jetbrains.com/pycharm/)
- [Python 3.7.6](https://www.python.org/)
- [scikit-learn 0.22.2](https://github.com/scikit-learn/scikit-learn)
- [TensorFlow 2.1.0](https://www.tensorflow.org/)

## [Pipenv](https://github.com/pypa/pipenv)
```shell
$ pipenv install
```

## virtual env
```shell
$ python -m venv .venv

# macOS
$ source ./.venv/bin/activate
# Winodws
$ .\.venv\Scripts\activate.bat

$ deactivate
```

### requirements.txt
```shell
$ pip freeze > requirements.txt
$ pip install -r requirements.txt
```