https://github.com/hsm207/rl
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hsm207/rl
- Owner: hsm207
- Created: 2021-01-28T11:48:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-26T09:29:43.000Z (over 4 years ago)
- Last Synced: 2025-01-14T11:16:24.961Z (9 months ago)
- Language: Jupyter Notebook
- Size: 54.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
This repository contains my notes on reinforcement learning
# Usage
## CPU
1. Open project inside the container
2. Run:
```bash
xvfb-run -s "-screen 0 1400x900x24" bash
jupyter lab --ip 0.0.0.0 --no-browser
```## GPU
Execute the following in the project's root directory:
```bash
docker build -t rl:gpu -f gpu.Dockerfile . && \
docker run -it \
--gpus all \
-u vscode \
-p 8888:8888 \
-v $(pwd):/workspaces/rl \
-w /workspaces/rl \
--rm \
--name rl \
rl:gpu jupyter lab --ip 0.0.0.0 --no-browser
```