Files
microsoft-SkillOpt/skillopt/engine/__init__.py
2026-05-08 18:16:18 +00:00

10 lines
303 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 skillopt.engine.trainer import ReflACTTrainer # noqa: F401
__all__ = ["ReflACTTrainer"]