bolero.environment.Environment¶bolero.environment.Environment[source]¶Common interface for environments.
An environment can execute actions, measure states and compute rewards. It defines a learning problem.
__init__()¶x.__init__(…) initializes x; see help(type(x)) for signature
get_args()¶Get parameters for this estimator.
| Returns: |
|
|---|
get_feedback()[source]¶Get the feedbacks for the last evaluation period.
| Returns: |
|
|---|
get_num_inputs()[source]¶Get number of environment inputs.
| Parameters: |
|
|---|
get_num_outputs()[source]¶Get number of environment outputs.
| Parameters: |
|
|---|
get_outputs(values)[source]¶Get environment outputs, e.g. state of the environment.
| Parameters: |
|
|---|
is_behavior_learning_done()[source]¶Check if the behavior learning is finished.
| Returns: |
|
|---|
is_evaluation_done()[source]¶Check if the evaluation of the behavior is finished.
| Returns: |
|
|---|