Metadata-Version: 2.1
Name: gym-algorithmic
Version: 0.0.1
Summary: Algorithmic Environments from OpenAI Gym
Home-page: https://github.com/Rohan138/gym-algorithmic
Author: Rohan Potdar
Author-email: rohanpotdar138@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6, <3.10
Description-Content-Type: text/markdown
Requires-Dist: gym (>=0.19.0)

# gym-algorithmic

## Environments

[Algorithmic Environments](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/algorithmic.md)  

[Copy-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/copy.md)  
[DuplicatedInput-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/duplicated_input.md)  
[RepeatCopy-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/repeat_copy.md)  
[Reverse-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/reverse.md)  
[ReversedAddition-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/reversed_addition.md)  
[ReversedAddition3-v0](https://github.com/Rohan138/gym-algorithmic/blob/main/docs/reversed_addition.md)  

Documentation credit: https://github.com/openai/gym/pull/2334

## Usage
```
$ pip install gym-algorithmic

import gym
import gym_algorithmic

gym.make("Copy-v0")
```

## Citation
This repository contains the algorithmic environments previously present in OpenAI Gym prior to Gym version 0.19.0.
These environments were introduced in the paper [Learning Simple Algorithms from Examples](https://arxiv.org/abs/1511.07275)

```
@inproceedings{Zaremba2016LearningSA,
  title={Learning Simple Algorithms from Examples},
  author={Wojciech Zaremba and Tomas Mikolov and Armand Joulin and R. Fergus},
  booktitle={ICML},
  year={2016}
}
```


