一键导入
optim-kit
Use OptimKit to build optimizers over trainable parameters and Transformers learning-rate schedulers in MVP-Engine recipes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use OptimKit to build optimizers over trainable parameters and Transformers learning-rate schedulers in MVP-Engine recipes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use and extend the MVP-Engine MLLM data kit with explicit specs, handlers, and sample objects. Use for recipe data wiring, MLLMDataSpec construction, source resample/resolve_refs policy, schema/media/tokenization handlers, packing, guards, collation, dataloader setup, Qwen VL data support, and multimodal data extensions.
Add, review, update, and validate recipe-local sequence-parallel plans that reuse the tensor-parallel mesh in mvp-engine models.
Add, review, update, and validate recipe-local tensor-parallel plans, TP metadata postprocessors, and compatible mesh config for mvp-engine models.
Add, review, update, and validate VLM/MLLM data pipelines using the current spec/handler-based MLLMDataKit design. Use for raw schema normalization, MLLMDataSpec wiring, source resample/resolve_refs policy, media extensions, processor setup, packing, guards, collation, step estimation, and recipe integration.
Add, review, update, and validate VLM/MLLM packing behavior around the current MLLMDataKit design, including MLLMPackingSpec, MLLMPackingAssembler, MLLMPack metadata, block-causal masks, model-specific packed input preparation, token accounting, and step estimation.
Use LigerKernelKit for reusable Liger Kernel integration before model construction, covering official model-family dispatch, custom-model symbol patching via LigerPatch, module selection validation, and loss-kernel guards.
基于 SOC 职业分类
| name | optim-kit |
| description | Use OptimKit to build optimizers over trainable parameters and Transformers learning-rate schedulers in MVP-Engine recipes. |
Use OptimKit for standard optimizer and scheduler construction:
build_optimizer(model, optimizer, lr, weight_decay, **kwargs) collects only
parameters with requires_grad=True;build_lr_scheduler(optimizer, lr_scheduler, **kwargs) delegates scheduler
construction to Transformers get_scheduler.build_optimizer.Run recipe structure and smoke tests.
mvp_engine/kit/optim/__init__.py for the exact API.