Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 1.45 KB

README.md

File metadata and controls

20 lines (11 loc) · 1.45 KB

Heya

Heya (sumo) from the Japanese word for "room" (部屋)

Heya is the first step in a long roadmap described in the main project wiki.

The agent controls the movement of a robot in a grid world.

Some tiles of the grid are walkable, and others lead to the robot falling into the water, like the frozen lake project. Additionally, the movement direction of the agent is uncertain and only partially depends on the chosen direction. The robot is rewarded for finding a walkable path to a goal tile.

This project mix the result of the frozen lake project and the walker project.

  • The frozen lake project train in a virtual environment an agent using reinforcement learning, the result is a policy implementing using a neural network that take decisitions using the envoronment observations.
  • The walker project create a lego mindstorms robot that can move in an onmidirectional way, and provide a set of observations to the agent.

The goal of the robot is find the path and to transmit them to an external observer.

The only information that the robot can use to achieve this mission is through its onboard sensors.

In this first stage, the robot doesn't have any energy restrictions.