Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
baselines
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
Flatland
baselines
Merge requests
!7
remove unused observation and prediction files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
remove unused observation and prediction files
2-cleanup-baselines
into
master
Overview
2
Commits
4
Pipelines
0
Changes
25
1 unresolved thread
Hide all comments
Merged
Christian Baumberger
requested to merge
2-cleanup-baselines
into
master
5 years ago
Overview
2
Commits
4
Pipelines
0
Changes
12
1 unresolved thread
Hide all comments
Expand
Closes
#2 (closed)
0
0
Merge request reports
Compare
version 2
version 3
aafa76af
5 years ago
version 2
43686bfe
5 years ago
version 1
81513d7b
5 years ago
master (base)
and
version 3
latest version
c7d0a784
4 commits,
5 years ago
version 3
aafa76af
3 commits,
5 years ago
version 2
43686bfe
2 commits,
5 years ago
version 1
81513d7b
1 commit,
5 years ago
Show latest version
12 files
+
25
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
scoring/score_test.py
+
2
−
2
Options
@@ -28,8 +28,8 @@ test_dones = []
sequential_agent_test
=
False
# Load your agent
agent
=
Agent
(
state_size
,
action_size
,
0
)
agent
.
qnetwork_local
.
load_state_dict
(
torch
.
load
(
'
../torch_training/Nets/avoid_checkpoint
600
00.pth
'
))
agent
=
Agent
(
state_size
,
action_size
)
agent
.
qnetwork_local
.
load_state_dict
(
torch
.
load
(
'
../torch_training/Nets/avoid_checkpoint
5
00.pth
'
))
# Load the necessary Observation Builder and Predictor
predictor
=
ShortestPathPredictorForRailEnv
()
Loading