Parallel Reinforcement Learning library
Project description
PRLearn
PRLearn is a Python library designed for Parallel Reinforcement Learning. It leverages multiprocessing to streamline the training of RL agents, making it easier and more efficient to experiment and develop new RL approaches.
Key Features
- Simple and Flexible: Easy-to-use API built on Gymnasium, enabling seamless integration with existing environments.
- No Dependencies: No mandatory dependencies, but optional use of multiprocess for enhanced parallelism.
- Parallel Data Collection and Training: Efficiently collects and processes data using parallel execution, reducing training time.
- Agent Combination: Combines multiple agents to enhance learning outcomes through methods like averaging, boosting performance and stability.
Installation
Install PRLearn using pip:
pip install prlearn
or
pip install prlearn[multiprocess]
Quick Start
Here's a brief example to get you started with PRLearn:
Define Your Agent
from prlearn import Agent, Experience
from typing import Any, Dict, Tuple
class MyAgent(Agent):
def action(self, state: Tuple[Any, Dict[str, Any]]) -> Any:
observation, info = state
# Define action logic
pass
def train(self, experience: Experience):
obs, actions, rewards, terminated, truncated, info = experience.get()
# Define training logic
pass
# May define optional methods:
# before(), after(), get(), set(agent)
Using Parallel Training
import gymnasium as gym
from best_agent import MyBestAgent
from prlearn import Trainer
from prlearn.collection.agent_combiners import FixedStatAgentCombiner
# Define your environment and agent
env = gym.make("LunarLander-v2")
agent = MyBestAgent()
# Create and configure the trainer
trainer = Trainer(
agent=agent,
env=env,
n_workers=4,
schedule=[
("finish", 1000, "episodes"),
("train_agent", 10, "episodes"),
],
mode="parallel_learning", # optional
sync_mode="sync", # optional
combiner=FixedStatAgentCombiner("mean_reward"), # optional
)
# Run the trainer
agent, result = trainer.run()
- Environment: We use the
LunarLander-v2
environment from Gymnasium. - Agent:
BestAgent
is a custom agent class you should define. - Trainer Configuration: The trainer is configured with 4 parallel workers, a schedule that specifies training completion after 1000 episodes and agent training every 10 episodes.
- Optional parameters include the mode
parallel_learning
, synchronization modesync
, and a combinerFixedStatAgentCombiner
that averages agent rewards.
Using Custom Environment
from prlearn import Environment
from typing import Any, Dict, Tuple
class MyEnv(Environment):
def reset(self) -> Tuple[Any, Dict[str, Any]]:
# Define reset logic
observation = [[1, 2], [3, 4]]
info = {"info": "description"}
return observation, info
def step(self, action: Any) -> Tuple[Any, Any, bool, bool, Dict[str, Any]]:
# Define step logic
observation = [[1, 2], [3, 4]]
reward = 1
terminated, truncated = False, False
info = {"info": "description"}
return observation, reward, terminated, truncated, info
See more usage examples and scenarios at docs/examples.md
License
Licensed under the MIT License. See the LICENSE file for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
prlearn-0.0.3.tar.gz
(14.8 kB
view details)
Built Distribution
prlearn-0.0.3-py3-none-any.whl
(18.5 kB
view details)
File details
Details for the file prlearn-0.0.3.tar.gz
.
File metadata
- Download URL: prlearn-0.0.3.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.11 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfc58413a349a531d7071596f9427de9e659f58c84358b329b85d64f553d28f6 |
|
MD5 | 07a5c39cd9b4370616248c64c4fb96f7 |
|
BLAKE2b-256 | a3a9ab1633039708a612fe6988ef3534a33a4bfb7daf35050b3d0529f4731e95 |
Provenance
File details
Details for the file prlearn-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: prlearn-0.0.3-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.11 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b18bc6fd5d620ad55d809c0fdc7dc37a7de3767401d8fc79365f69e084ddfa6a |
|
MD5 | a1376e7c2e07bca58db2a9d26d8fac8b |
|
BLAKE2b-256 | e42771d58db6ae1b1cc57c0b4021d6165993e3301a66df7e66582c109b526473 |