ELPA
/install elpa
ELPA
Overview
This skill does not train toy adapters. It triggers real sub-model training commands from your own training codebases and then builds ELPA routing/weights from real validation errors.
Default model pool is intentionally larger than 4 and can be expanded freely.
Workflow
- Prepare a training config JSON (see
assets/elpa_train_template.json). - Dry-run the command plan to verify all sub-model commands.
- Execute real sub-model training when resources are available.
- Prepare validation error inputs per model.
- Build ELPA ensemble policy JSON from those errors.
1) Prepare Config
Create a config based on assets/elpa_train_template.json.
- Put your real training entrypoints in each model
train_cmd. - Keep each model tagged as
onlineoroffline. - Add as many models as needed; ELPA is not limited to 4.
2) Dry-Run Plan (No Training)
python3 scripts/elpa_orchestrator.py \
--config assets/elpa_train_template.json \
--run-dir .runtime/elpa_run \
--manifest-out .runtime/elpa_run/train_manifest.json
This prints and records the commands that would run, without training.
3) Execute Real Training
python3 scripts/elpa_orchestrator.py \
--config /path/to/your_train_config.json \
--run-dir .runtime/elpa_run \
--manifest-out .runtime/elpa_run/train_manifest.json \
--execute
Use this only in an environment that has the required ML dependencies and hardware.
4) Build ELPA Integration Policy
After each sub-model produces validation errors, run:
python3 scripts/elpa_integrator.py \
--config /path/to/your_integrate_config.json \
--output .runtime/elpa_run/elpa_policy.json
The output includes:
scoresfor each model from validation errorsonline_weightsandoffline_weightsbest_online_modelandbest_offline_model- ELPA control fields (
beta,dirty_interval,amplitude_window,mutant_epsilon)
Model Scaling
To support more models, append model blocks in your config with:
- unique
name groupasonlineoroffline- real
train_cmd
No script changes are needed for adding models.
Files
scripts/elpa_orchestrator.py: real sub-model training command planner/executorscripts/elpa_integrator.py: ELPA score/weight builder from validation errorsassets/elpa_train_template.json: >4-model real training templateassets/elpa_integrate_template.json: ELPA integration templatereferences/config-schema.md: config field reference and placeholders
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install elpa - 安装完成后,直接呼叫该 Skill 的名称或使用
/elpa触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
ELPA 是什么?
Orchestrate real ELPA-style ensemble forecasting workflows by triggering external sub-model training jobs (for example PyTorch/Prophet/TiDE/transformers), th... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 257 次。
如何安装 ELPA?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install elpa」即可一键安装,无需额外配置。
ELPA 是免费的吗?
是的,ELPA 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
ELPA 支持哪些平台?
ELPA 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 ELPA?
由 AnonymousCodeMaker(@anonymouscodemaker)开发并维护,当前版本 v1.0.0。