OpenCompass/opencompass/summarizers/__init__.py
bittersweet1999 dfd9ac0fd9
[Feature] Add other judgelm prompts for Alignbench (#731)
* add judgellm prompts

* add judgelm prompts

* update import info

* fix situation that no abbr in config

* fix situation that no abbr in config

* add summarizer for other judgellm

* change config name

* add maxlen

* add maxlen

* dict assert

* dict assert

* fix strings

* fix strings
2023-12-27 17:54:53 +08:00

9 lines
426 B
Python

# flake8: noqa: F401, E501
from .alignmentbench import (AlignmentBenchSummarizer, AutojSummarizer,
JudgeLMSummarizer)
from .circular import CircularSummarizer # noqa: F401
from .corev2 import Corev2Summarizer # noqa: F401
from .creationv01 import Creationv01Summarizer # noqa: F401
from .default import DefaultSummarizer # noqa: F401
from .subjective import SubjectiveSummarizer # noqa: F401