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
yoogottamk
Flatland
Commits
287f8109
Commit
287f8109
authored
5 years ago
by
Erik Nygren
Browse files
Options
Downloads
Patches
Plain Diff
testing that agents don't move in multi-speed setup
parent
0ecec475
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_multi_speed.py
+16
-19
16 additions, 19 deletions
tests/test_multi_speed.py
with
16 additions
and
19 deletions
tests/test_multi_speed.py
+
16
−
19
View file @
287f8109
...
...
@@ -9,11 +9,6 @@ np.random.seed(1)
# Training on simple small tasks is the best way to get familiar with the environment
#
env
=
RailEnv
(
width
=
50
,
height
=
50
,
rail_generator
=
complex_rail_generator
(
nr_start_goal
=
10
,
nr_extra
=
1
,
min_dist
=
8
,
max_dist
=
99999
,
seed
=
0
),
number_of_agents
=
5
)
class
RandomAgent
:
...
...
@@ -46,18 +41,19 @@ class RandomAgent:
return
# Initialize the agent with the parameters corresponding to the environment and observation_builder
agent
=
RandomAgent
(
218
,
4
)
n_trials
=
5
# Empty dictionary for all agent action
action_dict
=
dict
()
# Set all the different speeds
def
test_multi_speed_init
():
env
=
RailEnv
(
width
=
50
,
height
=
50
,
rail_generator
=
complex_rail_generator
(
nr_start_goal
=
10
,
nr_extra
=
1
,
min_dist
=
8
,
max_dist
=
99999
,
seed
=
0
),
number_of_agents
=
5
)
# Initialize the agent with the parameters corresponding to the environment and observation_builder
agent
=
RandomAgent
(
218
,
4
)
# Empty dictionary for all agent action
action_dict
=
dict
()
# Set all the different speeds
# Reset environment and get initial observations for all agents
env
.
reset
()
# Here you can also further enhance the provided observation by means of normalization
...
...
@@ -66,7 +62,7 @@ def test_multi_speed_init():
for
i_agent
in
range
(
env
.
get_num_agents
()):
env
.
agents
[
i_agent
].
speed_data
[
'
speed
'
]
=
1.
/
(
i_agent
+
1
)
old_pos
.
append
(
env
.
agents
[
i_agent
].
position
)
score
=
0
# Run episode
for
step
in
range
(
100
):
...
...
@@ -74,14 +70,15 @@ def test_multi_speed_init():
for
a
in
range
(
env
.
get_num_agents
()):
action
=
agent
.
act
(
0
)
action_dict
.
update
({
a
:
action
})
# Check that agent did not move inbetween its speed updates
# Check that agent did not move in between its speed updates
assert
old_pos
[
a
]
==
env
.
agents
[
a
].
position
# Environment step which returns the observations for all agents, their corresponding
# reward and whether their are done
_
,
_
,
_
,
_
=
env
.
step
(
action_dict
)
# Update old position
# Update old position
whenever an agent was allowed to move
for
i_agent
in
range
(
env
.
get_num_agents
()):
if
(
step
+
1
)
%
(
i_agent
+
1
)
==
0
:
print
(
step
,
i_agent
,
env
.
agents
[
a
].
position
)
...
...
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