Refactor system architecture (#82)
This commit is contained in:
12
cacheflow/model_executor/models/__init__.py
Normal file
12
cacheflow/model_executor/models/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from cacheflow.model_executor.models.gpt_neox import GPTNeoXForCausalLM
|
||||
from cacheflow.model_executor.models.gpt2 import GPT2LMHeadModel
|
||||
from cacheflow.model_executor.models.llama import LlamaForCausalLM
|
||||
from cacheflow.model_executor.models.opt import OPTForCausalLM
|
||||
|
||||
|
||||
__all__ = [
|
||||
"GPT2LMHeadModel",
|
||||
"GPTNeoXForCausalLM",
|
||||
"LlamaForCausalLM",
|
||||
"OPTForCausalLM",
|
||||
]
|
||||
Reference in New Issue
Block a user