mirror of https://github.com/hpcaitech/ColossalAI
6 lines
241 B
Python
6 lines
241 B
Python
![]() |
from .base import BaseModel
|
||
|
from .chatglm import ChatGLM2Model, ChatGLMModel
|
||
|
from .huggingface import HuggingFaceCausalLM, HuggingFaceModel
|
||
|
|
||
|
__all__ = ["BaseModel", "HuggingFaceModel", "HuggingFaceCausalLM", "ChatGLMModel", "ChatGLM2Model"]
|