You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Create new learning environmente=Environment() -- the size of maze field is 9x9-- Reset current environment (clear movment history)e:reset()
-- Move agent in the mazee:move(direction)
-- get agent's visual information about walle:wall() -- => [0; 0; 1; 1]-- get the coordinate where the agent currently existse.current_coordinate-- => { 0, 1 }-- get the novelty that is given for last movemente.novelty-- => 0 or 10