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

https://github.com/rapsealk/gym-navops

OpenAI Gym interface for NavOps environment.
https://github.com/rapsealk/gym-navops

gym ml-agents unity

Last synced: 3 months ago
JSON representation

OpenAI Gym interface for NavOps environment.

Awesome Lists containing this project

README

          

# gym-navops
![GitHub Actions CI](https://github.com/rapsealk/gym-navops/workflows/Lint/badge.svg)
![Python 3.8](https://img.shields.io/badge/Python-3.8-blue.svg?logo=python)

```python
import gym
import gym_navops

env = gym.make('NavOps-v0')
env = gym.make('NavOpsDiscrete-v0')
env = gym.make('NavOpsMultiDiscrete-v0')

# For more details..
env = gym.make(
'NavOps[[Multi]Discrete]-v0',
worker_id=0,
base_port=None,
seed=0,
no_graphics=False,
mock=False
)
```