init
Browse files
experiments/baseline_validation_lc.py
CHANGED
@@ -18,7 +18,7 @@ data = load_dataset("cardiffnlp/relentless", split="validation")
|
|
18 |
full_result = []
|
19 |
for lm, ppl_class, batch, pretty_name in [
|
20 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
21 |
-
|
22 |
("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
23 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
24 |
]:
|
|
|
18 |
full_result = []
|
19 |
for lm, ppl_class, batch, pretty_name in [
|
20 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
21 |
+
("google/flan-t5-xxl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XXL}"),
|
22 |
("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
23 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
24 |
]:
|
experiments/baseline_validation_qa.py
CHANGED
@@ -18,7 +18,7 @@ data = load_dataset("cardiffnlp/relentless", split="validation")
|
|
18 |
full_result = []
|
19 |
for lm, ppl_class, batch, pretty_name in [
|
20 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
21 |
-
|
22 |
("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
23 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
24 |
]:
|
|
|
18 |
full_result = []
|
19 |
for lm, ppl_class, batch, pretty_name in [
|
20 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
21 |
+
("google/flan-t5-xxl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XXL}"),
|
22 |
("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
23 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
24 |
]:
|