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

https://github.com/ruddra/reinforcement-learning-examples

Sample codes for different reinforcement learning methods.
https://github.com/ruddra/reinforcement-learning-examples

ai python reinforcement-learning

Last synced: 3 months ago
JSON representation

Sample codes for different reinforcement learning methods.

Awesome Lists containing this project

README

        

# Reinforcement Learning Examples

This repository contains codes for different reinforcement learning techniques to solve problems. Each folder in this repository contains a different RL technique.

## Algorithms

### Q-Learning

1. [Shortest path in undirected graph](/q-learning/shortest_path.ipynb)
2. [Cart Pole Balancing using OpenAI Gym](/q-learning/openai-cart-pole.ipynb)

### SARSA

1. [Shortest path in undirected graph](/SARSA/shortest_path.ipynb)
2. [Frozen Lake using OpenAI Gym](/SARSA/openai_frozen_lake.ipynb)

## Usage

1. First clone this project.
2. Create a virtual environment and install the dependenices using `pip install -r requirements.txt`.
3. Go to any folder and open the jupyter notebook file.

## License

MIT

## Contribution

Feel free to contribute to this project. Feel free to create a PR.