mirror of https://github.com/hpcaitech/ColossalAI
7 lines
190 B
Python
7 lines
190 B
Python
|
from .base import Trainer
|
||
|
from .ppo import PPOTrainer
|
||
|
from .rm import RewardModelTrainer
|
||
|
from .sft import SFTTrainer
|
||
|
|
||
|
__all__ = ['Trainer', 'PPOTrainer', 'RewardModelTrainer', 'SFTTrainer']
|