October 2019 release
tkoeppe
released this
07 Oct 17:44
·
95 commits
to master
since this release
New Levels:
-
Psychlab.
- contributed/psychlab/cued_temporal_production
- contributed/psychlab/memory_suite_01/arbitrary_visuomotor_mapping_train
- contributed/psychlab/memory_suite_01/arbitrary_visuomotor_mapping_holdout_interpolate
- contributed/psychlab/memory_suite_01/arbitrary_visuomotor_mapping_holdout_extrapolate
- contributed/psychlab/memory_suite_01/change_detection_train
- contributed/psychlab/memory_suite_01/change_detection_holdout_interpolate
- contributed/psychlab/memory_suite_01/change_detection_holdout_extrapolate
- contributed/psychlab/memory_suite_01/continuous_recognition_train
- contributed/psychlab/memory_suite_01/continuous_recognition_holdout_interpolate
- contributed/psychlab/memory_suite_01/continuous_recognition_holdout_extrapolate
- contributed/psychlab/memory_suite_01/what_then_where_train
- contributed/psychlab/memory_suite_01/what_then_where_holdout_interpolate
- contributed/psychlab/ready_set_go
- contributed/psychlab/temporal_bisection
- contributed/psychlab/temporal_discrimination
- contributed/psychlab/visuospatial_suite/memory_guided_saccade
- contributed/psychlab/visuospatial_suite/odd_one_out
- contributed/psychlab/visuospatial_suite/pathfinder
- contributed/psychlab/visuospatial_suite/pursuit
- contributed/psychlab/visuospatial_suite/visual_match
- contributed/psychlab/visuospatial_suite/visually_guided_antisaccade
- contributed/psychlab/visuospatial_suite/visually_guided_prosaccade
Minor Improvements:
- The
game
demo executable can now print observations at each step.
EnvCApi Changes:
- The meaning of major and minor versions and the resulting notions of stability are clarified. The new API version is 1.3 (up from 1.2).
- The EnvCApi
act
function is now deprecated in favour of two finer-grained functions: A call toact
should be replaced by a callact_discrete
to set discrete actions, followed by an optional call toact_continuous
to set continuous actions. (DeepMind Lab does not use continuous actions.) - New support for "text actions", which can be set with the new
act_text
API function. (DeepMind Lab does not use text actions.)
Bug Fixes:
-
Observation 'DEBUG.CAMERA_INTERLEAVED.TOP_DOWN' is now correct for levels
dmlab30/explore_object_rewards_{few,many}
.An error is now raised if there is not enough space to place every possible room (regardless of whether the random generation actually produces a room of excessive size) and if a non-zero number of rooms was requested.
The affected levels have been updated and will generate layouts similar to before, but the whole maze is offset by 100 units, and object placements will change.
-
Fix top-down camera for language levels.
-
Correct typo in bot
Leonis
, skill level 1, based on OpenArena's bot codegargoyle_c.c
. -
Tensor scalar operations using arrays now work similar to the way they do with single values.