Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nepfaff/ml_playground
https://github.com/nepfaff/ml_playground
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nepfaff/ml_playground
- Owner: nepfaff
- Created: 2022-05-08T20:13:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T17:36:03.000Z (9 months ago)
- Last Synced: 2024-11-19T03:19:55.629Z (2 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 19.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ml_playground
## Installation
This repo uses Poetry for dependency management. To set up this project, first install
[Poetry](https://python-poetry.org/docs/#installation) and, make sure to have Python3.10
installed on your system.Then, configure poetry to set up a virtual environment that uses Python 3.10:
```
poetry env use python3.10
```Next, install all the required dependencies to the virtual environment with the
following command:
```bash
poetry install --no-root
```Activate the environment:
```bash
poetry shell
```