Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/billy0402/python-machine-learning
- Owner: billy0402
- Created: 2019-12-04T19:01:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-03T14:39:47.000Z (10 months ago)
- Last Synced: 2024-11-14T09:16:14.685Z (3 months ago)
- Topics: ai, course, jupyter-notebook, python, scikit-learn, tensorflow
- Language: PureBasic
- Homepage:
- Size: 36.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```