Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flatland
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pranjal_dhole
Flatland
Commits
2eace8df
Commit
2eace8df
authored
5 years ago
by
Erik Nygren
Browse files
Options
Downloads
Patches
Plain Diff
Fixing comment bu mohanty, introducing enum
parent
91a67e87
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/introduction_flatland_2_1.py
+5
-3
5 additions, 3 deletions
examples/introduction_flatland_2_1.py
with
5 additions
and
3 deletions
examples/introduction_flatland_2_1.py
+
5
−
3
View file @
2eace8df
...
...
@@ -6,6 +6,7 @@ import numpy as np
from
flatland.envs.observations
import
GlobalObsForRailEnv
# First of all we import the Flatland rail environment
from
flatland.envs.rail_env
import
RailEnv
from
flatland.envs.rail_env
import
RailEnvActions
from
flatland.envs.rail_generators
import
sparse_rail_generator
from
flatland.envs.schedule_generators
import
sparse_schedule_generator
# We also include a renderer because we want to visualize what is going on in the environment
...
...
@@ -27,8 +28,8 @@ from flatland.utils.rendertools import RenderTool, AgentRenderVariant
# The railway infrastructure can be build using any of the provided generators in env/rail_generators.py
# Here we use the sparse_rail_generator with the following parameters
width
=
16
*
7
# With of map
height
=
9
*
7
# Height of map
width
=
16
*
7
# With of map
height
=
9
*
7
# Height of map
nr_trains
=
20
# Number of trains that have an assigned task in the env
cities_in_map
=
20
# Number of cities where agents can start or end
seed
=
14
# Random seed
...
...
@@ -109,7 +110,8 @@ class RandomAgent:
:param state: input is the observation of the agent
:return: returns an action
"""
return
np
.
random
.
choice
([
1
,
2
,
3
,
4
])
# [Left, Forward, Right, Stop]
return
np
.
random
.
choice
([
RailEnvActions
.
MOVE_FORWARD
,
RailEnvActions
.
MOVE_RIGHT
,
RailEnvActions
.
MOVE_LEFT
,
RailEnvActions
.
STOP_MOVING
])
def
step
(
self
,
memories
):
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment