Skip to content

Commit

Permalink
update REDME
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamjha97 committed Nov 10, 2018
1 parent b4d7ba2 commit d99af38
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# A simple Reinforcement Learning library
# RLkit: A simple Reinforcement Learning library

This project is still a work in progress. More algorithms and detailed documentation coming soon :)

Expand All @@ -7,6 +7,8 @@ Currently supported agents-
1. Random agent
2. REINFORCE (Policy Gradients)
3. DQN
4. DQN with baseline
5. Actor-Critic

See examples for details on how to use the library.

Expand All @@ -15,4 +17,16 @@ Requirements-
tensorflow==1.11.0
gym==0.10.8
numpy==1.15.4
```
```

## New in v0.2
- Added DQN and DQN with baseline agents
- Added ActorCritic agent
- Added support for various activation functions


## Upcoming
- Duelling DQN
- Support for logging and plotting
- Support for adding seeds
- Support for custom environments
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='RLkit',
version='0.1',
version='0.2',
description='A simple RL library.',
url='http://github.com/shubhamjha97/RLkit',
author='Shubham Jha',
Expand Down

0 comments on commit d99af38

Please sign in to comment.