a4718ecf1b2a656eac2c7cf952f42ad89e410622,PyPi/environments/grid_world.py,GridWorldGenerator,__init__,#GridWorldGenerator#Any#,124
Before Change
self._generate(grid_map)
// MDP spaces
self.observation_space = spaces.MultiDiscrete(
(spaces.Discrete(self._height), spaces.Discrete(self._width)))
self.action_space = spaces.Discrete(4)
// MDP parameters
After Change
self._generate(grid_map)
// MDP spaces
self.observation_space = spaces.Discrete([self._height, self._width])
self.action_space = spaces.Discrete(4)
// MDP parameters
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: AIRLab-POLIMI/mushroom
Commit Name: a4718ecf1b2a656eac2c7cf952f42ad89e410622
Time: 2017-07-22
Author: carlo.deramo@gmail.com
File Name: PyPi/environments/grid_world.py
Class Name: GridWorldGenerator
Method Name: __init__
Project Name: AIRLab-POLIMI/mushroom
Commit Name: a4718ecf1b2a656eac2c7cf952f42ad89e410622
Time: 2017-07-22
Author: carlo.deramo@gmail.com
File Name: PyPi/environments/grid_world.py
Class Name: GridWorldVanHasselt
Method Name: __init__
Project Name: AIRLab-POLIMI/mushroom
Commit Name: a4718ecf1b2a656eac2c7cf952f42ad89e410622
Time: 2017-07-22
Author: carlo.deramo@gmail.com
File Name: PyPi/environments/grid_world.py
Class Name: GridWorld
Method Name: __init__