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

* stash files * compassbench subjective evaluation added * evaluation update * fix lint * update docs * Update lint * changes saved * changes saved * CompassBench subjective summarizer added (#1349) * subjective summarizer added * fix lint [Fix] Fix MathBench (#1351) Co-authored-by: liuhongwei <liuhongwei@pjlab.org.cn> [Update] Update model support list (#1353) * fix pip version * fix pip version * update model support subjective summarizer updated knowledge, math objective done (data need update) remove secrets objective changes saved knowledge data added * secrets removed * changed added * summarizer modified * summarizer modified * compassbench coding added * fix lint * objective summarizer updated * compass_bench_v1.3 updated * update files in config folder * remove unused model * lcbench modified * removed model evaluation configs * remove duplicated sdk implementation --------- Co-authored-by: zhangsongyang <zhangsongyang@pjlab.org.cn>
52 lines
2.6 KiB
Python
52 lines
2.6 KiB
Python
from .accessory import LLaMA2AccessoryModel # noqa: F401
|
|
from .ai360_api import AI360GPT # noqa: F401
|
|
from .alaya import AlayaLM # noqa: F401
|
|
from .baichuan_api import BaiChuan # noqa: F401
|
|
from .baidu_api import ERNIEBot # noqa: F401
|
|
from .base import BaseModel, LMTemplateParser # noqa: F401
|
|
from .base_api import APITemplateParser, BaseAPIModel # noqa: F401
|
|
from .bytedance_api import ByteDance # noqa: F401
|
|
from .claude_allesapin import ClaudeAllesAPIN # noqa: F401
|
|
from .claude_api import Claude # noqa: F401
|
|
from .claude_sdk_api import ClaudeSDK # noqa: F401
|
|
from .deepseek_api import DeepseekAPI # noqa: F401
|
|
from .doubao_api import Doubao # noqa: F401
|
|
from .gemini_api import Gemini # noqa: F401
|
|
from .glm import GLM130B # noqa: F401
|
|
from .huggingface import HuggingFace # noqa: F401
|
|
from .huggingface import HuggingFaceCausalLM # noqa: F401
|
|
from .huggingface import HuggingFaceChatGLM3 # noqa: F401
|
|
from .huggingface_above_v4_33 import HuggingFaceBaseModel # noqa: F401
|
|
from .huggingface_above_v4_33 import HuggingFacewithChatTemplate # noqa: F401
|
|
from .hunyuan_api import Hunyuan # noqa: F401
|
|
from .intern_model import InternLM # noqa: F401
|
|
from .krgpt_api import KrGPT # noqa: F401
|
|
from .lightllm_api import LightllmAPI, LightllmChatAPI # noqa: F401
|
|
from .llama2 import Llama2, Llama2Chat # noqa: F401
|
|
from .lmdeploy_pytorch import LmdeployPytorchModel # noqa: F401
|
|
from .lmdeploy_tis import LmdeployTisModel # noqa: F401
|
|
from .minimax_api import MiniMax, MiniMaxChatCompletionV2 # noqa: F401
|
|
from .mistral_api import Mistral # noqa: F401
|
|
from .mixtral import Mixtral # noqa: F401
|
|
from .modelscope import ModelScope, ModelScopeCausalLM # noqa: F401
|
|
from .moonshot_api import MoonShot # noqa: F401
|
|
from .nanbeige_api import Nanbeige # noqa: F401
|
|
from .openai_api import OpenAI # noqa: F401
|
|
from .openai_api import OpenAISDK # noqa: F401
|
|
from .pangu_api import PanGu # noqa: F401
|
|
from .qwen_api import Qwen # noqa: F401
|
|
from .sensetime_api import SenseTime # noqa: F401
|
|
from .stepfun_api import StepFun # noqa: F401
|
|
from .turbomind import TurboMindModel # noqa: F401
|
|
from .turbomind_tis import TurboMindTisModel # noqa: F401
|
|
from .turbomind_with_tf_above_v4_33 import \
|
|
TurboMindModelwithChatTemplate # noqa: F401
|
|
from .unigpt_api import UniGPT # noqa: F401
|
|
from .vllm import VLLM # noqa: F401
|
|
from .vllm_with_tf_above_v4_33 import VLLMwithChatTemplate # noqa: F401
|
|
from .xunfei_api import XunFei, XunFeiSpark # noqa: F401
|
|
from .yayi_api import Yayi # noqa: F401
|
|
from .yi_api import YiAPI # noqa: F401
|
|
from .zhipuai_api import ZhiPuAI # noqa: F401
|
|
from .zhipuai_v2_api import ZhiPuV2AI # noqa: F401
|