init
Browse files- experiments/baseline_lm_lc.py +15 -15
experiments/baseline_lm_lc.py
CHANGED
@@ -22,26 +22,26 @@ for lm, ppl_class, batch, pretty_name in [
|
|
22 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
23 |
# ("google/flan-t5-xxl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XXL}"),
|
24 |
# ("google/flan-t5-xl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XL}"),
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
# ("t5-11b", EncoderDecoderLM, 1, "T5\textsubscript{XXL}"),
|
29 |
# ("t5-3b", EncoderDecoderLM, 1, "T5\textsubscript{XL}"),
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
# ("facebook/opt-66b", LM, 1, "OPT\textsubscript{66B}"),
|
34 |
-
("facebook/opt-30b", LM, 1, "OPT\textsubscript{30B}"),
|
35 |
-
("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
36 |
-
("facebook/opt-6.7b", LM, 1, "OPT\textsubscript{6.7B}"),
|
37 |
-
("facebook/opt-2.7b", LM, 1, "OPT\textsubscript{2.7B}"),
|
38 |
-
("facebook/opt-1.3b", LM, 1, "OPT\textsubscript{1.3B}"),
|
39 |
("facebook/opt-350m", LM, 128, "OPT\textsubscript{350M}"),
|
40 |
("facebook/opt-125m", LM, 256, "OPT\textsubscript{125M}"),
|
41 |
-
("facebook/opt-iml-30b", LM, 1, "OPT-IML\textsubscript{30B}"),
|
42 |
-
("facebook/opt-iml-1.3b", LM, 1, "OPT-IML\textsubscript{1.3B}"),
|
43 |
-
("facebook/opt-iml-max-30b", LM, 1, "OPT-IML\textsubscript{MAX-30B}"),
|
44 |
-
("facebook/opt-iml-max-1.3b", LM, 1, "OPT-IML\textsubscript{MAX-1.3B}"),
|
45 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
46 |
]:
|
47 |
os.makedirs(f"results/lm_lc/{os.path.basename(lm)}", exist_ok=True)
|
|
|
22 |
# ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"),
|
23 |
# ("google/flan-t5-xxl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XXL}"),
|
24 |
# ("google/flan-t5-xl", EncoderDecoderLM, 1, "Flan-T5\textsubscript{XL}"),
|
25 |
+
("google/flan-t5-large", EncoderDecoderLM, 32, "Flan-T5\textsubscript{LARGE}"),
|
26 |
+
("google/flan-t5-base", EncoderDecoderLM, 128, "Flan-T5\textsubscript{BASE}"),
|
27 |
+
("google/flan-t5-small", EncoderDecoderLM, 256, "Flan-T5\textsubscript{SMALL}"),
|
28 |
# ("t5-11b", EncoderDecoderLM, 1, "T5\textsubscript{XXL}"),
|
29 |
# ("t5-3b", EncoderDecoderLM, 1, "T5\textsubscript{XL}"),
|
30 |
+
("t5-large", EncoderDecoderLM, 32, "T5\textsubscript{LARGE}"),
|
31 |
+
("t5-base", EncoderDecoderLM, 128, "T5\textsubscript{BASE}"),
|
32 |
+
("t5-small", EncoderDecoderLM, 256, "T5\textsubscript{SMALL}"),
|
33 |
# ("facebook/opt-66b", LM, 1, "OPT\textsubscript{66B}"),
|
34 |
+
# ("facebook/opt-30b", LM, 1, "OPT\textsubscript{30B}"),
|
35 |
+
# ("facebook/opt-13b", LM, 1, "OPT\textsubscript{13B}"),
|
36 |
+
# ("facebook/opt-6.7b", LM, 1, "OPT\textsubscript{6.7B}"),
|
37 |
+
# ("facebook/opt-2.7b", LM, 1, "OPT\textsubscript{2.7B}"),
|
38 |
+
# ("facebook/opt-1.3b", LM, 1, "OPT\textsubscript{1.3B}"),
|
39 |
("facebook/opt-350m", LM, 128, "OPT\textsubscript{350M}"),
|
40 |
("facebook/opt-125m", LM, 256, "OPT\textsubscript{125M}"),
|
41 |
+
# ("facebook/opt-iml-30b", LM, 1, "OPT-IML\textsubscript{30B}"),
|
42 |
+
# ("facebook/opt-iml-1.3b", LM, 1, "OPT-IML\textsubscript{1.3B}"),
|
43 |
+
# ("facebook/opt-iml-max-30b", LM, 1, "OPT-IML\textsubscript{MAX-30B}"),
|
44 |
+
# ("facebook/opt-iml-max-1.3b", LM, 1, "OPT-IML\textsubscript{MAX-1.3B}"),
|
45 |
("davinci", OpenAI, None, "GPT-3\textsubscript{davinci}")
|
46 |
]:
|
47 |
os.makedirs(f"results/lm_lc/{os.path.basename(lm)}", exist_ok=True)
|