Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions mindformers-telechat/mindformers/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@
CogVLM2VideoLMModel,
LlamaForCausalLMForCogVLM2Image
)
from .telechat2 import (
TelechatForCausalLM,
Telechat2Tokenizer,
TelechatConfig
)
from .eva02 import (
EVA02Config,
EVAModel
Expand Down Expand Up @@ -236,3 +241,4 @@
__all__.extend(multi_modal.__all__)
__all__.extend(configuration_utils.__all__)
__all__.extend(modeling_utils.__all__)
__all__.extend(telechat2.__all__)
5 changes: 5 additions & 0 deletions mindformers-telechat/mindformers/models/telechat2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .telechat import TelechatForCausalLM
from .tokenization_telechat2 import Telechat2Tokenizer
from .telechat_config import TelechatConfig

__all__ = ['TelechatForCausalLM', 'Telechat2Tokenizer', 'TelechatConfig']
Loading