This package is an extensions of OpenAI Gym, for Partially Observable Markov Decision Process.
- Python
- OpenAI Gym
- PyGame
Check out the latest code
git clone https://github.com/VanillaWhey/gym_pomdp.git
To use it as a package simply run:
cd gym_pomdp
pip install -e .
Import the library and gym as and call the environment:
import gym
import gym_pomdp
env = gym.make("Tag-v0")
All environments are parametrized as in the original papers. In order to get larger state space or more enemies, it's easy to change the board_size in the specific environment.
- Tag
- Tiger
- BattleShip
- Network
- RockSample
- Pocman
- T-Maze
- CatchTheKing (Metin2 Minigame)
General overview POMCP solver Point-based value iteration Similar work RL-LSTM
David Silver and Joel Veness made this possible by releasing the code POMCP open source. And @manuel for proof test.
- correct rendered orientation of Pocman [minor issue]
- add matching pairs environment