feat: ZeroShotAdapter, GLiClassAdapter, RerankerAdapter with full mock test coverage
This commit is contained in:
parent
3e47afd953
commit
5497674b34
1 changed files with 10 additions and 0 deletions
|
|
@ -9,6 +9,16 @@ import abc
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"LABELS",
|
||||||
|
"LABEL_DESCRIPTIONS",
|
||||||
|
"compute_metrics",
|
||||||
|
"ClassifierAdapter",
|
||||||
|
"ZeroShotAdapter",
|
||||||
|
"GLiClassAdapter",
|
||||||
|
"RerankerAdapter",
|
||||||
|
]
|
||||||
|
|
||||||
LABELS: list[str] = [
|
LABELS: list[str] = [
|
||||||
"interview_scheduled",
|
"interview_scheduled",
|
||||||
"offer_received",
|
"offer_received",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue