Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peter-gy/iml-pa3
https://github.com/peter-gy/iml-pa3
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/peter-gy/iml-pa3
- Owner: peter-gy
- Created: 2023-11-23T14:30:54.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-23T15:00:28.000Z (12 months ago)
- Last Synced: 2024-04-18T14:08:54.256Z (7 months ago)
- Language: Jupyter Notebook
- Size: 198 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/peter-gy/iml-pa3/HEAD)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/peter-gy/iml-pa3)# Steps To Reproduce
## Via Binder
> Zero local setup, minutes to wait though for Binder to start
You can run the notebook with zero local setup via binder: [https://mybinder.org/v2/gh/peter-gy/iml-pa3/HEAD](https://mybinder.org/v2/gh/peter-gy/iml-pa3/HEAD)
## Via GitHub Codespaces
> Dev Container, remotely
You can run and tweak the notebook with zero local setup via GitHub Codespaces: [https://codespaces.new/peter-gy/iml-pa3](https://codespaces.new/peter-gy/iml-pa3)
## Via VS Code Dev Container
> Dev Container, locally
1. Install [VS Code](https://code.visualstudio.com/).
2. Install the [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension.
3. Install Docker Desktop following the [docs](https://docs.docker.com/get-docker/).
4. Clone this repository.
5. Open this folder in VS Code.
6. Click the button in the bottom left corner and select "Reopen in Container".
7. Wait for the container to build.
8. Open the terminal in VS Code and run `jupyter notebook --allow-root`
9. Open the notebook in the browser.## Via Local Setup
1. Install Python 3.10+
2. Install the dependencies and start the notebook from this folder:```bash
pip install jupyter notebook jupyterlab matplotlib scipy numpy pandas altair tqdm vl-convert-python scikit-learn
jupyter notebook
```