PyGame-Learning-Environment icon indicating copy to clipboard operation
PyGame-Learning-Environment copied to clipboard

PyGame Learning Environment (PLE) -- Reinforcement Learning Environment in Python.

Results 22 PyGame-Learning-Environment issues
Sort by recently updated
recently updated
newest added

This should be a simple patch to apply very basic animation to the flappybird pitch while playing. This is completely aesthetic and has no bearing on the performance or function...

when I installed PLE, I want to import ple but got this error >>> import ple pygame 1.9.4 Hello from the pygame community. https://www.pygame.org/contribute.html couldn't import doomish Couldn't import doom

from ple.games.flappybird import FlappyBird from ple import PLE game = FlappyBird() p = PLE(game, fps=30, display_screen=True) agent = myAgentHere(allowed_actions=p.getActionSet()) p.init() reward = 0.0 for i in range(nb_frames): if p.game_over(): p.reset_game()...

MacBook Air --MAC OS 10.14.6 Python3.73 64bit Wrappered the environment: `#Code based on https://github.com/KibaAmor/rl-code/blob/master/demos/dqn_flappybird/flappybird_wrapper.py import numpy as np from gym import Env, spaces from ple import PLE from ple.games import...

I could not see any windows installation, is it suitable for windows? Thanks

Change FPS given to game in error message from game.allowed_fps as self.fps.

Added game state for the MosterKong game. The state contains: - player x and y position - coins x and y position - enemies x and y position - allies...

Add the Chrome T-Rex rush game to PLE. It should be a fun game for learning & playing. :smile: Here's a random agent playing the game: ![t-rex-with-random-agent](https://user-images.githubusercontent.com/552990/81060770-b86d4a00-8f05-11ea-8087-a3bca372a3df.gif) ## Game Spec...