Closed Sid-Bhatia-0 closed 3 years ago
Merging #91 (9722848) into master (ed6a1d4) will decrease coverage by
1.15%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## master #91 +/- ##
==========================================
- Coverage 78.32% 77.16% -1.16%
==========================================
Files 15 15
Lines 655 657 +2
==========================================
- Hits 513 507 -6
- Misses 142 150 +8
Impacted Files | Coverage Δ | |
---|---|---|
src/envs/dynamicobstacles.jl | 100.00% <100.00%> (ø) |
|
src/envs/sequentialrooms.jl | 99.18% <100.00%> (+<0.01%) |
:arrow_up: |
src/grid_world_base.jl | 66.00% <0.00%> (-12.00%) |
:arrow_down: |
src/abstract_grid_world.jl | 62.68% <0.00%> (-2.99%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update ed6a1d4...9722848. Read the comment docs.
SequentialRooms
: Create and use the big world on eachreset!
DynamicObstacles
: Useagent_start_pos
instead ofget_agent_pos(env)
to check while placing obstacles. This is because the agent pos is reset in the end ofreset!
method, and soget_agent_pos(env)
would return the agent pos from the previous run.RLBase
testset so that now there is only one testset corresponding to each environment.