WebSocket server that exposes an API to train AI agents on OpenAI Gym and gym-api like Environments such as Gym Retro or Unity ML-Agents, this last one with the help of gym wrapper
Gymie can be installed using:
$ pip install gymie
or by cloning the repo and pip-installing in editable mode from the folder:
$ git clone https://github.com/jscriptcoder/Gymie-Server.git
Cloning into 'Gymie-Server'...
...
$ cd Gymie-Server/
pip install -e .
Obtaining file:///path/to/Gymie-Server
...
Successfully installed gymie
You can start the server from the command line:
$ python gymie --host 0.0.0.0 --port 5000
(84581) wsgi starting up on http://0.0.0.0:5000
or programmatically:
import gymie
gymie.start('localhost', 9000)