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

https://github.com/noblessecoder/reinforcei

Implementation of various Reinforcement Learning Agents
https://github.com/noblessecoder/reinforcei

machine-learning openai-gym python3 reinforcement-learning reinforcement-learning-agent reinforcement-learning-algorithms

Last synced: 3 months ago
JSON representation

Implementation of various Reinforcement Learning Agents

Awesome Lists containing this project

README

        

# Reinforcei
The repository contains implementation of various Reinforcement Learning algorithms.

### Prerequisite Installations

1. [Install Gym](https://gym.openai.com/docs/)
2. [Install gym-karmedbandits](https://github.com/NoblesseCoder/gym-karmedbandits)

### Basic Agents

1. [Random agent ](./agents/tabular/agent.py)
2. [Human agent](./agents/tabular/human_agent.py)
3. [ε-greedy agent](./agents/tabular/epsilon_greedy_agent.py) [(Demo)](./demos/stationary_MAB_problem.py)
4. [UCB greedy agent](./agents/tabular/upper_confidence_bound_agent.py) [(Demo)](./demos/stationary_MAB_problem.py)

### References

[1] [Reinforcement Learning, Second Edition: An Introduction)](https://mitpress.mit.edu/books/reinforcement-learning-second-edition)