mirror of https://github.com/hpcaitech/ColossalAI
6 lines
225 B
Python
6 lines
225 B
Python
from .bloom import BloomInferenceForwards
|
|||
from .chatglm2 import ChatGLM2InferenceForwards
|
|||
from .llama import LlamaInferenceForwards
|
|||
|
|||
__all__ = ["LlamaInferenceForwards", "BloomInferenceForwards", "ChatGLM2InferenceForwards"]
|