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

https://github.com/arianahejazyan/rl

Simple implementations of RL algorithms
https://github.com/arianahejazyan/rl

algorithms artificial-intelligence deep-reinforcement-learning openai-gym python reinforcement-learning reinforcement-learning-algorithms rl

Last synced: 3 months ago
JSON representation

Simple implementations of RL algorithms

Awesome Lists containing this project

README

          

## Getting Started

Clone the repository:
```bash
git clone https://github.com/arianahejazyan/RL.git
```
Create and activate a virtual environment:
```bash
python3 -m venv venv
```
Install dependencies:
```bash
pip install -r requirements.txt
```
---

| **Algorithm** | **Type** | **Environment** | **Environment GIF** |
| ------------- |--------- | --------------- | ------------------- |
| [Policy Iteration](notebooks/dynamic_programming/policy_iteration.ipynb) | Value Based | **Taxi-v3**: Pick up and drop off passengers at the right location in a 5×5 grid world. | Policy Iteration |
| [On-Policy First-Visit MC Control](notebooks/monte_carlo/on_policy_first_visit_mc_control.ipynb) | Monte Carlo | **FrozenLake-v1**: A grid-based environment where an elf must reach the present without falling into holes. | On-Policy First-Visit MC Control |