mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-11-08 22:21:08 +00:00
Add short description to all environments
This commit is contained in:
parent
1030e34d96
commit
988f51fd3f
8 changed files with 31 additions and 2 deletions
|
@ -108,8 +108,7 @@ Run a reinforcement learning process and return the environment helper and the t
|
|||
env_helper, rl_dir = run_rl(ENVTYPE)
|
||||
----
|
||||
|
||||
`ENVTYPE` has to be replaced by one of the environments named after the file names in the directory `ReCo.jl/RL/Envs`, for example: `LocalCOMEnv`. A description of an environment is included at the beginning of the corresponding file.
|
||||
//TODO: Descriptions of envs
|
||||
`ENVTYPE` has to be replaced by one of the environments named after the file names in the directory `ReCo.jl/RL/Envs`, for example: `LocalCOMEnv`. A short description of an environment is included at the beginning of the corresponding file.
|
||||
|
||||
The documentation of `run_rl` includes all possible optional arguments.
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
This environment corresponds to the center of mass with a compass strategy.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct COMCompassEnv <: Env
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
This environment corresponds to the local center of mass strategy.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct LocalCOMEnv <: Env
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
This environment corresponds to the local center of mass strategy with an additional shape reward term.
|
||||
The minimization variable of the additional reward term is the individual elliptical distance of a particle.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct LocalCOMWithAdditionalShapeRewardEnv <: Env
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
This environment corresponds to the local center of mass strategy with an additional shape reward term.
|
||||
The minimization variable of the additional reward term is the absolute difference of the current value of κ to the goal value.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct LocalCOMWithAdditionalShapeRewardEnv2 <: Env
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
This environment corresponds to the nearest neighbor strategy.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct NearestNeighborEnv <: Env
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
This environment corresponds to the strategy of the origin of the coordinates system with a compass.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct OriginCompassEnv <: Env
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
This environment corresponds to the strategy of the origin of the coordinates system.
|
||||
"""
|
||||
|
||||
using ..ReCo: ReCo
|
||||
|
||||
struct OriginEnv <: Env
|
||||
|
|
Loading…
Reference in a new issue