mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-08-08 19:38:05 +00:00
* [misc] update pre-commit * [misc] run pre-commit * [misc] remove useless configuration files * [misc] ignore cuda for clang-format
7 lines
230 B
Python
7 lines
230 B
Python
from .base import OnPolicyTrainer, SLTrainer
|
|
from .ppo import PPOTrainer
|
|
from .rm import RewardModelTrainer
|
|
from .sft import SFTTrainer
|
|
|
|
__all__ = ["SLTrainer", "OnPolicyTrainer", "RewardModelTrainer", "SFTTrainer", "PPOTrainer"]
|