英语 (English) | 简体中文
GenerativeRL 是一个使用生成式模型解决强化学习问题的算法库,支持扩散模型和流模型等不同类型的生成式模型。这个库旨在提供一个框架,将生成式模型的能力与强化学习算法的决策能力相结合。
- 支持多种扩散模型和流模型等不同类型的生成式模型的训练、评估和部署
- 在强化学习算法中集成生成式模型,用于状态与动作表示,策略学习与环境模型的学习
- 实现了多种基于生成式模型的强化学习算法
- 支持多种强化学习环境和基准
- 易于使用的训练和评估 API
Score Matching | Flow Matching | |
---|---|---|
扩散模型 | ||
Linear VP SDE | ✔ | ✔ |
Generalized VP SDE | ✔ | ✔ |
Linear SDE | ✔ | ✔ |
流模型 | ||
Independent Conditional Flow Matching | 🚫 | ✔ |
Optimal Transport Conditional Flow Matching | 🚫 | ✔ |
算法/模型 | 扩散模型 | 流模型 |
---|---|---|
IDQL | ✔ | 🚫 |
QGPO | ✔ | 🚫 |
SRPO | ✔ | 🚫 |
GMPO | ✔ | ✔ |
GMPG | ✔ | ✔ |
pip install GenerativeRL
或者,如果你想从源码安装:
git clone https://github.com/opendilab/GenerativeRL.git
cd GenerativeRL
pip install -e .
或者你可以使用 Docker 镜像:
docker pull opendilab/grl:torch2.3.0-cuda12.1-cudnn8-runtime
docker run -it --rm --gpus all opendilab/grl:torch2.3.0-cuda12.1-cudnn8-runtime /bin/bash
这是一个在 LunarLanderContinuous-v2 环境中训练 Q-guided policy optimization (QGPO) 的扩散模型的示例。
安装所需依赖:
pip install 'gym[box2d]==0.23.1'
(此处的 gym 版本可以为'0.23~0.25', 但为了同时兼容 D4RL 推荐使用 '0.23.1'。)
数据集可以从 这里 下载,请将其置于工作路径下,并命名为 data.npz
。
GenerativeRL 使用 WandB 记录训练日志。在使用时会要求你联网登录账号,你可以通过以下方式禁用它:
wandb offline
import gym
from grl.algorithms.qgpo import QGPOAlgorithm
from grl.datasets import QGPOCustomizedDataset
from grl.utils.log import log
from grl_pipelines.diffusion_model.configurations.lunarlander_continuous_qgpo import config
def qgpo_pipeline(config):
qgpo = QGPOAlgorithm(config, dataset=QGPOCustomizedDataset(numpy_data_path="./data.npz", action_augment_num=config.train.parameter.action_augment_num))
qgpo.train()
agent = qgpo.deploy()
env = gym.make(config.deploy.env.env_id)
observation = env.reset()
for _ in range(config.deploy.num_deploy_steps):
env.render()
observation, reward, done, _ = env.step(agent.act(observation))
if __name__ == '__main__':
log.info("config: \n{}".format(config))
qgpo_pipeline(config)
更多详细示例和文档,请参考 GenerativeRL 文档。
我们提供了详细的文档,用于帮助你更好地了解 GenerativeRL。详见于 文档。
我们提供了一些案例教程,用于帮助你更好地了解 GenerativeRL。详见于 教程。
我们提供了一些基线实验,用于评估生成式强化学习算法的性能。详见于 基线实验。
我们欢迎所有对 GenerativeRL 的贡献和支持!请参考 开源贡献指南。
@misc{generative_rl,
title={GenerativeRL: A Python Library for Solving Reinforcement Learning Problems Using Generative Models},
author={Zhang, Jinouwen and Xue, Rongkun and Niu, Yazhe and Chen, Yun and Chen, Xinyan and Wang, Ruiheng and Liu, Yu},
publisher={GitHub},
howpublished={\url{https://github.com/opendilab/GenerativeRL}},
year={2024},
}
GenerativeRL 开源协议为 Apache License 2.0。更多信息和文档,请参考 开源协议。