rlpinn-ablation-runs
收藏资源简介:
RLPINN ablation runs 是一个用于记录和存储强化学习代理(DQN 堆叠)在物理信息神经网络(PINN)训练中选择优化器时的消融实验日志与结果的数据集。该数据集包含多种消融变体,包括:无消融(none)、无优先级经验回放(no_per)、无 soft-Watkins 更新(no_soft_watkins)、无信任区域掩码(no_trust_region)。数据按物理方程(PDE)和消融类型组织,每个运行实例对应一个目录,目录下存储了超参数文件(params.json)、逐步指标日志(metrics.jsonl)、其他信息(others.json)、完整标准输出/标准错误日志(log.txt)、代理权重快照(rl_model_snapshots/)以及辅助资源(assets/,如缓冲区优先级和转移样本)。数据通过实验脚本自动生成,并定期同步至 Hugging Face 数据集中心,便于研究者复现和对比不同消融策略对 RL 辅助 PINN 训练效果的影响。
RLPINN ablation runs is a dataset for recording and storing ablation experiment logs and results of reinforcement learning agents (DQN stacking) when selecting optimizers during physics-informed neural network (PINN) training. The dataset includes multiple ablation variants: none, no priority experience replay (no_per), no soft-Watkins update (no_soft_watkins), and no trust region mask (no_trust_region). Data is organized by physical equations (PDE) and ablation type. Each run instance corresponds to a directory containing hyperparameter files (params.json), stepwise metric logs (metrics.jsonl), other information (others.json), complete stdout/stderr logs (log.txt), agent weight snapshots (rl_model_snapshots/), and auxiliary resources (assets/, such as buffer priorities and transition samples). The data is automatically generated through experimental scripts and regularly synchronized to the Hugging Face dataset hub, facilitating researchers to reproduce and compare the effects of different ablation strategies on RL-assisted PINN training.
RLPINN 消融实验运行数据集
数据集概览
- 名称:RLPINN ablation runs
- 许可证:MIT
- 类型:强化学习智能体训练的日志与运行结果
- 用途:记录在 PINN(物理信息神经网络)训练过程中,用于选择优化器的 DQN 堆栈 RL 智能体的消融研究日志与产物
数据集内容
数据集按以下目录结构组织:
runs/<pde>/<ablation>/<run_tag>/ params.json # 运行超参数 metrics.jsonl # 每行一条指标日志(step + 约30项智能体指标) others.json log.txt # 完整的 stdout/stderr 输出 rl_model_snapshots/ # 按训练步保存的智能体权重 assets/ # 其他资源(缓冲区优先级、transitions)
其中 <ablation> 取值为以下之一:
none:完整版本(无消融)no_per:移除优先经验回放(prioritized replay)no_soft_watkins:移除 soft-Watkins 机制no_trust_region:移除信任区域掩码(trust-region masking)
数据来源与生成方式
数据通过运行指定实验脚本生成,命令示例:
bash HF_TOKEN=<写入权限令牌> python experiments/optimization_multi_pde/poisson_boltzmann_2d_ablation_chain.py --ablation none --buffer-src hf --hf-results danil-e/rlpinn-ablation-runs
- 数据以批次方式同步到 Hugging Face(默认每 15 分钟一次),并在每次运行结束时再次同步(包括运行失败时)。
- 不使用 Comet 实验跟踪工具。
- 对应的缓冲区数据存储于另一个数据集:danil-e/rlpinn-ablation-buffers
研究背景
该数据集服务于一项消融研究,涉及 DQN 堆栈的三个关键组件:优先经验回放、soft-Watkins 更新、信任区域掩码。智能体的任务是在 PINN 训练过程中选择优化器。




