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