mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-06-28 16:28:10 +00:00
* Add ColossalEval * Delete evaluate in Chat --------- Co-authored-by: Xu Yuanchen <yuanchen.xu00@gmail.com> Co-authored-by: Tong Li <tong.li352711588@gmail.com>
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"]
|