mirror of
https://github.com/microsoft/SkillOpt.git
synced 2026-07-07 08:22:44 +08:00
10 lines
302 B
Python
10 lines
302 B
Python
"""ReflACT Engine -- the training runner.
|
|
|
|
Analogous to the Runner in mmengine: orchestrates the full training pipeline
|
|
including rollout, gradient computation, aggregation, optimization, and
|
|
evaluation.
|
|
"""
|
|
from reflact.engine.trainer import ReflACTTrainer # noqa: F401
|
|
|
|
__all__ = ["ReflACTTrainer"]
|