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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
elrichgro
Flatland
Commits
16639f99
Commit
16639f99
authored
5 years ago
by
spiglerg
Browse files
Options
Downloads
Patches
Plain Diff
split examples
parent
dfd2e4de
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
examples/simple_example_1.py
+33
-0
33 additions, 0 deletions
examples/simple_example_1.py
examples/simple_example_2.py
+43
-0
43 additions, 0 deletions
examples/simple_example_2.py
examples/simple_example_3.py
+53
-0
53 additions, 0 deletions
examples/simple_example_3.py
with
129 additions
and
0 deletions
examples/simple_example_1.py
0 → 100644
+
33
−
0
View file @
16639f99
import
random
from
flatland.envs.generators
import
random_rail_generator
,
rail_from_manual_specifications_generator
from
flatland.envs.rail_env
import
RailEnv
from
flatland.envs.observations
import
TreeObsForRailEnv
from
flatland.utils.rendertools
import
RenderTool
import
numpy
as
np
# Example generate a rail given a manual specification,
# a map of tuples (cell_type, rotation)
specs
=
[[(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
)],
[(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
7
,
0
),
(
0
,
0
)],
[(
7
,
270
),
(
1
,
90
),
(
1
,
90
),
(
1
,
90
),
(
2
,
90
),
(
7
,
90
)],
[(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
),
(
0
,
0
)]]
# CURVED RAIL + DEAD-ENDS TEST
# specs = [[(0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0)],
# [(7, 270), (1, 90), (1, 90), (8, 90), (0, 0), (0, 0)],
# [(0, 0), (7, 270),(1, 90), (8, 180), (0, 00), (0, 0)],
# [(0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0)]]
env
=
RailEnv
(
width
=
6
,
height
=
4
,
rail_generator
=
rail_from_manual_specifications_generator
(
specs
),
number_of_agents
=
1
,
obs_builder_object
=
TreeObsForRailEnv
(
max_depth
=
2
))
env
.
reset
()
env_renderer
=
RenderTool
(
env
,
gl
=
"
QT
"
)
env_renderer
.
renderEnv
(
show
=
True
)
input
(
"
Press Enter to continue...
"
)
This diff is collapsed.
Click to expand it.
examples/simple_example_2.py
0 → 100644
+
43
−
0
View file @
16639f99
import
random
from
flatland.envs.generators
import
random_rail_generator
,
rail_from_list_of_saved_GridTransitionMap_generator
from
flatland.envs.rail_env
import
RailEnv
from
flatland.envs.observations
import
TreeObsForRailEnv
from
flatland.utils.rendertools
import
RenderTool
import
numpy
as
np
random
.
seed
(
100
)
np
.
random
.
seed
(
100
)
# Relative weights of each cell type to be used by the random rail generators.
transition_probability
=
[
1.0
,
# empty cell - Case 0
1.0
,
# Case 1 - straight
1.0
,
# Case 2 - simple switch
0.3
,
# Case 3 - diamond drossing
0.5
,
# Case 4 - single slip
0.5
,
# Case 5 - double slip
0.2
,
# Case 6 - symmetrical
0.0
,
# Case 7 - dead end
0.2
,
# Case 8 - turn left
0.2
,
# Case 9 - turn right
1.0
]
# Case 10 - mirrored switch
# Example generate a random rail
env
=
RailEnv
(
width
=
10
,
height
=
10
,
rail_generator
=
random_rail_generator
(
cell_type_relative_proportion
=
transition_probability
),
number_of_agents
=
3
,
obs_builder_object
=
TreeObsForRailEnv
(
max_depth
=
2
))
# env = RailEnv(width=10,
# height=10,
# rail_generator=rail_from_list_of_saved_GridTransitionMap_generator(['examples/sample_10_10_rail.npy']),
# number_of_agents=3,
# obs_builder_object=TreeObsForRailEnv(max_depth=2))
env
.
reset
()
env_renderer
=
RenderTool
(
env
,
gl
=
"
QT
"
)
env_renderer
.
renderEnv
(
show
=
True
)
input
(
"
Press Enter to continue...
"
)
This diff is collapsed.
Click to expand it.
examples/
temporary
_example.py
→
examples/
simple
_example
_3
.py
+
53
−
0
View file @
16639f99
import
random
from
flatland.envs.generators
import
random_rail_generator
from
flatland.envs.generators
import
random_rail_generator
,
random_rail_generator
from
flatland.envs.rail_env
import
RailEnv
from
flatland.utils.rendertools
import
RenderTool
import
numpy
as
np
random
.
seed
(
0
)
np
.
random
.
seed
(
0
)
random
.
seed
(
10
0
)
np
.
random
.
seed
(
10
0
)
transition_probability
=
[
1.0
,
# empty cell - Case 0
1.0
,
# Case 1 - straight
1.0
,
# Case 2 - simple switch
0.3
,
# Case 3 - diamond drossing
0.5
,
# Case 4 - single slip
0.5
,
# Case 5 - double slip
0.2
,
# Case 6 - symmetrical
0.0
,
# Case 7 - dead end
0.2
,
# Case 8 - turn left
0.2
,
# Case 9 - turn right
1.0
]
# Case 10 - mirrored switch
"""
# Example generate a random rail
env = RailEnv(width=20,
height=20,
rail_generator=random_rail_generator(cell_type_relative_proportion=transition_probability),
number_of_agents=10)
# env = RailEnv(width=20,
# height=20,
# rail_generator=rail_from_list_of_saved_GridTransitionMap_generator([
'
examples/sample_10_10_rail.npy
'
]),
# number_of_agents=10)
env.reset()
env_renderer = RenderTool(env)
env_renderer.renderEnv(show=True)
"""
"""
# Example generate a rail given a manual specification,
# a map of tuples (cell_type, rotation)
specs = [[(0, 0), (0, 0), (0, 0), (0, 0), (7, 0), (0, 0)],
[(7, 270), (1, 90), (1, 90), (1, 90), (2, 90), (7, 90)]]
env = RailEnv(width=6,
height=2,
rail_generator=rail_from_manual_specifications_generator(specs),
number_of_agents=1,
obs_builder_object=TreeObsForRailEnv(max_depth=2))
handle = env.get_agent_handles()
env.agents_position[0] = [1, 4]
env.agents_target[0] = [1, 1]
env.agents_direction[0] = 1
# TODO: watch out: if these variables are overridden, the obs_builder object has to be reset, too!
env.obs_builder.reset()
"""
"""
# INFINITE-LOOP TEST
specs = [[(0, 0), (0, 0), (0, 0), (0, 0), (7, 0), (0, 0)],
[(7, 270), (1, 90), (1, 90), (2, 270), (2, 0), (0, 0)],
[(0, 0), (0, 0), (0, 0), (2, 180), (2, 90), (7, 90)],
[(0, 0), (0, 0), (0, 0), (7, 180), (0, 0), (0, 0)]]
# CURVED RAIL + DEAD-ENDS TEST
specs = [[(0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0)],
[(7, 270), (1, 90), (1, 90), (8, 90), (0, 0), (0, 0)],
[(0, 0), (7, 270),(1, 90), (8, 180), (0, 00), (0, 0)]]
env = RailEnv(width=6,
height=4,
rail_generator=rail_from_manual_specifications_generator(specs),
number_of_agents=1,
obs_builder_object=TreeObsForRailEnv(max_depth=2))
handle = env.get_agent_handles()
env.agents_position[0] = [1, 3]
env.agents_target[0] = [1, 1]
env.agents_direction[0] = 1
# TODO: watch out: if these variables are overridden, the obs_builder object has to be reset, too!
env.obs_builder.reset()
"""
env
=
RailEnv
(
width
=
7
,
height
=
7
,
rail_generator
=
random_rail_generator
(
cell_type_relative_proportion
=
transition_probability
),
# rail_generator=complex_rail_generator(nr_start_goal=2),
rail_generator
=
random_rail_generator
(),
number_of_agents
=
2
)
# Print the distance map of each cell to the target of the first agent
...
...
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