원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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.