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

* fixed formatting based on pre-commit tests * fixed typo in comments; reduced the number of models in the eval config * fixed a bug in LLMCompressionDataset, where setting samples=None would result in passing test[:None] to load_dataset * removed unnecessary variable in _format_table_pivot; changed lark_reporter message to English
14 lines
750 B
Python
14 lines
750 B
Python
from .icl_agent_inferencer import AgentInferencer # noqa
|
|
from .icl_attack_inferencer import AttackInferencer # noqa
|
|
from .icl_base_inferencer import BaseInferencer # noqa
|
|
from .icl_chat_inferencer import ChatInferencer # noqa
|
|
from .icl_clp_inferencer import CLPInferencer # noqa
|
|
from .icl_gen_inferencer import GenInferencer # noqa
|
|
from .icl_ll_inferencer import LLInferencer # noqa
|
|
from .icl_mink_percent_inferencer import MinKPercentInferencer # noqa
|
|
from .icl_ppl_inferencer import PPLInferencer # noqa
|
|
from .icl_ppl_only_inferencer import PPLOnlyInferencer # noqa
|
|
from .icl_sc_inferencer import SCInferencer # noqa
|
|
from .icl_sw_ce_loss_inferencer import SWCELossInferencer # noqa
|
|
from .icl_tot_inferencer import ToTInferencer # noqa
|