mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* support internLM * support internLM * simplify intern model files * update storage_manager * support internLM * Modify the file organization structure * support internLM * support internLM * support internLM * support internLM * change some details
9 lines
434 B
Python
9 lines
434 B
Python
from .base import BaseModel, LMTemplateParser # noqa
|
|
from .base_api import APITemplateParser, BaseAPIModel # noqa
|
|
from .glm import GLM130B # noqa: F401, F403
|
|
from .huggingface import HuggingFace # noqa: F401, F403
|
|
from .huggingface import HuggingFaceCausalLM # noqa: F401, F403
|
|
from .intern_model import InternLM # noqa: F401, F403
|
|
from .llama2 import Llama2Chat # noqa: F401, F403
|
|
from .openai_api import OpenAI # noqa: F401
|