mirror of https://github.com/hpcaitech/ColossalAI
8 lines
260 B
Python
8 lines
260 B
Python
![]() |
from .base import OLTrainer, SLTrainer
|
||
|
from .dpo import DPOTrainer
|
||
|
from .ppo import PPOTrainer
|
||
|
from .rm import RewardModelTrainer
|
||
|
from .sft import SFTTrainer
|
||
|
|
||
|
__all__ = ["SLTrainer", "OLTrainer", "RewardModelTrainer", "SFTTrainer", "PPOTrainer", "DPOTrainer"]
|