mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2026-07-15 06:54:52 +00:00
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']
|