ALPypeRL or AnyLogic Python Pipe for Reinforcement Learning is an open source library for connecting AnyLogic simulation models with reinforcement learning frameworks that are compatible with OpenAI Gymnasium interface (single agent).
With ALPypeRL you will be able to:
- Connect your AnyLogic model to a reinforcement learning framework of your choise (e.g. ray
rllib
). - Scale your training by launching many AnyLogic models simultaneously (requires an exported model).
- Deploy and evaluate your trained policy from AnyLogic.
- Debug your AnyLogic models during training (this is a special feature unique to ALPypeRL that improves the user experience during model debugging remarkably).
- Leverage on the AnyLogic rich visualization while training or evaluating (which ties to the previous bullet point).
There is a more comprehensive documentation available that includes numerous examples to help you understand the basic functionalities in greater detail.
NOTE: ALPypeRL has been developed using ray rllib as the base RL framework. Ray rllib is an industry leading open source package for Reinforcement Learning. Because of that, ALPypeRL has certain dependencies to it (e.g. trained policy deployment and evaluation).
ALPypeRL includes 2 environments that make the connection between AnyLogic and your python script possible:
- ALPypeRLConnector - The AnyLogic connector ('agent') library to be dropped into your simulation model.
- alpyperl - The library that you will use after configuring your policy in your python script to connect to the AnyLogic model (includes functionalities to train and evaluate).
To install the base ALPypeRL library in python, use pip install alpyperl
.
To use ALPypeRLConnector in AnyLogic, you can add the library to your Palette. That will allow you to drag and drop the connector into your model. Note that further instructions are required to be followed in order for the connector to work.
- The ALPypeRL requires you to have the AnyLogic software (or a valid exported model). AnyLogic is a licensed software for building simulations that includes an ample variety of libraries for modelling many industry challenges. At the moment, AnyLogic provides a free license under the name PLE (Personal Learning Edition). There are other options available. For more information, you can visit the AnyLogic website.
Note: This is not a package that is currently backed by the AnyLogic support team.
-
The python package
alpyperl
requires (among others) 4 packages that are relatively heavy (and might take longer times to install depending on the host machine specs):ray
ray[rllib]
tensorflow
torch
To be able to train your policy, you must have the following:
- An AnyLogic model that requires decisions to be taken as the simulation runs. Using the CartPole-v0 example, a decision must be taken on the direction of the force to be applied so the pole can be kept straight for as long as possible. For that, the AnyLogic model will be making requests to the ALPypeRLConnector and consuming the returned/suggested action.
- A python script that contains the RL framework. Here is where the policy is going to be trained. For that, you will need to create your custom environment taking into consideration what your AnyLogic model expects to return and receive. By default, you must define the action and observation spaces. Please visit the CartPole-v0 example for a more detailed explanation.
from alpyperl.examples.cartpole_v0 import CartPoleEnv
from ray.rllib.algorithms.ppo import PPOConfig
policy = (
PPOConfig()
.rollouts(
num_rollout_workers=2,
num_envs_per_worker=2,
ignore_worker_failures=True,
recreate_failed_workers=True,
num_consecutive_worker_failures_tolerance=3
)
.environment(
CartPoleEnv,
env_config={
'run_exported_model': True,
'exported_model_loc': './resources/exported_models/cartpole_v0',
'show_terminals': False,
'verbose': False
}
)
.build()
)
for _ in range(10):
result = policy.train()
checkpoint_dir = policy.save("./resources/trained_policies/cartpole_v0")
print(f"Checkpoint saved in directory '{checkpoint_dir}'")
# Close all enviornments
policy.stop()
The evaluation of your trained policy is made simple in alpyperl. See the example:
from alpyperl.serve.rllib import launch_policy_server
from alpyperl.examples.cartpole_v0 import CartPoleEnv
from ray.rllib.algorithms.ppo import PPOConfig
launch_policy_server(
policy_config=PPOConfig(),
env=CartPoleEnv,
trained_policy_loc='./resources/trained_policies/cartpole_v0/checkpoint_000010',
port=3000
)
Once the server is on, you can run your AnyLogic model and test your trained policy. You are expected to select mode EVALUATE and specify the server url.
At the moment, ALPypeRL is at its earliest stage. You can join the alpyperl project and raise bugs, feature requests or submit code enhancements via pull request.
If you are financially able to do so and would like to support the development of ALPypeRL, please reach out to marcescandellmari@gmail.com.
The ALPypeRL software suite is licensed under the terms of the Apache License 2.0. See LICENSE for more information.