mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-08-11 04:41:54 +00:00
* [chat] refactor lora * [chat] remove lm class * [chat] refactor save model * [chat] refactor train sft * [chat] fix ci * [chat] fix ci
6 lines
138 B
Python
6 lines
138 B
Python
from .opt_actor import OPTActor
|
|
from .opt_critic import OPTCritic
|
|
from .opt_rm import OPTRM
|
|
|
|
__all__ = ['OPTActor', 'OPTCritic', 'OPTRM']
|