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

https://github.com/lebellig/dueling-network-architectures


https://github.com/lebellig/dueling-network-architectures

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# Dueling Network Architectures for Reinforcement Learning
## Project structure

The two main experiments made are located in the `notebooks/` folder (for dueling network architectures and single stream model for Q-learning) and you can watch the videos of the spaceship landing on the moon in the `videos/`.
All models and their blocks are located in the `src/dueling_archs/models` folder and the corresponding losses in the `src/dueling_archs/losses`.

https://user-images.githubusercontent.com/47056792/151573866-5c0ea2e1-12bc-40e5-b675-65967e84a150.mp4

Run tests with *pytest* from `test/`.
## Installation

1. Clone this repository:

```bash
git clone https://github.com/gle-bellier/dueling-network-architectures.git

```

2. Install requirements:

```bash
cd expressive-perf
pip install -r requirements.txt

```

3. Install package locally:
```bash
pip install -e .
```