-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
35 lines (31 loc) · 1.03 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from benchmark.framework import JudgeBase, ExamineeBase
from benchmark.dummies import DummyJudge
from challenges.follow import FollowJudge
from challenges.predict import PredictJudge
from challenges.coevolve import CoevolveJudge
from algorithms.lifelong_dpo import LifelongDPOExaminee
from algorithms.lifelong_rlhf import LifelongRLHFExaminee
from algorithms.extrapolative_dpo import ExtrapolativeDPOExaminee
from algorithms.extrapolative_rlhf import ExtrapolativeRLHFExaminee
from benchmark.dummies import DummyExaminee
from run_benchmark import run_benchmark
from src.abstractions.model import Model, fill_in_QA_template
from src.abstractions.data import Data, DataFileCollection
__all__ = [
"run_benchmark",
"Model",
"Data",
"DataFileCollection",
"JudgeBase",
"ExamineeBase",
"DummyJudge",
"FollowJudge",
"PredictJudge",
"CoevolveJudge",
"DummyExaminee",
"LifelongDPOExaminee",
"LifelongRLHFExaminee",
"ExtrapolativeDPOExaminee",
"ExtrapolativeRLHFExaminee",
"fill_in_QA_template",
]