diff --git a/README.md b/README.md index 10ac18733873eab19f2fd7e644b5e6e1a0e7e173..3bcc4bc79752da4e69ba1db7e7e30819b42e0238 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,13 @@ THe test set is private at the moment. ### Dataset Summary -| relation_type | val. | test | -|:---------------------|-------:|-------:| -| friend/ally of | 20 | 92 | -| competitor/rival of | 20 | 89 | -| known for | 20 | 108 | -| influenced by | 20 | 93 | -| similar to | 20 | 93 | +| relation_type | val. | test | +|:--------------------|-------:|-------:| +| competitor/rival of | 20 | 84 | +| friend/ally of | 19 | 88 | +| influenced by | 19 | 90 | +| known for | 18 | 105 | +| similar to | 19 | 89 | ## Dataset Structure ### Data Instances diff --git a/experiments/baseline_fasttext.py b/experiments/baseline_fasttext.py index 9075d559d0ca5b233147483bd9930ff385ee9c3c..3694b3da07a4e7a48bff9252fed297c6bf036db4 100644 --- a/experiments/baseline_fasttext.py +++ b/experiments/baseline_fasttext.py @@ -4,12 +4,13 @@ import os import json from statistics import mean import pandas as pd -from gensim.models import fasttext from datasets import load_dataset # load fasttext def load_model(): + from gensim.models import fasttext + os.makedirs('./cache', exist_ok=True) path = './cache/crawl-300d-2M-subword.bin' if not os.path.exists(path): diff --git a/experiments/baseline_fasttext_zeroshot.py b/experiments/baseline_fasttext_zeroshot.py index 852fb715fde9e4f18f64a0475cb37055dcbb7db8..eeb31da4ccfe807f3c46807c5ccd8a6c2165b8e4 100644 --- a/experiments/baseline_fasttext_zeroshot.py +++ b/experiments/baseline_fasttext_zeroshot.py @@ -3,12 +3,13 @@ import requests import os import json import pandas as pd -from gensim.models import fasttext from datasets import load_dataset # load fasttext def load_model(): + from gensim.models import fasttext + os.makedirs('./cache', exist_ok=True) path = './cache/crawl-300d-2M-subword.bin' if not os.path.exists(path): diff --git a/experiments/baseline_lm_lc_zeroshot.py b/experiments/baseline_lm_lc_zeroshot.py index 86177750cb30bfd355cc8a38ba64c8b84516682d..02a035e689faedea40d8805ff695f150106dbc4c 100644 --- a/experiments/baseline_lm_lc_zeroshot.py +++ b/experiments/baseline_lm_lc_zeroshot.py @@ -14,7 +14,7 @@ prompt_dict = { "influenced by": "what has influenced different entities", "similar to": "examples of entities that are similar" } -data = load_dataset("cardiffnlp/relentless_full", split="test") +data = load_dataset("cardiffnlp/relentless", split="test") full_result = [] for lm, ppl_class, batch, pretty_name in [ ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"), diff --git a/experiments/baseline_lm_qa_zeroshot.py b/experiments/baseline_lm_qa_zeroshot.py index b32d070d008af6205ea548c2f0ccefa09902bb09..3392f173ecd4514167f396d664619e2974a5462e 100644 --- a/experiments/baseline_lm_qa_zeroshot.py +++ b/experiments/baseline_lm_qa_zeroshot.py @@ -14,7 +14,7 @@ prompt_dict = { "influenced by": "what has influenced different entities", "similar to": "examples of entities that are similar" } -data = load_dataset("cardiffnlp/relentless_full", split="test") +data = load_dataset("cardiffnlp/relentless", split="test") full_result = [] for lm, ppl_class, batch, pretty_name in [ ("google/flan-ul2", EncoderDecoderLM, 1, "Flan-UL2"), @@ -28,6 +28,7 @@ for lm, ppl_class, batch, pretty_name in [ ppl_file = f"results/lm_qa_zeroshot/{os.path.basename(lm)}/ppl.{d['relation_type'].replace(' ', '_').replace('/', '__')}.jsonl" if not os.path.exists(ppl_file): + input(ppl_file) if scorer is None: if ppl_class is OpenAI: diff --git a/experiments/baseline_relbert.py b/experiments/baseline_relbert.py index 4bcd765e3486cae2a9a0c646b551da84f3b50ae1..b1eca52f5072b87a607ed558862b828b3802f7f4 100644 --- a/experiments/baseline_relbert.py +++ b/experiments/baseline_relbert.py @@ -3,7 +3,6 @@ import json import pandas as pd from statistics import mean from datasets import load_dataset -from relbert import RelBERT def cosine_similarity(a, b): @@ -27,6 +26,7 @@ for lm in ['base', 'large']: if not os.path.exists(ppl_file): if scorer is None: + from relbert import RelBERT scorer = RelBERT(f"relbert/relbert-roberta-{lm}") anchor_embeddings = scorer.get_embedding(d['prototypical_examples']) option_embeddings = scorer.get_embedding(d['pairs'], batch_size=64) diff --git a/experiments/figures/fewshots/lc.average.fewshot.landscape.png b/experiments/figures/fewshots/lc.average.fewshot.landscape.png index 551ba6694dd8f50d3599d8632236338c16d1dcb7..58c7c9e4076097a0ae6abf6728976f17b6148cfc 100644 --- a/experiments/figures/fewshots/lc.average.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.average.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3af13c95b5d1158c816337c9bc4e28a5a763fc8bfe277e1bb37c84aef9c68f0 -size 154910 +oid sha256:d070add6fc50d2a91b281fbd7035644204b4cce4b77946fd450d534e344dedc2 +size 151776 diff --git a/experiments/figures/fewshots/lc.average.fewshot.png b/experiments/figures/fewshots/lc.average.fewshot.png index db66cf729d0eba34883b9ecb6b49ef3af73619fb..06c7e7e80a55ef5b6ed1c3e7ffa3e8391823c90b 100644 --- a/experiments/figures/fewshots/lc.average.fewshot.png +++ b/experiments/figures/fewshots/lc.average.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cadabafc44f9f0af639cfd6b3287acff7892aa0ba2cc25414edd162e6d55af9 -size 140519 +oid sha256:4abae9c1df88eaaff3268aeccde95be378d934a8423ea5684b31d4f5f0c337ec +size 137122 diff --git a/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.landscape.png b/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.landscape.png index 059c911e22c02b31100e4d96ca50644eaffaeebc..835d46318d98e6854b3a8ab8d6075524abcaa41f 100644 --- a/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d70958f39265e5ada30184c9d9151087144e1d5ca7619245525ab46bcfc24c47 -size 165141 +oid sha256:b2b106e86b6f089c563a428faee2e94341432a156a91b361025300830ac9fab6 +size 173488 diff --git a/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.png b/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.png index a974c7c2e545a4291dd7e07a7b9cd95585b6ebca..8ba4d74afe0f3ea420cb9dfd24d0c0e4a2a01f80 100644 --- a/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.png +++ b/experiments/figures/fewshots/lc.competitor-rival_of.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07692867d797248469af0b191f6e16c5c9ed8386e7aa6c33cb5834dd959ab5be -size 149793 +oid sha256:26a40c54d65bf907e74c6cdac7c5fadc7d41b284206fc831bd1ad725b8ceb7e7 +size 158610 diff --git a/experiments/figures/fewshots/lc.friend-ally_of.fewshot.landscape.png b/experiments/figures/fewshots/lc.friend-ally_of.fewshot.landscape.png index 57e8d9b4f3063621d62b2ee68ad0bd34e6f37390..f95ff3c58700230ced3d624c8fe9949ab435455d 100644 --- a/experiments/figures/fewshots/lc.friend-ally_of.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.friend-ally_of.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4db174a053da7df7aa8d3beeda738ea205ef16d0409163932f46e8dfa0245ae -size 152288 +oid sha256:ab06ebf2765e3793123aa5d7fa8a071645bcb7aae24141afff64172009eee995 +size 162795 diff --git a/experiments/figures/fewshots/lc.friend-ally_of.fewshot.png b/experiments/figures/fewshots/lc.friend-ally_of.fewshot.png index 5b004de30b051c843234aa14deccae3d83042eeb..30abdf40c5fbaa7abf29b14b7043a31d169b68cb 100644 --- a/experiments/figures/fewshots/lc.friend-ally_of.fewshot.png +++ b/experiments/figures/fewshots/lc.friend-ally_of.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd6f580448d83485fbddbc01d2be5e13c88d60899b61590cbdc254dd8067e228 -size 138053 +oid sha256:66a2c159a0ea535eb899fb74064c2b2ea8be78b7856ca2019107262fedef674c +size 148044 diff --git a/experiments/figures/fewshots/lc.influenced_by.fewshot.landscape.png b/experiments/figures/fewshots/lc.influenced_by.fewshot.landscape.png index 5e596cdaa1850a099392b23aa835a13e9d0976df..0e2bd7a914cac4953036df3db707a853c1e5fa99 100644 --- a/experiments/figures/fewshots/lc.influenced_by.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.influenced_by.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30558363f16ac4d47eb1adfd5d501703f0fe14d40c7199c5d04daa0e74dafd17 -size 170153 +oid sha256:eef5bbfc7ca726934350989b7d80cc24039b8a157e08900c147eb5abdb897e83 +size 156247 diff --git a/experiments/figures/fewshots/lc.influenced_by.fewshot.png b/experiments/figures/fewshots/lc.influenced_by.fewshot.png index f0e32b709987298f5e838c6ba7ac7733afc279a1..a8ecf229290f4a50e035bb4a5068b886e01aabd1 100644 --- a/experiments/figures/fewshots/lc.influenced_by.fewshot.png +++ b/experiments/figures/fewshots/lc.influenced_by.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bd5f2e3d066c53f7d1ebbab64954b9fa4cbc2ac310f5f42f6ca7458204ccd4a -size 154516 +oid sha256:c2cb26e14eea2e1a3d48375f18e77ffed7aeae2e1a70fbaffe9249d81295f002 +size 140691 diff --git a/experiments/figures/fewshots/lc.known_for.fewshot.landscape.png b/experiments/figures/fewshots/lc.known_for.fewshot.landscape.png index ae84acb7d512f9378e5c42affd6fdfc3d6b9efaa..44c9cd6caa35d80e55261f7809f255f97f40dd2e 100644 --- a/experiments/figures/fewshots/lc.known_for.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.known_for.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e153ea8b5389f6302a51a12ae5752c593f5212cafcf67ddc180e55caefd9e32f -size 161559 +oid sha256:b359eda2065391e88d660404b4ea5292daf4bf9091c53275a12d0e00d55a3e62 +size 169205 diff --git a/experiments/figures/fewshots/lc.known_for.fewshot.png b/experiments/figures/fewshots/lc.known_for.fewshot.png index e4503736991dc9d9f37cce6f3191ac2358934a69..d2ebea14597a1aa36e480062338d00946b6d1787 100644 --- a/experiments/figures/fewshots/lc.known_for.fewshot.png +++ b/experiments/figures/fewshots/lc.known_for.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7079723f496d5492c6d6d5f0264a083e4933838227cd0c02cbc2c1b3dcbdc370 -size 146719 +oid sha256:c7a7afb53e7dcef50709d1f2aedf72482b44ede2886c4639d3cdf56693193b90 +size 154435 diff --git a/experiments/figures/fewshots/lc.similar_to.fewshot.landscape.png b/experiments/figures/fewshots/lc.similar_to.fewshot.landscape.png index d0e365a8fd293aabe2c6628df0327ea2d7a85c4d..f25fb4d1230e74748cb0367b3c7ba232dd662b5d 100644 --- a/experiments/figures/fewshots/lc.similar_to.fewshot.landscape.png +++ b/experiments/figures/fewshots/lc.similar_to.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f67d06d8bcf86bf6eced819b7a5b24ef4cd07e71a70ca383d73de6f84bbb7172 -size 154827 +oid sha256:58a83c86bc1c8df365d063d61ebd17409290c07a4cc6750ffa227ea92200eb14 +size 152517 diff --git a/experiments/figures/fewshots/lc.similar_to.fewshot.png b/experiments/figures/fewshots/lc.similar_to.fewshot.png index 3ca057b588ba2522622c176461b69a92e1c2c52d..3a0600865a56c3177b757333370131cc7785b282 100644 --- a/experiments/figures/fewshots/lc.similar_to.fewshot.png +++ b/experiments/figures/fewshots/lc.similar_to.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f701b6d0371e259451ac5e7e9f7a7ef5ba6a62da6f1f33c1aa29bfa46a038d0 -size 140313 +oid sha256:74c85b9e7151129f32f8939a78f5fbee081c2df894e6afcdb449e8e73a530ae9 +size 138464 diff --git a/experiments/figures/fewshots/qa.average.fewshot.landscape.png b/experiments/figures/fewshots/qa.average.fewshot.landscape.png index 48b5e581f2f43e38e2741b0d28a9ac32eac0b8a6..06e3eb8cb6f1b3b7c7393c6d6a82b15bb61d7f61 100644 --- a/experiments/figures/fewshots/qa.average.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.average.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b5f9d3dddb702c0a1ca29a027d7d77db7f3e95794d2641480fbbabd595f2cac -size 153265 +oid sha256:e72675717a391ca2d5e881f30f9091ab487cccee4ba3ff41b3948bb89fd4cc50 +size 155262 diff --git a/experiments/figures/fewshots/qa.average.fewshot.png b/experiments/figures/fewshots/qa.average.fewshot.png index d8cc0f39cf0f58b6377067c83f340ea2db9c31aa..94f3fb5cf047fc8a4c30257d4f02351ebc3619d5 100644 --- a/experiments/figures/fewshots/qa.average.fewshot.png +++ b/experiments/figures/fewshots/qa.average.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c7901046da4d28bba5c920eba82d905da1252312f8752d372a652c680001d1d -size 102792 +oid sha256:be9498d3060a32c03aff3b1ace9822a923d1d11ad6880d9f6a6a8cb59df2b6c9 +size 104871 diff --git a/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.landscape.png b/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.landscape.png index 4c7bbd03e7dea8380a50b2af2a22f45e4911d534..6790b03e65d491ad2ee64fb367f39b45f26329e0 100644 --- a/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e9f417f85c0f20a3e30202b79b9469b22c536265f165775e2ff4e186fd8482d -size 148772 +oid sha256:616f118e7416440f15885b1047ab11bac943107f7d32b4a34c8f20614f8ecdf1 +size 160193 diff --git a/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.png b/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.png index 2ec0ff89022f01f8710148d7e7b61bc8d62a82ea..4a62a7ace35f099cbfee647cd3a6374b16463085 100644 --- a/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.png +++ b/experiments/figures/fewshots/qa.competitor-rival_of.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03ad6cb87dde36486d4f642bb97dfab7406fe0a942b6dc7259e5b70a35dba2ba -size 98247 +oid sha256:f9ef6d2c8574074b89e1d860a2a1d4e4e86fcd8a0ef6e14e2b051352ed97e508 +size 109622 diff --git a/experiments/figures/fewshots/qa.friend-ally_of.fewshot.landscape.png b/experiments/figures/fewshots/qa.friend-ally_of.fewshot.landscape.png index 10a7a18975b8043abb3e99e62e170af44514db23..29f2cc5df431070a8205c24ed2e5c5935ba0e240 100644 --- a/experiments/figures/fewshots/qa.friend-ally_of.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.friend-ally_of.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7440817ef7c66b535f0131b58282744e5e40931144b1b57b97d2cbc40735def -size 155766 +oid sha256:a800d1aa916b767dae765dca0879c2cfa7987a52a46dfe745fa5d1a64eee7934 +size 165827 diff --git a/experiments/figures/fewshots/qa.friend-ally_of.fewshot.png b/experiments/figures/fewshots/qa.friend-ally_of.fewshot.png index 9a72bb092980da4821aa5640b934224d28492043..f2fd63ea566d9f5b005b2c4e783baaa37e0a15a8 100644 --- a/experiments/figures/fewshots/qa.friend-ally_of.fewshot.png +++ b/experiments/figures/fewshots/qa.friend-ally_of.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca429f88a8bcd4aeb938c7dbd6c13023cab41df8ffa8e74ef588f47b043a5ebc -size 105311 +oid sha256:3d96c09dc5052d755ead25a38388abe1890958355b80a72c9d944f33244d3246 +size 114827 diff --git a/experiments/figures/fewshots/qa.influenced_by.fewshot.landscape.png b/experiments/figures/fewshots/qa.influenced_by.fewshot.landscape.png index a2cc08ebea4c1ffa3cc24f6b9b759f7236cb8562..d6a0d8e085eed2446bbc13fefecfb7cce1ff43d9 100644 --- a/experiments/figures/fewshots/qa.influenced_by.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.influenced_by.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00e7f87b5bcde44ae1f04188e923ba00d63c289cfae4bdd8d6dceb3c32d6176a -size 166459 +oid sha256:110386fb35a805f4f4cd72790b4f9bc94324f1c8de30d95ed48de8323b3d8afa +size 168844 diff --git a/experiments/figures/fewshots/qa.influenced_by.fewshot.png b/experiments/figures/fewshots/qa.influenced_by.fewshot.png index 7ac09e4422ed95feaa303b24885215d88192bc67..feeb0cb3cd018d3738daf33584765a9a79141b32 100644 --- a/experiments/figures/fewshots/qa.influenced_by.fewshot.png +++ b/experiments/figures/fewshots/qa.influenced_by.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dfda5bc61caacefab6ae6deb2622f05180f9ec6488b5534f60542f0a867b2a92 -size 115825 +oid sha256:921371ba729f0a64dba9fc5320471333977b6c5c9b555923834cd44287ef92fc +size 117709 diff --git a/experiments/figures/fewshots/qa.known_for.fewshot.landscape.png b/experiments/figures/fewshots/qa.known_for.fewshot.landscape.png index fa7bf7aa1b0fcfce80351c742b11f67a7e585503..759733a54caff0b15bed7328002c8fac668a102c 100644 --- a/experiments/figures/fewshots/qa.known_for.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.known_for.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78739ca87b55f65f4aa2ad149c7dff6d923a1b3b8cae8bbfbd7dd26957a56198 -size 166561 +oid sha256:bcb42240eecfb1af8717127f847376b3712fbaa6c79c923cfee8bd1e66178954 +size 160505 diff --git a/experiments/figures/fewshots/qa.known_for.fewshot.png b/experiments/figures/fewshots/qa.known_for.fewshot.png index f9f565917f219ded0f38f5e6d5d845b19c4abf95..f590dd04b619c4d912c0ee457f0060a3d80dc78d 100644 --- a/experiments/figures/fewshots/qa.known_for.fewshot.png +++ b/experiments/figures/fewshots/qa.known_for.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cdc9d8bc2ebf3ca38c9dbcc0b950291df1cdad223674649c1ec0258f88da9a4 -size 115915 +oid sha256:14df37e57a596860f82debdcb7d5bc05ec0336ee21b5799f548505b21cddd3aa +size 109671 diff --git a/experiments/figures/fewshots/qa.similar_to.fewshot.landscape.png b/experiments/figures/fewshots/qa.similar_to.fewshot.landscape.png index 9efae0a8cb76623298c24625c31d484f689a42f9..866b9d8ee9b1b97ea2d5acd8d096725c35818f38 100644 --- a/experiments/figures/fewshots/qa.similar_to.fewshot.landscape.png +++ b/experiments/figures/fewshots/qa.similar_to.fewshot.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2522975931ca1da16a8bce26602c1d9c6afaeb17f6051f5b2f2eec630e4045f3 -size 161902 +oid sha256:c57208283d6f14c18bc31f4d4215c2a02fcb9b1ce46b6ae90a1a0a6025d5311c +size 173961 diff --git a/experiments/figures/fewshots/qa.similar_to.fewshot.png b/experiments/figures/fewshots/qa.similar_to.fewshot.png index 36f86b7bf44d29746c5fe8a599f9c83d08f45d84..593ba23e65a0cc4c75503ed187ac6a7f702e5566 100644 --- a/experiments/figures/fewshots/qa.similar_to.fewshot.png +++ b/experiments/figures/fewshots/qa.similar_to.fewshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e85cd5c7ee559655cec553115c5143c2447633121c1da4c429d0ad65c0604eb -size 111240 +oid sha256:6e126cc779cd81a58783f9ad4f95496e65af9f3ced46d076322eb26d55261048 +size 121290 diff --git a/experiments/figures/main/lc.average.landscape.png b/experiments/figures/main/lc.average.landscape.png index fcf125d9188b8dd383da29800c37aeb92fabe30c..23a2d6527f61581392474c8b9e101ae8e229fbf1 100644 --- a/experiments/figures/main/lc.average.landscape.png +++ b/experiments/figures/main/lc.average.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d603fbc06d099186bdcd2c8e85caf3be86c90a80f3824aabef53943299204f7 -size 323732 +oid sha256:36943682fe922b7f92499355050bb90da863afaa42313c5fb9124ed48fc4a346 +size 323454 diff --git a/experiments/figures/main/lc.average.png b/experiments/figures/main/lc.average.png index 49c344be8749a22bd5f9ac77b4f073bf37549b2c..7b402854ed91b15988ee857044db73335db908a8 100644 --- a/experiments/figures/main/lc.average.png +++ b/experiments/figures/main/lc.average.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50282745c472c6305616fcd906c9922a754ecc76f204573bcdd83032bd3a5552 -size 237254 +oid sha256:194937695fd40626706381f1524eff8f68c18b6ca7ee361f4a2d64cc182b6929 +size 239753 diff --git a/experiments/figures/main/lc.competitor-rival_of.landscape.png b/experiments/figures/main/lc.competitor-rival_of.landscape.png index 0ce3cf1a442e7236320b4322d29147e679711f38..46b569bc84c880f2932c5abb223542d49d3c5d71 100644 --- a/experiments/figures/main/lc.competitor-rival_of.landscape.png +++ b/experiments/figures/main/lc.competitor-rival_of.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c188e8da22dfebe8e81194138f98db7aeecccfd7863063af8a943a2bbd56ea55 -size 323354 +oid sha256:ece47a3b5b6d46309770635fc4a427f8aa9e7d42907d3a1c1eb80968004aba5c +size 319239 diff --git a/experiments/figures/main/lc.competitor-rival_of.png b/experiments/figures/main/lc.competitor-rival_of.png index c33f4979dac680a3542b77f6cb825d44599dbe23..92e020f6bf0d3c9f5d00a52fbdbd4047e9be3920 100644 --- a/experiments/figures/main/lc.competitor-rival_of.png +++ b/experiments/figures/main/lc.competitor-rival_of.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:339f7ae2025dfda9c107fc7ac8a92c95cd017715353b58ad3257e126f6e19b8c -size 235989 +oid sha256:696b33e1f9a86c2faf35fbea3250b5ace827566bf5f67af77556a88f0b254564 +size 234376 diff --git a/experiments/figures/main/lc.friend-ally_of.landscape.png b/experiments/figures/main/lc.friend-ally_of.landscape.png index 5f66571a5d552c35652dcbcdbf346a931488e15c..850758feb54f5e76f738354eeef09decac4b6314 100644 --- a/experiments/figures/main/lc.friend-ally_of.landscape.png +++ b/experiments/figures/main/lc.friend-ally_of.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4d4a13f35d26797f7f18df2a4b7ffd2cef9c0313a09fcce2b444110382e421a -size 351097 +oid sha256:cd0a9b36bc3ef0ff965a51944705a8fab000046a48e45137b1c21978dd903b65 +size 341407 diff --git a/experiments/figures/main/lc.friend-ally_of.png b/experiments/figures/main/lc.friend-ally_of.png index 9a6eaa9278aeb194b535b52505ceb7a157dc704a..be548ff71864acef1a48506efb2f48a0473e28c9 100644 --- a/experiments/figures/main/lc.friend-ally_of.png +++ b/experiments/figures/main/lc.friend-ally_of.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be86aa838bb6895a1b3ac06b404199237046e3ab4fc0ae5b5bf455f837eba110 -size 262858 +oid sha256:42b2dbc64f74f296b6691c630cb599200fec34122c6076fe9c5a039093408645 +size 250969 diff --git a/experiments/figures/main/lc.influenced_by.landscape.png b/experiments/figures/main/lc.influenced_by.landscape.png index 52676394fd2ffb5fef8b85c524acc5647cf21357..9c31f893aa3484363cce9cf91d0e9476c798a857 100644 --- a/experiments/figures/main/lc.influenced_by.landscape.png +++ b/experiments/figures/main/lc.influenced_by.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0f9ee0aa1ea8a52c641d66727933976a58c7f4aeec8b3e96a36bd6992ff9725 -size 350661 +oid sha256:0fcf402e9347d42d0d1b78cf4a1d2130d813d70d25f4aef75a8e468b17b31d97 +size 350686 diff --git a/experiments/figures/main/lc.influenced_by.png b/experiments/figures/main/lc.influenced_by.png index 0265a3554d26e0e1ee816879ccc70ea35cfdeb78..53f4097cf178316de91ece74e6bc229fe4700ab6 100644 --- a/experiments/figures/main/lc.influenced_by.png +++ b/experiments/figures/main/lc.influenced_by.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22fc7693e3dc8865e08290fff526ed27a7b040b537d8cd87a00eb440087376cf -size 262575 +oid sha256:a3e67fbccef74d84f79eb0d8fc385e743b5b39d2ca45b6a23c58e3e5349a9bf1 +size 259236 diff --git a/experiments/figures/main/lc.known_for.landscape.png b/experiments/figures/main/lc.known_for.landscape.png index e5a57752460a86e705d8b8b5231ad556f4cc07bc..581ddca1d09b0292e7213115323cc87c2ba87989 100644 --- a/experiments/figures/main/lc.known_for.landscape.png +++ b/experiments/figures/main/lc.known_for.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20f44039d7e435ad17cbede0e41fc0365978d14b1db7c490914a8f9879de3be8 -size 324503 +oid sha256:fc3769670a12042cdecdff650b70ce7e40965ca1fd73b6aff3527a855ee5ed1a +size 326193 diff --git a/experiments/figures/main/lc.known_for.png b/experiments/figures/main/lc.known_for.png index 8f663449d25c2002de46c4654939eca33317ec0d..69fcce5dca1c2a0fde31390f41952b250f92fce1 100644 --- a/experiments/figures/main/lc.known_for.png +++ b/experiments/figures/main/lc.known_for.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47e09b1c88205ff2bd352be9e2c1af2b7f1412ab2849420f7cea773943353fd1 -size 236574 +oid sha256:fedf58e2209d8bb573f8b19ab1bae2450ca1d7cb4d91b22e185cdb08fbc2ef9e +size 241997 diff --git a/experiments/figures/main/lc.similar_to.landscape.png b/experiments/figures/main/lc.similar_to.landscape.png index 3aafc1c98e950d8f6648826e6c97c43289be0255..2644af49546e8fc6fd2f604cf41b3f5637a2f4bd 100644 --- a/experiments/figures/main/lc.similar_to.landscape.png +++ b/experiments/figures/main/lc.similar_to.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38298e7f6917000a17811372544181cd6e967cb6cbe95dc3361f19ee562a045c -size 326459 +oid sha256:f45c5124109f5c500df3e3c427d3b59e8b92b4207b7d0e21a70526e009877363 +size 315031 diff --git a/experiments/figures/main/lc.similar_to.png b/experiments/figures/main/lc.similar_to.png index da95ad03dbc742118663ad775dc4118464bf0f49..bbad959871e8ff7d0a717ae85a2a284c80d2005d 100644 --- a/experiments/figures/main/lc.similar_to.png +++ b/experiments/figures/main/lc.similar_to.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa4f4988f1e442ce3ed841dbed0249bb9ebd5fe545c832cf3ffb44e63090cd04 -size 239446 +oid sha256:226741896c612aae2ed3cd8d9179df943b7fbe367465f7697c4e2495ab26391c +size 231875 diff --git a/experiments/figures/main/qa.average.landscape.png b/experiments/figures/main/qa.average.landscape.png index 395c2a11ff294790bd822cf4ad2c248f1d866e9e..d779d41778014fa72a76dd88262b314fec811721 100644 --- a/experiments/figures/main/qa.average.landscape.png +++ b/experiments/figures/main/qa.average.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e7c31998c85ab64f20321abafae8da07788698ccb12cadbcd4cf03ce8fafc8c -size 284975 +oid sha256:34fce488354d7c1ee87ed9ad345e4c08a5921507689b2654936afeb3a5778264 +size 291954 diff --git a/experiments/figures/main/qa.average.png b/experiments/figures/main/qa.average.png index 0611a413751c9808f87285ee1e248ce91e70bb86..6c548b1247fa207e7d0c6d284899f715e18cb1bc 100644 --- a/experiments/figures/main/qa.average.png +++ b/experiments/figures/main/qa.average.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aff8c5debfa5e5dc1870cc4b4f41f3f32e006679b6015c7321bbbd7f2a2ffee6 -size 184160 +oid sha256:a8cc9bfc2ff7ef24315fe042d72f971930b1081c614b406406f3858d4148cf78 +size 187360 diff --git a/experiments/figures/main/qa.competitor-rival_of.landscape.png b/experiments/figures/main/qa.competitor-rival_of.landscape.png index 09977f0d4376845a6456e3c4d1933fa73b36cc99..3fbadbb2cafcf7df2c80fd0dbf98d62bb04d7d81 100644 --- a/experiments/figures/main/qa.competitor-rival_of.landscape.png +++ b/experiments/figures/main/qa.competitor-rival_of.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce3ecbee98ae4f5a128e0306eae6090dcaafdfa92867a9c520a61f61138bdb8f -size 263780 +oid sha256:5d208f0b58f77d6deac3845909d20c83eaeb535b224eba3d5fdd970d86eb9766 +size 273130 diff --git a/experiments/figures/main/qa.competitor-rival_of.png b/experiments/figures/main/qa.competitor-rival_of.png index 31a9a6c9294c7a261a77f39d2e5ce0899d8b505d..9721be84bbe6de9ff8d25dc57342f11ef83bee70 100644 --- a/experiments/figures/main/qa.competitor-rival_of.png +++ b/experiments/figures/main/qa.competitor-rival_of.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2daa119c698c9b63afb6ed42d14704bf3bc9fa2205bcde386303a98a1da70e0 -size 165083 +oid sha256:ca31e81e31f61485b5c4071383d3dc6eeca35ba8ce42dc27f29ada27905be329 +size 169566 diff --git a/experiments/figures/main/qa.friend-ally_of.landscape.png b/experiments/figures/main/qa.friend-ally_of.landscape.png index deb1aea94953eff36efab7fc6420bfe1c660fec2..ae8425393f9ef2580413f93e4812756fe70a9750 100644 --- a/experiments/figures/main/qa.friend-ally_of.landscape.png +++ b/experiments/figures/main/qa.friend-ally_of.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:164c8eb72b1840aa425154674d02ac7104ea613f219c08315b7f35061139075d -size 272837 +oid sha256:6a1a16ae2cf978bd27d244cd5c0d9ec73b60f2eb00df579477aea5dafbcf108c +size 293453 diff --git a/experiments/figures/main/qa.friend-ally_of.png b/experiments/figures/main/qa.friend-ally_of.png index d21869ef0b0f711c7e559f19c8cd26110fcf8d5d..bc924d1e5f593ed10c50ce8b79bf88ac1a579d62 100644 --- a/experiments/figures/main/qa.friend-ally_of.png +++ b/experiments/figures/main/qa.friend-ally_of.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ba2b8c58b8503d17cea0d9bf93dd9d77c4a53cd9501a90402150e8887030465 -size 174660 +oid sha256:b7a5a0eeae51b092ef6b49afdd89e3c7889e0be56301e16992db86a2eeb79e60 +size 186902 diff --git a/experiments/figures/main/qa.influenced_by.landscape.png b/experiments/figures/main/qa.influenced_by.landscape.png index ad1b374cc4a7af011fd8ec18c0291716d577f349..f8e586810de08f879c7c64b2a8bc51f50f1dbb70 100644 --- a/experiments/figures/main/qa.influenced_by.landscape.png +++ b/experiments/figures/main/qa.influenced_by.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcb1ec32c56cf0ed68cd3e8648a9329ccd91185275d53def12a77e5705a2ebf7 -size 313032 +oid sha256:5ddffb2e87d1b44d510f7c03205fee1cc36c23c7963b021208e5b0f8c6c93d7f +size 311904 diff --git a/experiments/figures/main/qa.influenced_by.png b/experiments/figures/main/qa.influenced_by.png index 07935b5794c812a14760442e9d6d8dce36b1a3ad..09fd0a71099e8363670b0e8c6c952fb5f87f4402 100644 --- a/experiments/figures/main/qa.influenced_by.png +++ b/experiments/figures/main/qa.influenced_by.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:201a21f2c9aaad499160234afee80c4685a37020f700669ed72d31848f1468e7 -size 205821 +oid sha256:da8411f4cc4a06271812b11fe91bf8fb8aa62c0ab79e45c6b318dfdd99f545fa +size 201455 diff --git a/experiments/figures/main/qa.known_for.landscape.png b/experiments/figures/main/qa.known_for.landscape.png index dc2931f4a2ae81a6c7c2306fb574d36086722d41..fa425880d322f2227afe95242fb0930c4b3a35aa 100644 --- a/experiments/figures/main/qa.known_for.landscape.png +++ b/experiments/figures/main/qa.known_for.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f99cae686ce5158dd5c3c47b2b4cacef3866af28edff27cba30e5263639c22b -size 304766 +oid sha256:3d8c95b01abffb9dabc17cfdec10c598c64c588c4eb01ebe3c89fd8798d3cd55 +size 309475 diff --git a/experiments/figures/main/qa.known_for.png b/experiments/figures/main/qa.known_for.png index 508970f3af7a746edbf82a86a9eb7e06f60cd209..9ca020b391a7ee6b10b675f62a9d01ae5ec34033 100644 --- a/experiments/figures/main/qa.known_for.png +++ b/experiments/figures/main/qa.known_for.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c8b28d0eff629c5316292be0cc0723140dc18bf87199242fd515d8fc0e7bd26 -size 193491 +oid sha256:ab51a757c8ba29108b1d4a046c33f0b6572716b24b86e4583b60f7e7c1fc3209 +size 196935 diff --git a/experiments/figures/main/qa.similar_to.landscape.png b/experiments/figures/main/qa.similar_to.landscape.png index 24070b0a255de151da0a2cad1cb0616dfd8f3536..c059eac095d43cb2cf6d59d64b8a6775d5b969c2 100644 --- a/experiments/figures/main/qa.similar_to.landscape.png +++ b/experiments/figures/main/qa.similar_to.landscape.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f016ecf4b968724216916093cedacf0eb1430c425a235259fbe8d77413d1e066 -size 285754 +oid sha256:c2faf645af2c030474502e598b6aab5a1b673cf1785660cef2d13130b8370c4f +size 290602 diff --git a/experiments/figures/main/qa.similar_to.png b/experiments/figures/main/qa.similar_to.png index 186f0bee3096b14edf298f8a7ea08473097aa54d..50649322d87262024781728f7a8df4beb537c312 100644 --- a/experiments/figures/main/qa.similar_to.png +++ b/experiments/figures/main/qa.similar_to.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6528e314598ee8535f59fd682922d45a3da9cbca0c3f124d2d6cb1c9be732b56 -size 178310 +oid sha256:78b4ecdc6c2194a06ced2038b5f9a76670cbd5e43d57552603dc159095e9eadb +size 177682 diff --git a/experiments/results/chat/gpt-3.5-turbo.competitor-rival_of.json b/experiments/results/chat/gpt-3.5-turbo.competitor-rival_of.json index 8a7806802a613c98c6fb42fefd7bbbed485b9218..f863cf856643ba1cc4fbc892bf0c8ceccc98c4f5 100644 --- a/experiments/results/chat/gpt-3.5-turbo.competitor-rival_of.json +++ b/experiments/results/chat/gpt-3.5-turbo.competitor-rival_of.json @@ -1,19 +1,100 @@ -1. Liverpool FC - Manchester United -2. Apple - Microsoft -3. Microsoft - Google -4. Netflix - Disney Plus -5. PyTorch - TensorFlow -6. Razer - Dell -7. Spotify - Apple -8. Manchester United - Arsenal -9. Saudi Arabia - Israel -10. Coca-Cola Company - Pepsi -11. Twitter - Facebook -12. Arsenal - Tottenham Hotspur -13. Nintendo - Xbox -14. Liverpool FC - Manchester City -15. Nike - Adidas -16. Manchester City - Manchester United -17. Amazon - Ebay -18. McDonald's - Burger King -19. Sprite - 7 Up \ No newline at end of file +1. Apple, Microsoft +2. Manchester United, Arsenal +3. Twitter, Facebook +4. Samsung, Pitbull +5. Netflix, Disney Plus +6. Tesla, Skoda +7. Nike, Adidas +8. Amazon, Ebay +9. Microsoft, Google +10. Spotify, Apple +11. BMW, Mercedes-Benz +12. Coca-Cola Company, Pepsi +13. Arsenal, Tottenham Hotspur +14. Liverpool FC, Manchester United +15. Israel, Palestine +16. Royal Feast, Fast X +17. Russia, China +18. H&M, Zalora +19. Bashar al-Assad, Christianity +20. US, China +21. AWS, GCP +22. Sanpellegrino, Volvic +23. Dyson, Dualit +24. Neoclassicism, Romanticism +25. Mitsubishi, LAM Research +26. John Tyler, Whig Party +27. Casio, Texas Instruments +28. Hermione Granger, Sharon Osbourne +29. Isambard Kingdom Brunel, Rick Astley +30. Serena Williams, Andy Murray +31. Cristiano Ronaldo, Lionel Messi +32. Louis Philippe, Peter England +33. Y Combinator, 500 Startups +34. Germany, Austria +35. Nokia, Ericsson +36. Federal Reserve Board, Bank of England +37. Cardiff University, Swansea University +38. Noel Gallagher, Liam Gallaguer +39. Kepler's laws of planetary motion, The Pythagorean theorem +40. Belle Delphine, Pooh Shiesty +41. Jeff Bezos, Elon Musk +42. NeVeRLoSe, NaVi +43. VAMPIRE: The Masquerade - Bloodlines, Binaural recording +44. Pyramid scheme, Salt +45. The Wu-Tang Clan, The Carters +46. Mario, Bowser +47. Hertha BSC, Werder Bremen +48. Hans Zimmer, John Williams +49. USA, Canada +50. Alain Prost, Ayrton Senna +51. Mikhail Khodorkovsky, Hezbollah +52. EuroBasket 2022, Murad III +53. Lee Chong Wei, Lin Dan +54. Razer, Dell +55. Twitter, WhatsApp +56. WeChat, WhatsApp +57. Saudi Arabia, Israel +58. Nicolas Cage, Cassette tapes +59. Didier Deschamps, Scott Adkins +60. Lionel Messi, Kylian Mbappé +61. Steve Jobs, Atlanta +62. Bella Hadid, Choi Woo-shik +63. Mali, Frances McDormand +64. Khabib Nurmagomedov, Conor McGregor +65. Isaac Newton, Gottfried Leibniz +66. ASML, LAM Research +67. Tottenham Hotspur, West Ham United +68. Blur, Oasis +69. Toshiba, LG +70. Apple, Rolex +71. Thomas Jefferson, Alexander Hamilton +72. Chester FC, Wrexham FC +73. Line of Duty, CSI +74. Gladiator, Imelda Staunton +75. UK, France +76. Manchester City, Manchester United +77. BBC, The Guardian +78. Sir Alex Ferguson, Jose Mourinho +79. ASEAN, Helen Hunt +80. Beatles, Rolling Stones +81. Eminem, MGK +82. Katharine Hepburn, Abrahamic religion +83. Martin Luther King Jr., Malcolm X +84. Ligue 1, Hayley Atwell +85. Vikram, Coen brothers +86. Mohamed Salah, Korea +87. Kingston, Samsung +88. Olympic Games, Helicobacter pylori +89. US, Russia +90. Federal Reserve Board, European Central Bank +91. Numb3rs, The Da Vinci Code +92. Aldi, Lidl +93. Coca-Cola Company, Fanta +94. Line of Duty, The Bill +95. The Wizarding World of Harry Potter, A Song of Ice and Fire +96. David Bowie, Freddie Mercury +97. DHL, Federal Express +98. Volvo, Saab +99. United States presidential election, 2020, Eurovision Song Contest 2021 +100. Pizza Hut, Domino's Pizza \ No newline at end of file diff --git a/experiments/results/chat/gpt-3.5-turbo.friend-ally_of.json b/experiments/results/chat/gpt-3.5-turbo.friend-ally_of.json index d8920c3e853f8e85caa7548232fe3becc1c6a63c..44da33ad52d60ad88163961a3661973fe7f1d3b9 100644 --- a/experiments/results/chat/gpt-3.5-turbo.friend-ally_of.json +++ b/experiments/results/chat/gpt-3.5-turbo.friend-ally_of.json @@ -1,79 +1,61 @@ -1. ['Australia', 'New Zealand'] -2. ['Aznar', 'Bush'] -3. ['Extinction Rebellion', 'Greta Thunberg'] -4. ['Elsa', 'Anna'] -5. ['CIA', 'MI6'] -6. ['UK', 'Commonwealth'] -7. ['Singapore', 'Israel'] -8. ['India', 'US'] -9. ['US', 'Canada'] -10. ['UN', 'NATO'] -11. ['Germany', 'France'] -12. ['Spain', 'Portugal'] -13. ['France', 'Belgium'] -14. ['Malaysia', 'Singapore'] -15. ['Islamic State', 'Denys Prokopenko'] -16. ['China', 'North Korea'] -17. ['Armenia', 'Azerbaijan'] -18. ['Russia', 'Georgia'] -19. ['Japan', 'Taiwan'] -20. ['South Korea', 'Japan'] -21. ['UK', 'Ireland'] -22. ['Turkey', 'All Nippon Airways'] -23. ['Pedro Sánchez', 'Pablo Iglesias'] -24. ['Hillary Clinton', 'Barack Obama'] -25. ['Rishi Sunak', 'Leo Varadkar'] -26. ['Boris Johnson', 'Emmanuel Macron'] -27. ['Di Maio', 'Salvini'] -28. ['Brazil', 'India'] -29. ['Kylo Ren', 'Rey'] -30. ['Keir Starmer', 'Jeremy Corbyn'] -31. ['Margaret Thatcher', 'Ronald Reagan'] -32. ['Singapore', 'Malaysia'] (Removing duplicate) -33. ['UK', 'Australia'] (Removing duplicate) -34. ['Cersei Lannister', 'Euron Greyjoy'] -35. ['FTX', 'Alameda Research'] -36. ['Sophia Loren', 'Marlon Brando'] -37. ['Paul Rudd', 'Memento'] -38. ['Jean-Michel Basquiat', 'Andy Warhol'] -39. ['India', 'Brazil'] -40. ['Nikon', 'Tokina'] -41. ['Google', 'Samsung'] -42. ['IMF', 'The World Bank'] -43. ['Instagram', 'WhatsApp'] -44. ['Windows', 'Xbox'] -45. ['Johnny Cash', 'Waylon Jennings'] -46. ['Oman', 'Iran'] -47. ['China', 'Huawei'] -48. ['Amazon', 'Royal Mail'] -49. ['Red Bull', 'GoPro'] -50. ['HSBC', 'BlackRock'] -51. ['Tata Motors', 'Jaguar'] -52. ['KGB', 'CIA'] -53. ['JP Morgan', 'Morgan Stanley'] -54. ['Eva Perón', 'Interpol'] -55. ['Eastern Orthodoxy', 'Oriental Orthodoxy'] -56. ['Darth Vader', 'Emperor Palpatine'] -57. ['Doja Cat', 'Anthony Albanese'] -58. ['Thomas Jefferson', 'Kid Cudi'] -59. ['Liam Gallagher', 'Noel Gallagher'] -60. ['Quentin Tarantino', 'Edgar Wright'] -61. ['Rishi Sunak', 'Joe Biden'] -62. ['Macbeth', 'Banquo'] -63. ['Ron Weasley', 'Neville Longbottom'] -64. ['Bob Marley', 'Abu Bakr'] -65. ['Noah Schnapp', 'Galatasaray S.K.'] -66. ['Kendall Jenner', 'Bergen'] -67. ['Porter Wagoner', 'Dolly Parton'] -68. ['Stephen Hawking', 'Brian Cox'] -69. ['Johnny Knoxville', 'Catherine Zeta-Jones'] -70. ['Mark Drakeford', 'Rishi Sunak'] -71. ['J.R.R. Tolkien', 'C.S. Lewis'] -72. ['Beatles', 'Rolling Stones'] -73. ['Benedict Cumberbatch', 'Hanukkah'] -74. ['United States', 'United Kingdom'] -75. ['Linus Sebastian', 'Marques Brownlee'] -76. ['Saturn', 'Rachel Bilson'] -77. ['Huawei', 'China'] -78. ['Achilles', 'Jonathan Bailey'] -79. ['The Beatles', 'Queen'] \ No newline at end of file +Sorted list: + +['UK', 'Commonwealth'] +['US', 'Canada'] +['France', 'Belgium'] +['Singapore', 'Israel'] +['Eastern Orthodoxy', 'Oriental Orthodoxy'] +['India', 'US'] +['IMF', 'The World Bank'] +['United States', 'United Kingdom'] +['Coca-Cola', "McDonald's"] +['Instagram', 'WhatsApp'] +['US', 'Canada'] +['Amazon', 'Royal Mail'] +['The Beatles', 'Queen'] +['Microsoft', 'LinkedIn'] +['Russia', 'Georgia'] +['Germany', 'France'] +['UN', 'NATO'] +['Boris Johnson', 'Emmanuel Macron'] +['Japan', 'Taiwan'] +['Rishi Sunak', 'Joe Biden'] +['Keir Starmer', 'Jeremy Corbyn'] +['UK', 'Ireland'] +['Brazil', 'India'] +['Malaysia', 'Singapore'] +['Oman', 'Iran'] +['Spain', 'Portugal'] +['China', 'North Korea'] +['Margaret Thatcher', 'Ronald Reagan'] +['Hong Kong', 'HSBC'] +['Porter Wagoner', 'Dolly Parton'] +['Mark Drakeford', 'Rishi Sunak'] +['Jürgen Klopp', 'Exo'] +['Benedict Cumberbatch', 'Hanukkah'] +['Rishi Sunak', 'Emmanuel Macron'] +['Johnny Cash', 'Waylon Jennings'] +['Jean-Michel Basquiat', 'Andy Warhol'] +['Stephen Hawking', 'Brian Cox'] +['Germany', 'France'] +['Saturn', 'Rachel Bilson'] +['Windows', 'Xbox'] +['Huawei', 'China'] +['Paul Rudd', 'Memento'] +['Nikon', 'Tokina'] +['IMF', 'The World Bank'] +['Google', 'Samsung'] +['Red Bull', 'GoPro'] +['HSBC', 'BlackRock'] +['JP Morgan', 'Morgan Stanley'] +['Sophia Loren', 'Marlon Brando'] +['J.R.R. Tolkien', 'C.S. Lewis'] +['Walter White', 'Gus Fring'] +['Ron Weasley', 'Neville Longbottom'] +['Darth Vader', 'Emperor Palpatine'] +['UK', 'Australia'] +['Australia', 'New Zealand'] +['CIA', 'MI6'] +['Aznar', 'Bush'] +['Extinction Rebellion', 'Greta Thunberg'] +['Elsa', 'Anna'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-3.5-turbo.influenced_by.json b/experiments/results/chat/gpt-3.5-turbo.influenced_by.json index 6b01413221507745e426577736f15e55fcbfc9b2..7835a3a471f5abf8b153de0f0befc121c202617b 100644 --- a/experiments/results/chat/gpt-3.5-turbo.influenced_by.json +++ b/experiments/results/chat/gpt-3.5-turbo.influenced_by.json @@ -1,74 +1,82 @@ -The sorted list would be: - -['Plato', 'Socrates'] -['Messi', 'Maradona'] -['European Union', 'Germany'] -['Ethereum', 'Bitcoin'] -['Beethoven', 'Mozart'] -['India', 'Gandhi'] -['impressionism', 'Edouard Manet'] -['Bitcoin', 'blockchain'] -['Quentin Tarantino', 'Sergio Leone'] -['Windows', 'Linux'] -['NVIDIA', 'AMD'] -['Radiohead', 'David Bowie'] -['James Brown', 'Michael Jackson'] -['Stephen Foster', 'Thomas Moore'] -['Hoover', 'Dyson'] -['Mark Rothko', 'Claude Monet'] -['Oasis', 'Blur'] -['Bangladesh', 'India'] -['Bruno Mars', 'James Brown'] -['heavy metal', 'punk music'] -['Moon', 'Göbekli Tepe'] -['English', 'William Shakespeare'] -['Stephen King', 'Arthur Machen'] -['Coca-Cola', 'Pepsi'] -['Cobra Kai', 'Anna Chlumsky'] -['Harry Potter', 'Wizard of Oz'] -['machine learning', 'Google'] -['Facebook', 'LinkedIn'] -['Antonio Salazar', 'fascism'] -['Singaporean food', 'Malaysian food'] -['Guess', 'Gucci'] -['Commonwealth', 'United Kingdom'] -['painters', 'Stable Diffusion'] -['Walmart', 'Rivaldo'] -['Sauron', 'Shiba Inu'] -['Nintendo Switch', 'Playstation 4'] -['Hip hop', 'Rap music'] -['Taiwan', 'China'] -['Kylian Mbappe', 'Cristiano Ronaldo'] -['Picasso', 'cubism'] -['Miley Cyrus', 'Lorde'] -['Neymar', 'Alexis Sánchez'] -['Smashing Pumpkins', 'Beatles'] -['Portuguese', 'The Prestige'] -['Luke Evans', 'Ava Gardner'] -['MacOS', 'Linux'] -['Transport for Wales', 'National Rail'] -['Herbie Hancock', 'Miles Davis'] -['India', 'Hinduism'] -['hip hop', 'jazz'] -['Bob Dylan', 'Woody Guthrie'] -['Tim Burton', 'German expressionism'] -['Eamon de Valera', 'James Napper Tandy'] -['Joe Biden', 'Donald Trump'] -["Shaquille O'Neal", 'Selim II'] -['Lord of the Rings', 'Beowulf'] -['LinkedIn', 'Facebook'] -['Picasso', 'Cezanne'] -['Playstation', 'Xbox'] -['Kevin Spacey', 'Tenerife'] -['Saudi Arabia', 'US'] -['Fitbit', 'heart rate monitor'] -['F1', 'social media'] -['Elton John', 'Elvis Presley'] -['Jack Black', 'Waffen-SS'] -['Game of Thrones', 'Lord of the Rings'] -['Canon', 'Nikon'] -['Thomas Aquinas', 'Aristotle'] -['Android', 'iOS'] -['Charles Baudelaire', 'Tornado MRCA'] -['trending music', 'TikTok'] -['Xi Jinping', 'Kim Jong-il'] \ No newline at end of file +1. ['European Union', 'Germany'] +2. ['Elton John', 'Elvis Presley'] +3. ['Canon', 'Nikon'] +4. ['Thomas Aquinas', 'Aristotle'] +5. ['Android', 'iOS'] +6. ['trending music', 'TikTok'] +7. ['Xi Jinping', 'Kim Jong-il'] +8. ['Beethoven', 'romanticism'] +9. ['Edgar Allan Poe', 'Romanticism'] +10. ['US', 'NASA'] +11. ['Wales', 'Westminster'] +12. ['Sierra Leone', 'Pulp fiction'] +13. ['Theresa May', 'David Cameron'] +14. ['Anna Delvey', 'Bernie Madoff'] +15. ['Andrew Johnson', 'Abraham Lincoln'] +16. ['LinkedIn', 'Facebook'] +17. ['Picasso', 'Cezanne'] +18. ['Playstation', 'Xbox'] +19. ['Saudi Arabia', 'US'] +20. ['Fitbit', 'heart rate monitor'] +21. ['Taiwan', 'China'] +22. ['Kylian Mbappe', 'Cristiano Ronaldo'] +23. ['Picasso', 'cubism'] +24. ['Miley Cyrus', 'Lorde'] +25. ['Neymar', 'Alexis Sánchez'] +26. ['Smashing Pumpkins', 'Beatles'] +27. ['Portuguese', 'The Prestige'] +28. ['Luke Evans', 'Ava Gardner'] +29. ['MacOS', 'Linux'] +30. ['Transport for Wales', 'National Rail'] +31. ['Herbie Hancock', 'Miles Davis'] +32. ['India', 'Hinduism'] +33. ['hip hop', 'jazz'] +34. ['Bob Dylan', 'Woody Guthrie'] +35. ['Tim Burton', 'German expressionism'] +36. ['Eamon de Valera', 'James Napper Tandy'] +37. ['Joe Biden', 'Donald Trump'] +38. ["Shaquille O'Neal", 'Selim II'] +39. ['Cobra Kai', 'Anna Chlumsky'] +40. ['Harry Potter', 'Wizard of Oz'] +41. ['Coca-Cola', 'Pepsi'] +42. ['Apple Music', 'Spotify'] +43. ['Singaporean food', 'Malaysian food'] +44. ['Guess', 'Gucci'] +45. ['Commonwealth', 'United Kingdom'] +46. ['machine learning', 'Google'] +47. ['Antonio Salazar', 'fascism'] +48. ['Hank Williams', 'Jimmie Rodgers'] +49. ['painters', 'Stable Diffusion'] +50. ['Walmart', 'Rivaldo'] +51. ['Sauron', 'Shiba Inu'] +52. ['Bruno Mars', 'James Brown'] +53. ['Brazil', 'Spain'] +54. ['heavy metal', 'punk music'] +55. ['Moon', 'Göbekli Tepe'] +56. ['English', 'William Shakespeare'] +57. ['Beatles', 'Alice in Wonderland'] +58. ['impressionism', 'Edouard Manet'] +59. ['Gilbert Gottfried', 'Mike Krieger'] +60. ['Vladimir Lenin', 'chess'] +61. ['Pepsi', 'Coca-Cola'] +62. ['Alicia Vikander', 'Richard Attenborough'] +63. ['Luke Bryan', 'Hank Williams'] +64. ['Bill Gates', 'Steve Jobs'] +65. ['Allu Arjun', 'Aaron Ramsey'] +66. ['Stephen King', 'Arthur Machen'] +67. ['Bangladesh', 'India'] +68. ['hamburger', 'Germany'] +69. ['Oasis', 'Blur'] +70. ['Quentin Tarantino', 'Sergio Leone'] +71. ['Stephen Foster', 'Thomas Moore'] +72. ['Hoover', 'Dyson'] +73. ['Mark Rothko', 'Claude Monet'] +74. ['James Brown', 'Michael Jackson'] +75. ['Windows', 'Linux'] +76. ['Radiohead', 'David Bowie'] +77. ['NVIDIA', 'AMD'] +78. ['India', 'Gandhi'] +79. ['Viktor Yushchenko', 'Bonnie Wright'] +80. ['Beethoven', 'Mozart'] +81. ['Bitcoin', 'blockchain'] +82. ['Hong Kong', 'China'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-3.5-turbo.known_for.json b/experiments/results/chat/gpt-3.5-turbo.known_for.json index 034eb68aeb0fc87829fe7dad83ab762a71722ef4..6c85d9d378e84189a6239cb57fc6549529031817 100644 --- a/experiments/results/chat/gpt-3.5-turbo.known_for.json +++ b/experiments/results/chat/gpt-3.5-turbo.known_for.json @@ -1,82 +1,97 @@ -1. Paris, Eiffel Tower -2. Italy, Renaissance -3. France, cheese -4. France, beer -5. France, beaches -6. France, cars -7. Michelangelo, Pop Art -8. Italy, wine -9. Sweden, pop -10. Valencia, paella -11. Netherlands, tulips -12. Scotland, whisky -13. Canada, maple syrup -14. Apple, iPhone -15. Apple, Apple Watch -16. Apple, MacBook -17. Google, search engine -18. Amazon, cloud computing -19. Nvidia, GPUs -20. Meta, Instagram -21. IKEA, food -22. Amazon, Alexa -23. Red Bull, energy drinks -24. Coca-Cola, Pepsi -25. Pixar, Novosibirsk -26. Neil Armstrong, Korean War -27. Tony Blair, Iraq War -28. Charles Bronson, Rory McIlroy -29. Mercedes Benz, build quality -30. Greggs, sausage rolls -31. William Grant & Sons, gin -32. LAMY, notebook -33. Adidas, Yeezy Boost -34. Boris Johnson, Brexit -35. Georgia, Joseph Stalin -36. OpenAI, ChatGPT -37. Johnny Cash, Ring of Fire -38. Microsoft, Xbox -39. Af ro-Brazilians, Capoeira -40. Harry Potter, Bloomsbury -41. The Office, IBM -42. Steve Jobs, AirPods -43. Luka Modrić, Rottweiler -44. William Shakespeare, Romeo and Juliet -45. Switzerland, banking secrecy -46. Portugal, Fado -47. Georgia, Parasite -48. Japan, sake -49. Paris, Love Lock Bridge -50. Switzerland, mountains -51. Italy, tea -52. Bill Nye, scientist -53. George Orwell, Coming Up for Air -54. Keanu Reeves, The Matrix -55. Rafael Nadal, Ralph Macchio -56. Christopher Columbus, India -57. Picasso, Guernica -58. Korea, Breakdance -59. Spain, olive oil -60. C.S. Lewis, The Screwtape Letters -61. Corsica, Napoleon Bonaparte -62. Walther P38, Lupin the Third -63. Richard Harris, Curcuma longa -64. Smashing Pumpkins, Thru the eyes of Ruby -65. India, rum -66. Parasite, Jersey -67. India, Gurkhas -68. France, rococo movement -69. Europe, The Final Countdown -70. Sophie Turner, Sylvia Plath -71. Buffon, PSG -72. Alfred Hitchcock, horror -73. Inglourious Basterds, Sergio Busquets -74. Boris Johnson, Nicolette Durazzo -75. China, coffee -76. Ragnarök, Little Boy -77. Pizzagate, Hillary Clinton -78. democracy, North Korea -79. Queen, Bohemian Rhapsody -80. Beatles, Come Together -81. Beatles, I Me Mine -82. Google, Alphabet Inc. \ No newline at end of file +1. ['Alphabet Inc.', 'Google'] +2. ['Nvidia', 'GPUs'] +3. ['OpenAI', 'ChatGPT'] +4. ['Amazon', 'cloud computing'] +5. ['Meta', 'Instagram'] +6. ['Amazon', 'Alexa'] +7. ['Microsoft', 'Xbox'] +8. ['Spotify', 'Podcasts'] +9. ['Pixar', 'Novosibirsk'] +10. ['Apple', 'Apple Watch'] +11. ['Apple', 'MacBook'] +12. ['Nintendo', 'Super Mario Bros.'] +13. ['IKEA', 'food'] +14. ['Coca-Cola', 'Pepsi'] +15. ['Red Bull', 'energy drinks'] +16. ['LAMY', 'notebook'] +17. ['Adidas', 'Yeezy Boost'] +18. ['Buffon', 'PSG'] +19. ['Greggs', 'sausage rolls'] +20. ['William Grant & Sons', 'gin'] +21. ['Gilmore Girls', 'OpenAI'] +22. ['Beatles', 'Come Together'] +23. ['Queen', 'Bohemian Rhapsody'] +24. ['Frank Abagnale Jr', 'doctor'] +25. ['Steve Jobs', 'AirPods'] +26. ['Neil Armstrong', 'Korean War'] +27. ['Jeff Goldblum', 'Jurassic Park'] +28. ['Johnny Cash', 'Ring of Fire'] +29. ['Google', 'search engine'] +30. ['France', 'cheese'] +31. ['France', 'beer'] +32. ['France', 'baguette'] +33. ['France', 'mountains'] +34. ['Spain', 'olive oil'] +35. ['Italy', 'wine'] +36. ['Italy', 'Renaissance'] +37. ['Italy', 'tea'] +38. ['Portugal', 'Fado'] +39. ['Belgium', 'wine'] +40. ['Switzerland', 'mountains'] +41. ['Switzerland', 'banking secrecy'] +42. ['Germany', 'techno music'] +43. ['UK', 'rain'] +44. ['Scotland', 'whisky'] +45. ['Canada', 'maple syrup'] +46. ['Netherlands', 'tulips'] +47. ['Japan', 'sake'] +48. ['Hawaii', 'beaches'] +49. ['France', 'cars'] +50. ['France', 'beaches'] +51. ['China', 'coffee'] +52. ['Korea', 'Breakdance'] +53. ['Spain', 'olive oil'] +54. ['Luka Modrić', 'Rottweiler'] +55. ['Rafael Nadal', 'Ralph Macchio'] +56. ['Matt Damon', "Ocean's Eleven"] +57. ['Christopher Columbus', 'India'] +58. ['Boris Johnson', 'Brexit'] +59. ['Harry Potter', 'Bloomsbury'] +60. ['Thomas Edison', 'telephone'] +61. ['Thomas Edison', 'light bulb'] +62. ['William Shakespeare', 'Romeo and Juliet'] +63. ['Charles Bronson', 'Rory McIlroy'] +64. ['Tony Blair', 'Iraq War'] +65. ['Michael Jordan', 'Tessa Thompson'] +66. ['Keanu Reeves', 'The Matrix'] +67. ['Sophie Turner', 'Sylvia Plath'] +68. ['C.S. Lewis', 'The Screwtape Letters'] +69. ['George Orwell', 'Coming Up for Air'] +70. ['Corsica', 'Napoleon Bonaparte'] +71. ['Vincent Van Gogh', 'The Starry Night'] +72. ['Picasso', 'Guernica'] +73. ['Georgia', 'Joseph Stalin'] +74. ['Andhra Pradesh', 'Martinique'] +75. ['OpenAI', 'ChatGPT'] +76. ['India', 'rum'] +77. ['India', 'Gurkhas'] +78. ['Parasite', 'Jersey'] +79. ['Pizzagate', 'Hillary Clinton'] +80. ['democracy', 'North Korea'] +81. ['Afro-Brazilians', 'Capoeira'] +82. ['Assassin's Creed', 'history'] +83. ['Inglourious Basterds', 'Sergio Busquets'] +84. ['Jackson Pollock', 'action painting'] +85. ['Richard Harris', 'Curcuma longa'] +86. ['Walther P38', 'Lupin the Third'] +87. ['Valencia', 'paella'] +88. ['Romania', 'Roman Catholicism'] +89. ['The Office', 'IBM'] +90. ['Tesla', 'groceries'] +91. ['Georgia', 'Kiribati'] +92. ['Russia', 'Little Boy'] +93. ['Memphis Depay', 'Mendelian inheritance'] +94. ['Europe', 'The Final Countdown'] +95. ['Sweden', 'pop'] +96. ['Japan', 'glass product'] +97. ['Hawaii', 'ukulele'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-3.5-turbo.similar_to.json b/experiments/results/chat/gpt-3.5-turbo.similar_to.json index 703ea917a4019668ffcc76208f0fab083ef36f8a..ef7fe8eec88feb23ffd5c35701d0f14bae50bf22 100644 --- a/experiments/results/chat/gpt-3.5-turbo.similar_to.json +++ b/experiments/results/chat/gpt-3.5-turbo.similar_to.json @@ -1,72 +1,89 @@ -1. ['Coca-Cola', 'Pepsi'] -2. ['Ligue 1', 'Bundesliga'] -3. ['Australia', 'New Zealand'] -4. ['The Avengers', 'The Justice League'] -5. ['Tesco', 'Sainsburys'] -6. ['Adidas', 'Nike'] -7. ['Netflix', 'Amazon Prime Video'] -8. ["Dominos' Pizza", 'Pizza Hut'] -9. ['Batman', 'Iron Man'] -10. ['Gisele Bündchen', 'Orson Welles'] -11. ['Harry Potter', 'Lord of the Rings'] -12. ['Red Bull', 'Monster Energy'] -13. ['Spain', 'Italy'] -14. ['Galaxy', 'iPhone'] -15. ['Primark', 'Shein'] -16. ['South Africa', 'Bhagavad Gita'] -17. ['PS5', 'XBox'] -18. ['bourbon', 'Scotch whisky'] -19. ['Alaska', 'Canada'] -20. ['Disney', 'Pixar'] -21. ['Firefox', 'Chrome'] -22. ['Kindle', 'Jeff Bezos'] -23. ['Coachella', 'Woodstock'] -24. ['Grammy Award', 'Novel Prize'] -25. ['England', 'Wales'] -26. ['banana', 'plantain'] -27. ['Pecorino Romano', 'Parmesan'] -28. ['Spain', 'Italy'] -29. ['Gerald Ford', 'Duran Duran'] -30. ['Telugu', 'Tamil'] -31. ['Steve Jobs', 'Tim Cook'] -32. ['Joe Burrow', 'Edward Scissorhands'] -33. ['Edward I', 'William the Conqueror'] -34. ['Karl Urban', 'France 24'] -35. ['Sudan', 'South Sudan'] -36. ['Peter Phillips', 'Christine Baranski'] -37. ['Jenna Ortega', 'Anglo-Saxons'] -38. ['Cardiff', 'Swansea'] -39. ['Counter Strike', 'Rainbow Six'] -40. ['Hawaii', 'Guam'] -41. ['Slack', 'Microsoft Teams'] -42. ['Minnesota', 'Wisconsin'] -43. ['Anne Heche', 'Ponzi scheme'] -44. ['Chris Pine', 'Good Friday'] -45. ['Sudocrem', 'Germolene'] -46. ['Yugoslavia', 'Albania'] -47. ['Beatles', 'Rolling Stones'] -48. ['decision tree', 'neural network'] -49. ['Suits', 'Law & Order'] -50. ['Titanic', 'Superbad'] -51. ['Seleucid Empire', 'Macedonian Empire'] -52. ['Doctor Who', 'Timeless'] -53. ['Srebrenica massacre', 'Rock Hudson'] -54. ['Arnold Classic', 'Mr. Olympia'] -55. ['Italy', 'Superman'] -56. ['Alibaba', 'Amazon'] -57. ['Indiana Jones', 'Star Wars'] -58. ['NQ64', 'Wetherspoons'] -59. ['Pepsi', 'Fanta'] -60. ['Homebase', 'IKEA'] -61. ['ramen', 'udon'] -62. ['sphinx', 'sphynx'] -63. ['iPod', 'iPad'] -64. ['Olympic Games', 'X Games'] -65. ['McDonald's', 'Burger King'] -66. ['Scrabble', 'Jenga'] -67. ['Christmas', 'Easter'] +1. ['Adidas', 'Nike'] +2. ['Amazon Prime Video', 'Netflix'] +3. ['Avatar', 'Archimedes'] +4. ['Batman', 'Iron Man'] +5. ['Batman', 'Superman'] +6. ['Beatles', 'Rolling Stones'] +7. ['bourbon', 'Scotch whisky'] +8. ['Cerave', 'Nivea'] +9. ['Champions League', 'Europa League'] +10. ["Dominos' Pizza", 'Pizza Hut'] +11. ['Disney', 'Pixar'] +12. ['Estonia', 'Finland'] +13. ['England', 'Wales'] +14. ['Firefox', 'Chrome'] +15. ['Frank Sinatra', 'Ella Fitzgerald'] +16. ['fusilli', 'rotini'] +17. ['Galaxy', 'iPhone'] +18. ['Gameboy', 'Nintendo'] +19. ['Germany', 'France'] +20. ['Gisele Bündchen', 'Orson Welles'] +21. ['Grammy Award', 'Novel Prize'] +22. ['Great Britian', 'British Empire'] +23. ['Harry Potter', 'Lord of the Rings'] +24. ['Homebase', 'IKEA'] +25. ['Indiana Jones', 'Star Wars'] +26. ['Italy', 'Superman'] +27. ['Java', 'Javascript'] +28. ['Joe Burrow', 'Edward Scissorhands'] +29. ['Karl Urban', 'France 24'] +30. ['Kindle', 'Jeff Bezos'] +31. ['Ligue 1', 'Bundesliga'] +32. ['McDonald's', 'Burger King'] +33. ['Mehmet Öz', 'David Schwimmer'] +34. ['Minnesota', 'Wisconsin'] +35. ['Monet', 'Manet'] +36. ['Nicolae Ceaușescu', 'Javier Hernández'] +37. ['NQ64', 'Wetherspoons'] +38. ['Olympic Games', 'X Games'] +39. ['Pecorino Romano', 'Parmesan'] +40. ['Peter Phillips', 'Christine Baranski'] +41. ['ramen', 'udon'] +42. ['Red Bull', 'Monster Energy'] +43. ['Seleucid Empire', 'Macedonian Empire'] +44. ['Slack', 'Microsoft Teams'] +45. ['South Africa', 'Bhagavad Gita'] +46. ['Spain', 'Italy'] +47. ['Star Wars', 'Star Trek'] +48. ['Steve Jobs', 'Tim Cook'] +49. ['Sudan', 'South Sudan'] +50. ['Sudocrem', 'Germolene'] +51. ['Suits', 'Law & Order'] +52. ['Telugu', 'Tamil'] +53. ['The Avengers', 'The Justice League'] +54. ['Titanic', 'Superbad'] +55. ['Uzbekistan', 'United States'] +56. ['Yakutia', 'Turkey'] +57. ['Yugoslavia', 'Albania'] +58. ['banana', 'plantain'] +59. ['cannoli', 'canneloni'] +60. ['Chess', "Rubik's Cube"] +61. ['Christmas', 'Easter'] +62. ['Coachella', 'Woodstock'] +63. ['decision tree', 'neural network'] +64. ['Dionysus', 'Toyota Corolla'] +65. ['Edward I', 'William the Conqueror'] +66. ['English', 'Persian'] +67. ['Eva Braun', 'Phil Jackson'] 68. ['fusilli', 'rotini'] -69. ['Avatar', 'Archimedes'] -70. ['Shark', 'Bush'] -71. ['Eva Braun', 'Phil Jackson'] -72. ['Nicolae Ceaușescu', 'Javier Hernández'] \ No newline at end of file +69. ['Gerald Ford', 'Duran Duran'] +70. ['Great Britian', 'British Empire'] +71. ['harks', 'Bush'] +72. ['iPod', 'iPad'] +73. ['New York', 'York'] +74. ['Pepsi', 'Fanta'] +75. ['pill', 'tablet'] +76. ['Primark', 'Shein'] +77. ['Scrabble', 'Jenga'] +78. ['Shark', 'Bush'] +79. ['Sphinx', 'Sphynx'] +80. ['Star Wars', 'Star Trek'] +81. ['Srebrenica massacre', 'Rock Hudson'] +82. ['Steve Jobs', 'Tim Cook'] +83. ['Sudocrem', 'Germolene'] +84. ['Suits', 'Law & Order'] +85. ['The Avengers', 'The Justice League'] +86. ['Titanic', 'Superbad'] +87. ['Uzbekistan', 'United States'] +88. ['Yakutia', 'Turkey'] +89. ['Yugoslavia', 'Albania'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-4.competitor-rival_of.json b/experiments/results/chat/gpt-4.competitor-rival_of.json index 988e450d85327cda5e05d3331db335c5ecf21411..648145b4815a8275bb0cb38d6087260dac14423a 100644 --- a/experiments/results/chat/gpt-4.competitor-rival_of.json +++ b/experiments/results/chat/gpt-4.competitor-rival_of.json @@ -1,22 +1,22 @@ ['Apple', 'Microsoft'] -['Microsoft', 'Google'] ['Bugatti', 'Lamborghini'] -['Netflix', 'Disney Plus'] +['Microsoft', 'Google'] ['Cristiano Ronaldo', 'Lionel Messi'] ['Dyson', 'Dualit'] +['Netflix', 'Disney Plus'] ['PyTorch', 'TensorFlow'] ['Sanpellegrino', 'Volvic'] ['British Airways', 'Aer Lingus'] -['American Psycho', 'Chihuahua'] +['Federal Reserve Board', 'Bank of England'] ['Mars', 'Snickers'] ['ASML', 'LAM Research'] ['Razer', 'Dell'] ['Spotify', 'Apple'] ['Manchester United', 'Arsenal'] ['WeChat', 'WhatsApp'] +['Saudi Arabia', 'Israel'] ['Lionel Messi', 'Kylian Mbappé'] ['Louis Philippe', 'Peter England'] -['Twitter', 'WhatsApp'] ['Coca-Cola Company', 'Pepsi'] ['Khabib Nurmagomedov', 'Conor McGregor'] ['Twitter', 'Facebook'] @@ -25,7 +25,7 @@ ['Casio', 'Texas Instruments'] ['Arsenal', 'Tottenham Hotspur'] ['Nintendo', 'Xbox'] -['Serena Williams', 'Andy Murray'] +['H&M', 'Zalora'] ['Apple', 'Samsung'] ['Expedia', 'Trivago'] ['Heathrow Airport', 'Gatwick Airport'] @@ -37,7 +37,7 @@ ['Tesla', 'Skoda'] ['Thomas Jefferson', 'Alexander Hamilton'] ['Chester FC', 'Wrexham FC'] -['H&M', 'Zalora'] +['Line of Duty', 'CSI'] ['UK', 'France'] ['Nike', 'Adidas'] ['Alain Prost', 'Ayrton Senna'] @@ -49,36 +49,36 @@ ['Noel Gallagher', 'Liam Gallaguer'] ["McDonald's", 'Burger King'] ['Neoclassicism', 'Romanticism'] -['Royal Feast', 'Fast X'] ['Eminem', 'MGK'] ['Martin Luther King Jr.', 'Malcolm X'] ['Russia', 'China'] ['Kingston', 'Samsung'] ['AWS', 'GCP'] ['Beatles', 'Rolling Stones'] +['John Tyler', 'Whig Party'] ['Jeremy Corbyn', 'Keir Starmer'] ['Lee Chong Wei', 'Lin Dan'] ['Samsung', 'Pitbull'] ['Germany', 'Austria'] ['Mikhail Khodorkovsky', 'Hezbollah'] -['Federal Reserve Board', 'Bank of England'] +['American Psycho', 'Chihuahua'] +['Jake Paul', 'Tangled'] +['Nikhita Khrushchev', 'Leonid Brezhnev'] ['Kourtney Kardashian', 'Jenna Fischer'] +['Twitter', 'WhatsApp'] +['Bashar al-Assad', 'Christianity'] +['Didier Deschamps', 'Scott Adkins'] +['Steve Jobs', 'Atlanta'] ['Bella Hadid', 'Choi Woo-shik'] ['Mali', 'Frances McDormand'] +['Serena Williams', 'Andy Murray'] +['Apple', 'Rolex'] +['EuroBasket 2022', 'Murad III'] ['Olympic Games', 'Helicobacter pylori'] -['Line of Duty', 'CSI'] ['Gladiator', 'Imelda Staunton'] -['John Tyler', 'Whig Party'] -['Nikhita Khrushchev', 'Leonid Brezhnev'] -['Jake Paul', 'Tangled'] -['Steve Jobs', 'Atlanta'] -['Didier Deschamps', 'Scott Adkins'] -['Bashar al-Assad', 'Christianity'] -['Saudi Arabia', 'Israel'] +['Royal Feast', 'Fast X'] +['Katharine Hepburn', 'Abrahamic religion'] ['Ligue 1', 'Hayley Atwell'] ['Vikram', 'Coen brothers'] ['Mohamed Salah', 'Korea'] -['Katharine Hepburn', 'Abrahamic religion'] -['EuroBasket 2022', 'Murad III'] -['ASEAN', 'Helen Hunt'] -['Apple', 'Rolex'] \ No newline at end of file +['ASEAN', 'Helen Hunt'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-4.friend-ally_of.json b/experiments/results/chat/gpt-4.friend-ally_of.json index 85357708c8fad4203307727b9583f9f163c023ef..7c79c09dfdee61874ad5dd5656ec0598966a06bb 100644 --- a/experiments/results/chat/gpt-4.friend-ally_of.json +++ b/experiments/results/chat/gpt-4.friend-ally_of.json @@ -1,87 +1,93 @@ -['Hillary Clinton', 'Barack Obama'] -['Rishi Sunak', 'Leo Varadkar'] -['Gondor', 'Rohan'] -['FIFA', 'UEFA'] -['South Korea', 'Japan'] ['France', 'Belgium'] ['Spain', 'Portugal'] -['Malaysia', 'Singapore'] -['Eastern Orthodoxy', 'Oriental Orthodoxy'] -['India', 'US'] -['Beatles', 'Rolling Stones'] -['Red Bull', 'GoPro'] +['South Korea', 'Japan'] ['United States', 'United Kingdom'] -['Eva Perón', 'Interpol'] -['UK', 'Ireland'] -['Singapore', 'Israel'] -['Darth Vader', 'Emperor Palpatine'] ['US', 'Canada'] -['Bob Marley', 'Abu Bakr'] -['Johnny Cash', 'Waylon Jennings'] -['Jeff Bezos', 'GitHub'] -['Hong Kong', 'HSBC'] -['Porter Wagoner', 'Dolly Parton'] -['Coca-Cola', "McDonald's"] -['Cersei Lannister', 'Euron Greyjoy'] -['Rishi Sunak', 'Joe Biden'] -['Quentin Tarantino', 'Edgar Wright'] -['Keir Starmer', 'Jeremy Corbyn'] ['Germany', 'France'] -['Stephen Hawking', 'Brian Cox'] -['Jean-Michel Basquiat', 'Andy Warhol'] -['Mark Drakeford', 'Rishi Sunak'] -['Jürgen Klopp', 'Exo'] -['Windows', 'Xbox'] -['Saturn', 'Rachel Bilson'] -['Ottoman Empire', 'Snowpiercer'] -['UN', 'NATO'] -['Boris Johnson', 'Emmanuel Macron'] -['Microsoft', 'LinkedIn'] -['Paul Rudd', 'Memento'] -['Russia', 'Georgia'] -['Rishi Sunak', 'Emmanuel Macron'] +['U.S.S.R.', 'East Germany'] +['Singapore', 'Israel'] +['Brazil', 'India'] +['Malaysia', 'Singapore'] +['China', 'North Korea'] +['UK', 'Ireland'] +['UK', 'Commonwealth'] +['India', 'US'] +['Australia', 'New Zealand'] +['Eastern Orthodoxy', 'Oriental Orthodoxy'] +['Hillary Clinton', 'Barack Obama'] ['Joseph Stalin', 'Josip Broz Tito'] +['Margaret Thatcher', 'Ronald Reagan'] +['Rishi Sunak', 'Leo Varadkar'] ['Di Maio', 'Salvini'] -['Yahoo', 'Yahoo Japan'] -['Armenia', 'Azerbaijan'] -['Doja Cat', 'Anthony Albanese'] ['Pedro Sánchez', 'Pablo Iglesias'] -['Islamic State', 'Denys Prokopenko'] -['Brazil', 'India'] -['Oman', 'Iran'] -['U.S.S.R.', 'East Germany'] -['Sicily', 'Calabria'] -['Harry Potter', 'Severus Snape'] -['Tata Motors', 'Jaguar'] -['Liam Gallagher', 'Noel Gallagher'] +['Rishi Sunak', 'Joe Biden'] +['Boris Johnson', 'Emmanuel Macron'] +['FIFA', 'UEFA'] ['Turkish Airlines', 'All Nippon Airways'] +['Coca-Cola', "McDonald's"] +['Red Bull', 'GoPro'] ['JP Morgan', 'Morgan Stanley'] -['Sophia Loren', 'Marlon Brando'] -['J.R.R. Tolkien', 'C.S. Lewis'] -['China', 'North Korea'] -['Margaret Thatcher', 'Ronald Reagan'] -['Anne Boleyn', 'Columbia Pictures'] -['KGB', 'CIA'] +['HSBC', 'BlackRock'] +['IMF', 'The World Bank'] +['Microsoft', 'LinkedIn'] ['Amazon', 'Royal Mail'] -['The Beatles', 'Queen'] -['Benedict Cumberbatch', 'Hanukkah'] -['Huawei', 'China'] -['Kendall Jenner', 'Bergen'] -['Thomas Jefferson', 'Kid Cudi'] -['Ed Gein', 'Colonel Sanders'] ['Google', 'Samsung'] -['IMF', 'The World Bank'] -['Nikon', 'Tokina'] ['Sony', 'ZEISS'] -['Linus Sebastian', 'Marques Brownlee'] +['Nikon', 'Tokina'] +['Tata Motors', 'Jaguar'] ['FTX', 'Alameda Research'] -['UK', 'Commonwealth'] -['Kylo Ren', 'Rey'] -['Macbeth', 'Banquo'] +['J.R.R. Tolkien', 'C.S. Lewis'] +['Quentin Tarantino', 'Edgar Wright'] +['Keir Starmer', 'Jeremy Corbyn'] +['Jean-Michel Basquiat', 'Andy Warhol'] +['UN', 'NATO'] +['Instagram', 'WhatsApp'] +['Rishi Sunak', 'Emmanuel Macron'] +['Stephen Hawking', 'Brian Cox'] ['Walter White', 'Gus Fring'] ['Ron Weasley', 'Neville Longbottom'] +['Harry Potter', 'Severus Snape'] +['Macbeth', 'Banquo'] +['Darth Vader', 'Emperor Palpatine'] +['Cersei Lannister', 'Euron Greyjoy'] +['Beatles', 'Rolling Stones'] +['The Beatles', 'Queen'] +['Oman', 'Iran'] +['Armenia', 'Azerbaijan'] +['Sicily', 'Calabria'] +['Gondor', 'Rohan'] +['Johnny Cash', 'Waylon Jennings'] +['Porter Wagoner', 'Dolly Parton'] +['Bob Marley', 'Abu Bakr'] +['Linus Sebastian', 'Marques Brownlee'] +['Sophia Loren', 'Marlon Brando'] +['Anne Boleyn', 'Columbia Pictures'] +['Mark Drakeford', 'Rishi Sunak'] +['Liam Gallagher', 'Noel Gallagher'] ['Noah Schnapp', 'Galatasaray S.K.'] -['Instagram', 'WhatsApp'] +['Paul Rudd', 'Memento'] +['Jeff Bezos', 'GitHub'] +['Windows', 'Xbox'] ['Catherine Zeta-Jones', 'Johnny Knoxville'] +['Eva Perón', 'Interpol'] +['Kylo Ren', 'Rey'] +['Jürgen Klopp', 'Exo'] +['Saturn', 'Rachel Bilson'] +['Russia', 'Georgia'] +['Japan', 'Taiwan'] +['Ed Gein', 'Colonel Sanders'] +['Hong Kong', 'HSBC'] +['Islamic State', 'Denys Prokopenko'] +['Yahoo', 'Yahoo Japan'] +['Benedict Cumberbatch', 'Hanukkah'] +['Ottoman Empire', 'Snowpiercer'] +['Huawei', 'China'] +['Doja Cat', 'Anthony Albanese'] +['Thomas Jefferson', 'Kid Cudi'] +['Kendall Jenner', 'Bergen'] +['CIA', 'MI6'] +['KGB', 'CIA'] ['Achilles', 'Jonathan Bailey'] -['HSBC', 'BlackRock'] \ No newline at end of file +['Extinction Rebellion', 'Greta Thunberg'] +['Elsa', 'Anna'] +['Anne Boleyn', 'Columbia Pictures'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-4.influenced_by.json b/experiments/results/chat/gpt-4.influenced_by.json index 1dc662ba36d8923af5e5f7604f201587847792cc..2acd60807a86c4fe3252a45fda49117074294058 100644 --- a/experiments/results/chat/gpt-4.influenced_by.json +++ b/experiments/results/chat/gpt-4.influenced_by.json @@ -1,31 +1,26 @@ -['Elton John', 'Elvis Presley'] -['Game of Thrones', 'Lord of the Rings'] ['Thomas Aquinas', 'Aristotle'] -['Android', 'iOS'] -['trending music', 'TikTok'] -['Xi Jinping', 'Kim Jong-il'] +['Elton John', 'Elvis Presley'] ['Beethoven', 'romanticism'] ['Edgar Allan Poe', 'Romanticism'] -['US', 'NASA'] -['Wales', 'Westminster'] +['Android', 'iOS'] ['Theresa May', 'David Cameron'] +['Anna Delvey', 'Bernie Madoff'] ['Lord of the Rings', 'Beowulf'] ['Andrew Johnson', 'Abraham Lincoln'] ['LinkedIn', 'Facebook'] ['Picasso', 'Cezanne'] ['Playstation', 'Xbox'] -['Saudi Arabia', 'US'] -['Fitbit', 'heart rate monitor'] ['Taiwan', 'China'] ['Kylian Mbappe', 'Cristiano Ronaldo'] ['Picasso', 'cubism'] ['Miley Cyrus', 'Lorde'] ['Neymar', 'Alexis Sánchez'] ['Smashing Pumpkins', 'Beatles'] -['Luke Evans', 'Ava Gardner'] ['MacOS', 'Linux'] ['Transport for Wales', 'National Rail'] +['Herbie Hancock', 'Miles Davis'] ['India', 'Hinduism'] +['hip hop', 'jazz'] ['Bob Dylan', 'Woody Guthrie'] ['Tim Burton', 'German expressionism'] ['Eamon de Valera', 'James Napper Tandy'] @@ -39,11 +34,6 @@ ['machine learning', 'Google'] ['Antonio Salazar', 'fascism'] ['Hank Williams', 'Jimmie Rodgers'] -['English', 'William Shakespeare'] -['Gilbert Gottfried', 'Mike Krieger'] -['Vladimir Lenin', 'chess'] -['Pepsi', 'Coca-Cola'] -['Luke Bryan', 'Hank Williams'] ['Bill Gates', 'Steve Jobs'] ['Stephen King', 'Arthur Machen'] ['Bangladesh', 'India'] @@ -58,7 +48,40 @@ ['Radiohead', 'David Bowie'] ['NVIDIA', 'AMD'] ['India', 'Gandhi'] -['Viktor Yushchenko', 'Bonnie Wright'] ['Beethoven', 'Mozart'] ['Bitcoin', 'blockchain'] -['Hong Kong', 'China'] \ No newline at end of file +['Hong Kong', 'China'] +['Prince Harry', 'Monarchy'] +['F1', 'social media'] +['Jack Black', 'Waffen-SS'] +['Game of Thrones', 'Lord of the Rings'] +['Canon', 'Nikon'] +['Charles Baudelaire', 'Tornado MRCA'] +['trending music', 'TikTok'] +['Xi Jinping', 'Kim Jong-il'] +['US', 'NASA'] +['Wales', 'Westminster'] +['Sierra Leone', 'Pulp fiction'] +['Andrew Johnson', 'Abraham Lincoln'] +['Luke Evans', 'Ava Gardner'] +['Portuguese', 'The Prestige'] +["Shaquille O'Neal", 'Selim II'] +['Cobra Kai', 'Anna Chlumsky'] +['US', 'Saudi Arabia'] +['Fitbit', 'heart rate monitor'] +['Kevin Spacey', 'Tenerife'] +['Brazil', 'Spain'] +['heavy metal', 'punk music'] +['Moon', 'Göbekli Tepe'] +['English', 'William Shakespeare'] +['Beatles', 'Alice in Wonderland'] +['Gilbert Gottfried', 'Mike Krieger'] +['Vladimir Lenin', 'chess'] +['Alicia Vikander', 'Richard Attenborough'] +['Luke Bryan', 'Hank Williams'] +['Allu Arjun', 'Aaron Ramsey'] +['European Union', 'Germany'] +['painters', 'Stable Diffusion'] +['Walmart', 'Rivaldo'] +['Sauron', 'Shiba Inu'] +['Bruno Mars', 'James Brown'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-4.known_for.json b/experiments/results/chat/gpt-4.known_for.json index 690fc20c494a85c0880e630079a834e086e93c62..4bdbbc2f8ade33a22f1fa3187f6bccd77198ab60 100644 --- a/experiments/results/chat/gpt-4.known_for.json +++ b/experiments/results/chat/gpt-4.known_for.json @@ -1,36 +1,20 @@ -['Vincent Van Gogh', 'The Starry Night'] ['Alphabet Inc.', 'Google'] -['Bill Nye', 'scientist'] -['Mercedes Benz', 'build quality'] -['Jackson Pollock', 'action painting'] +['Vincent Van Gogh', 'The Starry Night'] +['Italy', 'Renaissance'] ['Keanu Reeves', 'The Matrix'] ['Picasso', 'Guernica'] -['Italy', 'Renaissance'] -['Spain', 'olive oil'] ['C.S. Lewis', 'The Screwtape Letters'] ['Corsica', 'Napoleon Bonaparte'] -['Amazon', 'Alexa'] -['Thomas Edison', 'light bulb'] -['Alfred Hitchcock', 'horror'] -['William Shakespeare', 'Romeo and Juliet'] ['Boris Johnson', 'Brexit'] ['Georgia', 'Joseph Stalin'] ['OpenAI', 'ChatGPT'] ['Tesco', 'groceries'] ['Amazon', 'cloud computing'] ['Nvidia', 'GPUs'] -['Tony Blair', 'Iraq War'] -['Germany', 'techno music'] ['Italy', 'wine'] ['Coca-Cola', 'Pepsi'] ['Spotify', 'Podcasts'] ['Valencia', 'paella'] -['Romania', 'Roman Catholicism'] -['Switzerland', 'mountains'] -["Assassin's Creed", 'history'] -['Red Bull', 'energy drinks'] -['Johnny Cash', 'Ring of Fire'] -['Microsoft', 'Xbox'] ['Canada', 'maple syrup'] ['France', 'cheese'] ['Nintendo', 'Super Mario Bros.'] @@ -41,71 +25,82 @@ ['Portugal', 'Fado'] ['Beatles', 'Come Together'] ['Afro-Brazilians', 'Capoeira'] +['Apple', 'Apple Watch'] ['Meta', 'Instagram'] ['Jeff Goldblum', 'Jurassic Park'] ['France', 'baguette'] ['Queen', 'Bohemian Rhapsody'] -['Greggs', 'sausage rolls'] ['Japan', 'sake'] ['IKEA', 'food'] +['William Grant & Sons', 'gin'] ['Netherlands', 'tulips'] -['Harvey Weinstein', 'Miramax'] ['Scotland', 'whisky'] -['Apple', 'Apple Watch'] +['Apple', 'MacBook'] ['Steve Jobs', 'Apple'] ['Beatles', 'I Me Mine'] ['Google', 'search engine'] +['Tony Blair', 'Iraq War'] +['Germany', 'techno music'] +['Thomas Edison', 'light bulb'] +['Hawaii', 'beaches'] +['Red Bull', 'energy drinks'] +['Johnny Cash', 'Ring of Fire'] +['Microsoft', 'Xbox'] +['France', 'mountains'] +['Harry Potter', 'Bloomsbury'] +['Switzerland', 'mountains'] +["Assassin's Creed", 'history'] +['Sophie Turner', 'Sylvia Plath'] ['Sweden', 'pop'] -['France', 'beaches'] ['France', 'cars'] ['Italy', 'Hawaiian pizza'] ['France', 'rococo movement'] ['Europe', 'The Final Countdown'] -['Sophie Turner', 'Sylvia Plath'] +['Bill Nye', 'scientist'] +['Amazon', 'Alexa'] +['Thomas Edison', 'telephone'] +['France', 'beaches'] +['Jackson Pollock', 'action painting'] +['LAMY', 'notebook'] ['Hawaii', 'ukulele'] +['France', 'beer'] +['Mercedes Benz', 'build quality'] ['France', 'mountains'] +['Romania', 'Roman Catholicism'] +['George Washington', 'Kiribati'] +['George Orwell', 'Coming Up for Air'] +['Italy', 'tea'] ['India', 'rum'] +['Belgium', 'wine'] +['democracy', 'North Korea'] +['Alfred Hitchcock', 'horror'] +['William Shakespeare', 'Romeo and Juliet'] +['China', 'coffee'] ['India', 'Gurkhas'] -['Buffon', 'PSG'] -['Thomas Edison', 'telephone'] -['Michael Jordan', 'Tessa Thompson'] +['Spain', 'olive oil'] +['Memphis Depay', 'Mendelian inheritance'] +['Rafael Nadal', 'Ralph Macchio'] +['Richard Harris', 'Curcuma longa'] +['Smashing Pumpkins', 'Thru the eyes of Ruby'] +['Parasite', 'Jersey'] ['Inglourious Basterds', 'Sergio Busquets'] +['Michelangelo', 'Pop Art'] +['Gilmore Girls', 'OpenAI'] +['Ragnarök', 'Little Boy'] ['Pizzagate', 'Hillary Clinton'] -['George Orwell', 'Coming Up for Air'] -['The Office', 'IBM'] -['George Washington', 'Kiribati'] ['Charles Bronson', 'Rory McIlroy'] -['Belgium', 'wine'] ['Luka Modrić', 'Rottweiler'] -['Gilmore Girls', 'OpenAI'] -['Ragnarök', 'Little Boy'] -['China', 'coffee'] -['France', 'beer'] -['Harry Potter', 'Bloomsbury'] -['Italy', 'tea'] -['Afro-Brazilians', 'Capoeira'] -['Steve Jobs', 'AirPods'] +['The Office', 'IBM'] ['Neil Armstrong', 'Korean War'] ['Pixar', 'Novosibirsk'] -['William Grant & Sons', 'gin'] -['LAMY', 'notebook'] -['Italy', 'Renaissance'] +['Greggs', 'sausage rolls'] +['Andhra Pradesh', 'Martinique'] +['Walther P38', 'Lupin the Third'] +['Buffon', 'PSG'] +['Michael Jordan', 'Tessa Thompson'] +['Harvey Weinstein', 'Miramax'] ['Korea', 'Breakdance'] -['Michelangelo', 'Pop Art'] -['Johnny Depp', 'Pirates of the Caribbean'] -['Portugal', 'Fado'] -['Adidas', 'Yeezy Boost'] -['Red Bull', 'energy drinks'] +['Japan', 'glass product'] +['Christopher Columbus', 'India'] ['Frank Abagnale Jr', 'doctor'] -['India', 'chai tea'] -['democracy', 'North Korea'] -['Rafael Nadal', 'Ralph Macchio'] -['Corsica', 'Napoleon Bonaparte'] -['Romania', 'Roman Catholicism'] -['Switzerland', 'mountains'] -['George Orwell', 'Animal Farm'] -['William Shakespeare', 'Macbeth'] -['Albert Einstein', 'theory of relativity'] -['Nicola Tesla', 'radio technology'] -['Johnny Depp', 'Alice in Wonderland'] -['United States', 'hot dogs'] +['Steve Jobs', 'AirPods'] \ No newline at end of file diff --git a/experiments/results/chat/gpt-4.similar_to.json b/experiments/results/chat/gpt-4.similar_to.json index 39a3d2b694d77cdb94ad7e69ed08bfc153cfa896..a564b38f55ecd0c20a8dcefe3b017e03ddb4d047 100644 --- a/experiments/results/chat/gpt-4.similar_to.json +++ b/experiments/results/chat/gpt-4.similar_to.json @@ -1,80 +1,89 @@ 1. ['Alibaba', 'Amazon'] -2. ['Australia', 'New Zealand'] -3. ['Beatles', 'Rolling Stones'] -4. ['Cerave', 'Nivea'] -5. ['Chess', "Rubik's Cube"] -6. ['Chris Pine', 'Good Friday'] -7. ['Counter Strike', 'Rainbow Six'] -8. ['England', 'Wales'] -9. ['English', 'Persian'] -10. ['Estonia', 'Finland'] -11. ['Fusilli', 'Rotini'] +2. ["McDonald's", 'Burger King'] +3. ['England', 'Wales'] +4. ['iPod', 'iPad'] +5. ['Olympic Games', 'X Games'] +6. ['Minnesota', 'Wisconsin'] +7. ['Slack', 'Microsoft Teams'] +8. ['Sudan', 'South Sudan'] +9. ['Red Bull', 'Monster Energy'] +10. ['Champions League', 'Europa League'] +11. ['Cerave', 'Nivea'] 12. ['Galaxy', 'iPhone'] -13. ['Gameboy', 'Nintendo'] -14. ['Germany', 'France'] -15. ['Harry Potter', 'Lord of the Rings'] -16. ['Hawaii', 'Guam'] -17. ['Homebase', 'IKEA'] -18. ['Indiana Jones', 'Star Wars'] -19. ['iPod', 'iPad'] -20. ['Java', 'Javascript'] -21. ['Joe Burrow', 'Edward Scissorhands'] -22. ['Kindle', 'Jeff Bezos'] -23. ['Ligue 1', 'Bundesliga'] -24. ['Minnesota', 'Wisconsin'] -25. ['Netflix', 'Amazon Prime Video'] -26. ['Nicolae Ceaușescu', 'Javier Hernández'] -27. ['Olympic Games', 'X Games'] -28. ['Pecorino Romano', 'Parmesan'] +13. ['Disney', 'Pixar'] +14. ['Batman', 'Iron Man'] +15. ['Estonia', 'Finland'] +16. ['Adidas', 'Nike'] +17. ['Java', 'Javascript'] +18. ['bourbon', 'Scotch whisky'] +19. ['Alaska', 'Canada'] +20. ['Spain', 'Italy'] +21. ['banana', 'plantain'] +22. ['Firefox', 'Chrome'] +23. ['Pecorino Romano', 'Parmesan'] +24. ['Netflix', 'Amazon Prime Video'] +25. ['Primark', 'Shein'] +26. ["Dominos' Pizza", 'Pizza Hut'] +27. ['Germany', 'France'] +28. ['Harry Potter', 'Lord of the Rings'] 29. ['PS5', 'XBox'] -30. ['Ramen', 'Udon'] -31. ['Red Bull', 'Monster Energy'] -32. ['Slack', 'Microsoft Teams'] -33. ["McDonald's", 'Burger King'] -34. ['South Africa', 'Bhagavad Gita'] -35. ['Spain', 'Italy'] -36. ['Star Wars', 'Star Trek'] -37. ['Sudan', 'South Sudan'] -38. ['Uzbekistan', 'United States'] -39. ['Yugoslavia', 'Albania'] -40. [ 'Avatar', 'Archimedes'] -41. ['Pepsi', 'Fanta'] -42. [ "Dominos' Pizza", 'Pizza Hut'] -43. ['Monet', 'Manet'] -44. ['Alaska', 'Canada'] -45. ['Coca-Cola', 'Pepsi'] -46. ['Eva Braun', 'Phil Jackson'] -47. ['The Avengers', 'The Justice League'] -48. ['Eduardo Saverin', 'Guinea-Bissau'] -49. ['Pill', 'Tablet'] -50. ['Batman', 'Superman'] -51. ['Mehmet Öz', 'David Schwimmer'] -52. ['PS5', 'XBox'] -53. ['Gisele Bündchen', 'Orson Welles'] -54. ['Suits', 'Law & Order'] -55. ['Steve Jobs', 'Tim Cook'] -56. ['Peter Phillips', 'Christine Baranski'] -57. ['New York', 'York'] -58. ['Jenna Ortega', 'Anglo-Saxons'] -59. ['Chess', "Rubik's Cube"] -60. ['Adidas', 'Nike'] -61. ['Cannoli', 'Canneloni'] -62. ['Coachella', 'Woodstock'] -63. ['Slack', 'Microsoft Teams'] -64. ['Tesco', 'Sainsburys'] -65. ['Banana', 'Plantain'] -66. ['Scrabble', 'Jenga'] -67. ['Cardiff', 'Swansea'] -68. ['Sphinx', 'Sphynx'] -69. ['Great Britian', 'British Empire'] -70. ['Selection Dice', 'Macdonald Empire'] -71. ['Karl Urban', 'France 24'] -72. ['Slack', 'Microsoft Teams'] -73. ['Christmas', 'Easter'] -74. ['Batman', 'Iron Man'] -75. ['Firefox', 'Chrome'] -76. ['Edward I', 'William the Conqueror'] -77. ['Frank Sinatra', 'Ella Fitzgerald'] -78. ['Indiana Jones', 'Star Wars'] -79. ['Primark', 'Shein'] -80. ['Gerald Ford', 'Duran Duran'] \ No newline at end of file +30. ['Monet', 'Manet'] +31. ['Glastonbury', 'Roskilde'] +32. ['Telugu', 'Tamil'] +33. ['Batman', 'Superman'] +34. ['pill', 'tablet'] +35. ['Star Wars', 'Star Trek'] +36. ['Sudocrem', 'Germolene'] +37. ['Yugoslavia', 'Albania'] +38. ['Beatles', 'Rolling Stones'] +39. ['Suits', 'Law & Order'] +40. ['Seleucid Empire', 'Macedonian Empire'] +41. ['Doctor Who', 'Timeless'] +42. ['Arnold Classic', 'Mr. Olympia'] +43. ['Homebase', 'IKEA'] +44. ['ramen', 'udon'] +45. ['sphinx', 'sphynx'] +46. ['Cardiff', 'Swansea'] +47. ['Steve Jobs', 'Tim Cook'] +48. ['Counter Strike', 'Rainbow Six'] +49. ['Scrabble', 'Jenga'] +50. ['Christmas', 'Easter'] +51. ['fusilli', 'rotini'] +52. ['Coachella', 'Woodstock'] +53. ['Edward I', 'William the Conqueror'] +54. ['Frank Sinatra', 'Ella Fitzgerald'] +55. ['New York', 'York'] +56. ['Eva Braun', 'Phil Jackson'] +57. ['Kindle', 'Jeff Bezos'] +58. ['Yakutia', 'Turkey'] +59. ['Glastonbury', 'Roskilde'] +60. ['cannoli', 'canneloni'] +61. ['NQ64', 'Wetherspoons'] +62. ['Pepsi', 'Fanta'] +63. ['Great Britian', 'British Empire'] +64. ['English', 'Persian'] +65. ['Chess', "Rubik's Cube"] +66. ['Anne Heche', 'Ponzi scheme'] +67. ['Chris Pine', 'Good Friday'] +68. ['Titanic', 'Superbad'] +69. ['Srebrenica massacre', 'Rock Hudson'] +70. ['Italy', 'Superman'] +71. ['Indiana Jones', 'Star Wars'] +72. ['Peter Phillips', 'Christine Baranski'] +73. ['Jenna Ortega', 'Anglo-Saxons'] +74. ['Karl Urban', 'France 24'] +75. ['Grammy Award', 'Novel Prize'] +76. ['George Ezra', 'Lead Belly'] +77. ['Avatar', 'Archimedes'] +78. ['Shark', 'Bush'] +79. ['Joe Burrow', 'Edward Scissorhands'] +80. ['Gisele Bündchen', 'Orson Welles'] +81. ['Nicolae Ceaușescu', 'Javier Hernández'] +82. ['Gerald Ford', 'Duran Duran'] +83. ['Eduardo Saverin', 'Guinea-Bissau'] +84. ['Dionysus', 'Toyota Corolla'] +85. ['South Africa', 'Bhagavad Gita'] +86. ['Uzbekistan', 'United States'] +87. ['Mehmet Öz', 'David Schwimmer'] +88. ['Hawaii', 'Guam'] +89. ['Gameboy', 'Nintendo'] \ No newline at end of file diff --git a/experiments/results/flan_ul2_additional_analysis/comp.csv b/experiments/results/flan_ul2_additional_analysis/comp.csv index 8a3088b529360bb035f792045377184316f5deb4..417a1e89a311bc1d5b7e39a172ad019da2fb61b9 100644 --- a/experiments/results/flan_ul2_additional_analysis/comp.csv +++ b/experiments/results/flan_ul2_additional_analysis/comp.csv @@ -1,90 +1,85 @@ pairs,score_fewshot,score_zeroshot,score_true,rank_fewshot,rank_zeroshot,rank_true -"['Jeremy Corbyn', 'Keir Starmer']",2.5054050426398784,1.4222025149293618,4.142857074737549,51,58,37 -"['EuroBasket 2022', 'Murad III']",4.309828196521226,2.3454037993300583,1.2857142686843872,72,76,84 -"['Bugatti', 'Lamborghini']",1.3981640140293563,1.1581703913669972,2.857142925262451,23,29,60 -"['Apple', 'Microsoft']",1.2275206545128392,1.116980313466796,4.857142925262451,9,20,11 -"['Lee Chong Wei', 'Lin Dan']",1.6413210384606873,1.2366011532822951,4.142857074737549,32,37,37 -"['Microsoft', 'Google']",1.1497194064692269,1.0906696582667166,4.4285712242126465,3,15,24 -"['Samsung', 'Pitbull']",4.6043208693629625,2.8062127386926976,1.2857142686843872,74,81,84 -"['Cristiano Ronaldo', 'Lionel Messi']",1.7924631688668162,1.076442896033145,4.857142925262451,37,14,11 -"['Germany', 'Austria']",1.922682473427117,1.1516096930453659,2.2857143878936768,41,27,67 -"['Dyson', 'Dualit']",2.314356716121875,1.4066400229807077,2.7142856121063232,48,57,64 -"['Netflix', 'Disney Plus']",1.3753552421582393,1.233603087311407,4.5714287757873535,21,36,19 -"['PyTorch', 'TensorFlow']",1.3672994237826923,1.2808253965315133,4.4285712242126465,20,44,24 -"['Dell', 'HP']",1.0915600269025794,1.0416585847044884,5.0,1,3,3 -"['Sanpellegrino', 'Volvic']",3.2617643541640815,1.3447474634198389,3.5714285373687744,67,52,51 -"['Mikhail Khodorkovsky', 'Hezbollah']",4.816696698176535,2.4170384926741626,1.4285714626312256,75,78,77 -"['British Airways', 'Aer Lingus']",1.317719549976474,1.1037129775740366,4.142857074737549,16,18,37 -"['Microsoft Teams', 'Slack']",1.261800330104859,1.0557504472617725,4.857142925262451,12,11,11 -"['Federal Reserve Board', 'Bank of England']",2.512327248338375,1.8141170517333125,2.857142925262451,53,69,60 -"['American Psycho', 'Chihuahua']",5.720655544695763,1.9418134795261126,1.2857142686843872,85,71,84 -"['Mars', 'Snickers']",2.052264289557186,1.4256724727393357,3.4285714626312256,44,59,54 -"['ASML', 'LAM Research']",1.5398275923282265,1.8641223203372959,4.142857074737549,31,70,37 -"['Jake Paul', 'Tangled']",5.1082006333190995,2.396226404066843,1.2857142686843872,79,77,84 -"['Nikhita Khrushchev', 'Leonid Brezhnev']",3.1230509611972406,1.4714526914342227,3.4285714626312256,64,61,54 -"['Razer', 'Dell']",1.5108460287551244,1.0495182657911724,4.142857074737549,28,9,37 -"['Spotify', 'Apple']",1.2677358400496452,1.1535822949864265,4.0,14,28,43 -"['Kourtney Kardashian', 'Jenna Fischer']",5.114171171573231,2.1953277578209183,2.142857074737549,80,74,69 -"['Twitter', 'WhatsApp']",1.7000670009695336,1.4379288274666722,3.0,36,60,58 -"['Manchester United', 'Arsenal']",1.288784519299688,1.0723828530634452,4.142857074737549,15,13,37 -"['WeChat', 'WhatsApp']",1.64870756189045,1.2416368997951348,4.4285712242126465,33,38,24 -"['Saudi Arabia', 'Israel']",1.8315257969993983,1.1452641071432148,4.285714149475098,39,24,29 -"['Bashar al-Assad', 'Christianity']",4.196573985107116,2.1672732394398393,1.2857142686843872,71,73,84 -"['Didier Deschamps', 'Scott Adkins']",3.220520614077468,1.7735129268342826,1.4285714626312256,66,68,77 -"['Lionel Messi', 'Kylian Mbappé']",2.5096010983070243,1.2661665197380474,2.857142925262451,52,43,60 -"['Louis Philippe', 'Peter England']",3.5805622740477046,1.351565809742223,2.0,70,53,71 -"['Steve Jobs', 'Atlanta']",5.567893613836706,3.540538692893887,1.2857142686843872,84,88,84 -"['Bella Hadid', 'Choi Woo-shik']",5.837202797028847,2.6104166628925474,1.4285714626312256,86,80,77 -"['Mali', 'Frances McDormand']",5.384683120608575,2.884401969312326,1.2857142686843872,82,83,84 -"['Coca-Cola Company', 'Pepsi']",1.423681585365021,1.0438806211708804,5.0,24,5,3 -"['Khabib Nurmagomedov', 'Conor McGregor']",1.168200568880505,1.0354933291081991,4.857142925262451,5,1,11 -"['Twitter', 'Facebook']",1.443415016426229,1.1952468266881626,4.285714149475098,26,33,29 -"['Cardiff University', 'Swansea University']",1.8261891855012786,1.203303933183536,4.142857074737549,38,34,37 -"['Isaac Newton', 'Gottfried Leibniz']",2.6580487193450812,1.3553361325661701,4.285714149475098,57,54,29 -"['Casio', 'Texas Instruments']",1.6507923636347177,1.1835395036039162,4.142857074737549,34,32,37 -"['Arsenal', 'Tottenham Hotspur']",1.1755004191000196,1.0591720732323784,4.857142925262451,7,12,11 -"['Nintendo', 'Xbox']",1.328788987568177,1.0998882844596016,4.285714149475098,17,17,29 -"['H&M', 'Zalora']",1.5049155224826745,1.359639423903739,4.0,27,55,43 -"['Serena Williams', 'Andy Murray']",1.245928769573111,1.0459443108429878,2.2857143878936768,11,7,67 -"['Liverpool FC', 'Manchester United']",1.1727266941793855,1.0449462333912818,5.0,6,6,3 -"['Apple', 'Samsung']",1.1541451547920842,1.04769222313876,4.857142925262451,4,8,11 -"['Expedia', 'Trivago']",1.2635778709227727,1.1483506089912217,2.857142925262451,13,26,60 -"['Heathrow Airport', 'Gatwick Airport']",1.3357227754189809,1.1256792359957808,3.857142925262451,18,21,46 -"['Mario', 'Bowser']",3.14959695598788,1.2529699295998475,4.5714287757873535,65,41,19 -"['US', 'China']",2.3247819757177757,1.2532725062626966,4.857142925262451,49,42,11 -"['Olympic Games', 'Helicobacter pylori']",7.37653934715647,3.3511833150794743,1.2857142686843872,87,86,84 -"['BMW', 'Mercedes-Benz']",1.1251171394838868,1.036298820976043,4.857142925262451,2,2,11 -"['Blur', 'Oasis']",2.108450633966055,1.3052386699396863,4.4285712242126465,45,46,24 -"['Israel', 'Palestine']",1.8981899812834107,1.1457000668046726,5.0,40,25,3 -"['Toshiba', 'LG']",1.5129641732454884,1.163162197987383,4.4285712242126465,29,30,24 -"['Apple', 'Rolex']",2.0181992591404967,1.55752033597564,2.7142856121063232,43,66,64 -"['Tesla', 'Skoda']",1.43649578851061,1.4840326440929967,3.4285714626312256,25,63,54 -"['Thomas Jefferson', 'Alexander Hamilton']",2.7364289999759426,1.322868915838166,4.142857074737549,59,49,37 -"['Chester FC', 'Wrexham FC']",1.5334888418405148,1.1432810093172319,4.5714287757873535,30,23,19 -"['Line of Duty', 'CSI']",3.01029375863041,1.517484179767383,3.7142856121063232,62,65,48 -"['Gladiator', 'Imelda Staunton']",5.002112985309699,3.4826074368903637,1.2857142686843872,78,87,84 -"['UK', 'France']",3.3998673133408617,1.3125181354740607,2.5714285373687744,69,48,66 -"['Nike', 'Adidas']",1.3536116772869842,1.0528324898144443,4.857142925262451,19,10,11 -"['Alain Prost', 'Ayrton Senna']",1.6862336215379696,1.1037874996569803,4.285714149475098,35,19,29 -"['Manchester City', 'Manchester United']",1.0870939198673084,1.042690282562067,4.857142925262451,0,4,11 -"['BBC', 'The Guardian']",2.5223660327101576,1.3234590754937028,3.7142856121063232,54,50,48 -"['Amazon', 'Ebay']",1.2346846687140058,1.1408217207337337,4.5714287757873535,10,22,19 -"['Sir Alex Ferguson', 'Jose Mourinho']",2.2043946964985652,1.3362973630326773,3.2857143878936768,47,51,56 -"['ASEAN', 'Helen Hunt']",5.244497726043538,3.295957018142525,1.2857142686843872,81,85,84 -"['Hans Zimmer', 'John Williams']",2.6216548358171985,1.245920637785629,3.2857143878936768,56,39,56 -"['Noel Gallagher', 'Liam Gallaguer']",1.9883356663902403,1.2467042808942606,4.0,42,40,43 -"[""McDonald's"", 'Burger King']",1.1942740534515446,1.0334133820827456,5.0,8,0,3 -"['Neoclassicism', 'Romanticism']",2.9581056176186435,1.3743393007605533,3.857142925262451,60,56,46 -"['Royal Feast', 'Fast X']",2.695617900643465,1.309691642758208,1.5714285373687744,58,47,74 -"['Eminem', 'MGK']",2.185697319457217,1.4744226711936121,4.285714149475098,46,62,29 -"['Sprite', '7 Up']",2.5481235180846835,1.212745195228596,5.0,55,35,3 -"['Katharine Hepburn', 'Abrahamic religion']",9.570305090472242,3.0833799818271994,2.0,88,84,71 -"['Martin Luther King Jr.', 'Malcolm X']",3.119627709210078,1.6853565210199075,3.5714285373687744,63,67,51 -"['Ligue 1', 'Hayley Atwell']",4.872242327007951,2.5542050524768216,1.2857142686843872,76,79,84 -"['Vikram', 'Coen brothers']",5.46585880925486,2.8249661298246354,1.5714285373687744,83,82,74 -"['Russia', 'China']",2.47713158923915,1.3004875998162657,2.7142856121063232,50,45,64 -"['Mohamed Salah', 'Korea']",4.917555632934283,1.955964256984248,1.5714285373687744,77,72,74 -"['Kingston', 'Samsung']",3.310632119927607,1.1773256866493471,3.5714285373687744,68,31,51 -"['AWS', 'GCP']",1.387821491282624,1.0957580666384157,4.714285850524902,22,16,17 -"['Beatles', 'Rolling Stones']",3.000307635241466,1.512356439122218,4.0,61,64,43 -"['John Tyler', 'Whig Party']",4.554650530605198,2.3251733241314745,2.0,73,75,71 +"['Jeremy Corbyn', 'Keir Starmer']",2.5054050426398784,1.4222025149293618,4.142857074737549,47,53,32 +"['EuroBasket 2022', 'Murad III']",4.309828196521226,2.3454037993300583,1.2857142686843872,67,71,79 +"['Bugatti', 'Lamborghini']",1.3981640140293563,1.1581703913669972,2.857142925262451,20,25,55 +"['Apple', 'Microsoft']",1.2275206545128392,1.116980313466796,4.857142925262451,7,17,7 +"['Lee Chong Wei', 'Lin Dan']",1.6413210384606873,1.2366011532822951,4.142857074737549,29,32,32 +"['Microsoft', 'Google']",1.1497194064692269,1.0906696582667166,4.4285712242126465,2,12,19 +"['Samsung', 'Pitbull']",4.6043208693629625,2.8062127386926976,1.2857142686843872,69,76,79 +"['Cristiano Ronaldo', 'Lionel Messi']",1.7924631688668162,1.076442896033145,4.857142925262451,34,11,7 +"['Germany', 'Austria']",1.922682473427117,1.1516096930453659,2.2857143878936768,37,23,62 +"['Dyson', 'Dualit']",2.314356716121875,1.4066400229807077,2.7142856121063232,44,52,59 +"['Netflix', 'Disney Plus']",1.3753552421582393,1.233603087311407,4.5714287757873535,18,31,14 +"['PyTorch', 'TensorFlow']",1.3672994237826923,1.2808253965315133,4.4285712242126465,17,39,19 +"['Sanpellegrino', 'Volvic']",3.2617643541640815,1.3447474634198389,3.5714285373687744,62,47,46 +"['Mikhail Khodorkovsky', 'Hezbollah']",4.816696698176535,2.4170384926741626,1.4285714626312256,70,73,72 +"['British Airways', 'Aer Lingus']",1.317719549976474,1.1037129775740366,4.142857074737549,13,15,32 +"['Federal Reserve Board', 'Bank of England']",2.512327248338375,1.8141170517333125,2.857142925262451,49,64,55 +"['American Psycho', 'Chihuahua']",5.720655544695763,1.9418134795261126,1.2857142686843872,80,66,79 +"['Mars', 'Snickers']",2.052264289557186,1.4256724727393357,3.4285714626312256,40,54,49 +"['ASML', 'LAM Research']",1.5398275923282265,1.8641223203372959,4.142857074737549,28,65,32 +"['Jake Paul', 'Tangled']",5.1082006333190995,2.396226404066843,1.2857142686843872,74,72,79 +"['Nikhita Khrushchev', 'Leonid Brezhnev']",3.1230509611972406,1.4714526914342227,3.4285714626312256,59,56,49 +"['Razer', 'Dell']",1.5108460287551244,1.0495182657911724,4.142857074737549,25,7,32 +"['Spotify', 'Apple']",1.2677358400496452,1.1535822949864265,4.0,11,24,38 +"['Kourtney Kardashian', 'Jenna Fischer']",5.114171171573231,2.1953277578209183,2.142857074737549,75,69,64 +"['Twitter', 'WhatsApp']",1.7000670009695336,1.4379288274666722,3.0,33,55,53 +"['Manchester United', 'Arsenal']",1.288784519299688,1.0723828530634452,4.142857074737549,12,10,32 +"['WeChat', 'WhatsApp']",1.64870756189045,1.2416368997951348,4.4285712242126465,30,33,19 +"['Saudi Arabia', 'Israel']",1.8315257969993983,1.1452641071432148,4.285714149475098,36,21,24 +"['Bashar al-Assad', 'Christianity']",4.196573985107116,2.1672732394398393,1.2857142686843872,66,68,79 +"['Didier Deschamps', 'Scott Adkins']",3.220520614077468,1.7735129268342826,1.4285714626312256,61,63,72 +"['Lionel Messi', 'Kylian Mbappé']",2.5096010983070243,1.2661665197380474,2.857142925262451,48,38,55 +"['Louis Philippe', 'Peter England']",3.5805622740477046,1.351565809742223,2.0,65,48,66 +"['Steve Jobs', 'Atlanta']",5.567893613836706,3.540538692893887,1.2857142686843872,79,83,79 +"['Bella Hadid', 'Choi Woo-shik']",5.837202797028847,2.6104166628925474,1.4285714626312256,81,75,72 +"['Mali', 'Frances McDormand']",5.384683120608575,2.884401969312326,1.2857142686843872,77,78,79 +"['Coca-Cola Company', 'Pepsi']",1.423681585365021,1.0438806211708804,5.0,21,4,1 +"['Khabib Nurmagomedov', 'Conor McGregor']",1.168200568880505,1.0354933291081991,4.857142925262451,4,1,7 +"['Twitter', 'Facebook']",1.443415016426229,1.1952468266881626,4.285714149475098,23,29,24 +"['Cardiff University', 'Swansea University']",1.8261891855012786,1.203303933183536,4.142857074737549,35,30,32 +"['Isaac Newton', 'Gottfried Leibniz']",2.6580487193450812,1.3553361325661701,4.285714149475098,52,49,24 +"['Casio', 'Texas Instruments']",1.6507923636347177,1.1835395036039162,4.142857074737549,31,28,32 +"['Arsenal', 'Tottenham Hotspur']",1.1755004191000196,1.0591720732323784,4.857142925262451,5,9,7 +"['Nintendo', 'Xbox']",1.328788987568177,1.0998882844596016,4.285714149475098,14,14,24 +"['H&M', 'Zalora']",1.5049155224826745,1.359639423903739,4.0,24,50,38 +"['Serena Williams', 'Andy Murray']",1.245928769573111,1.0459443108429878,2.2857143878936768,9,5,62 +"['Apple', 'Samsung']",1.1541451547920842,1.04769222313876,4.857142925262451,3,6,7 +"['Expedia', 'Trivago']",1.2635778709227727,1.1483506089912217,2.857142925262451,10,22,55 +"['Heathrow Airport', 'Gatwick Airport']",1.3357227754189809,1.1256792359957808,3.857142925262451,15,18,41 +"['Mario', 'Bowser']",3.14959695598788,1.2529699295998475,4.5714287757873535,60,36,14 +"['US', 'China']",2.3247819757177757,1.2532725062626966,4.857142925262451,45,37,7 +"['Olympic Games', 'Helicobacter pylori']",7.37653934715647,3.3511833150794743,1.2857142686843872,82,81,79 +"['BMW', 'Mercedes-Benz']",1.1251171394838868,1.036298820976043,4.857142925262451,1,2,7 +"['Blur', 'Oasis']",2.108450633966055,1.3052386699396863,4.4285712242126465,41,41,19 +"['Toshiba', 'LG']",1.5129641732454884,1.163162197987383,4.4285712242126465,26,26,19 +"['Apple', 'Rolex']",2.0181992591404967,1.55752033597564,2.7142856121063232,39,61,59 +"['Tesla', 'Skoda']",1.43649578851061,1.4840326440929967,3.4285714626312256,22,58,49 +"['Thomas Jefferson', 'Alexander Hamilton']",2.7364289999759426,1.322868915838166,4.142857074737549,54,44,32 +"['Chester FC', 'Wrexham FC']",1.5334888418405148,1.1432810093172319,4.5714287757873535,27,20,14 +"['Line of Duty', 'CSI']",3.01029375863041,1.517484179767383,3.7142856121063232,57,60,43 +"['Gladiator', 'Imelda Staunton']",5.002112985309699,3.4826074368903637,1.2857142686843872,73,82,79 +"['UK', 'France']",3.3998673133408617,1.3125181354740607,2.5714285373687744,64,43,61 +"['Nike', 'Adidas']",1.3536116772869842,1.0528324898144443,4.857142925262451,16,8,7 +"['Alain Prost', 'Ayrton Senna']",1.6862336215379696,1.1037874996569803,4.285714149475098,32,16,24 +"['Manchester City', 'Manchester United']",1.0870939198673084,1.042690282562067,4.857142925262451,0,3,7 +"['BBC', 'The Guardian']",2.5223660327101576,1.3234590754937028,3.7142856121063232,50,45,43 +"['Amazon', 'Ebay']",1.2346846687140058,1.1408217207337337,4.5714287757873535,8,19,14 +"['Sir Alex Ferguson', 'Jose Mourinho']",2.2043946964985652,1.3362973630326773,3.2857143878936768,43,46,51 +"['ASEAN', 'Helen Hunt']",5.244497726043538,3.295957018142525,1.2857142686843872,76,80,79 +"['Hans Zimmer', 'John Williams']",2.6216548358171985,1.245920637785629,3.2857143878936768,51,34,51 +"['Noel Gallagher', 'Liam Gallaguer']",1.9883356663902403,1.2467042808942606,4.0,38,35,38 +"[""McDonald's"", 'Burger King']",1.1942740534515446,1.0334133820827456,5.0,6,0,1 +"['Neoclassicism', 'Romanticism']",2.9581056176186435,1.3743393007605533,3.857142925262451,55,51,41 +"['Royal Feast', 'Fast X']",2.695617900643465,1.309691642758208,1.5714285373687744,53,42,69 +"['Eminem', 'MGK']",2.185697319457217,1.4744226711936121,4.285714149475098,42,57,24 +"['Katharine Hepburn', 'Abrahamic religion']",9.570305090472242,3.0833799818271994,2.0,83,79,66 +"['Martin Luther King Jr.', 'Malcolm X']",3.119627709210078,1.6853565210199075,3.5714285373687744,58,62,46 +"['Ligue 1', 'Hayley Atwell']",4.872242327007951,2.5542050524768216,1.2857142686843872,71,74,79 +"['Vikram', 'Coen brothers']",5.46585880925486,2.8249661298246354,1.5714285373687744,78,77,69 +"['Russia', 'China']",2.47713158923915,1.3004875998162657,2.7142856121063232,46,40,59 +"['Mohamed Salah', 'Korea']",4.917555632934283,1.955964256984248,1.5714285373687744,72,67,69 +"['Kingston', 'Samsung']",3.310632119927607,1.1773256866493471,3.5714285373687744,63,27,46 +"['AWS', 'GCP']",1.387821491282624,1.0957580666384157,4.714285850524902,19,13,12 +"['Beatles', 'Rolling Stones']",3.000307635241466,1.512356439122218,4.0,56,59,38 +"['John Tyler', 'Whig Party']",4.554650530605198,2.3251733241314745,2.0,68,70,66 diff --git a/experiments/results/flan_ul2_additional_analysis/frie.csv b/experiments/results/flan_ul2_additional_analysis/frie.csv index eba8d3b21424a9aef0a1d1876351fb12835d0b3f..7241b7c3910fdb4e3584fa78862d495093d427eb 100644 --- a/experiments/results/flan_ul2_additional_analysis/frie.csv +++ b/experiments/results/flan_ul2_additional_analysis/frie.csv @@ -1,93 +1,89 @@ pairs,score_fewshot,score_zeroshot,score_true,rank_fewshot,rank_zeroshot,rank_true -"['Rishi Sunak', 'Leo Varadkar']",1.8745743305026898,1.5328972126014884,4.0,22,38,36 -"['Gondor', 'Rohan']",1.547410230183052,1.3200803632378275,4.285714149475098,7,10,24 -"['FIFA', 'UEFA']",1.8601838471488965,1.577544267205364,3.7142856121063232,21,46,46 -"['Joseph Stalin', 'Josip Broz Tito']",3.4109425925809616,1.7933325159421711,1.8571428060531616,76,57,74 -"['Hillary Clinton', 'Barack Obama']",1.5239015529180413,1.3201421701192426,4.285714149475098,6,11,24 -"['Di Maio', 'Salvini']",2.2721448401343936,1.337838952235684,2.4285714626312256,36,13,66 -"['Yahoo', 'Yahoo Japan']",1.5222072597182084,1.3426315225376397,4.5714287757873535,5,14,12 -"['Armenia', 'Azerbaijan']",2.5939852328960775,2.019560002782508,1.2857142686843872,48,69,85 -"['Doja Cat', 'Anthony Albanese']",2.7925708911375096,2.285112189877014,1.2857142686843872,55,77,85 -"['Pedro Sánchez', 'Pablo Iglesias']",2.3213870515558295,1.5763126396850815,3.857142925262451,40,45,41 -"['Islamic State', 'Denys Prokopenko']",5.378523082216302,2.7434138522858,1.8571428060531616,87,84,74 -"['Brazil', 'India']",2.774780345997216,1.5445218908976759,3.4285714626312256,53,42,54 -"['Extinction Rebellion', 'Greta Thunberg']",2.6949934434569807,1.7988221620291822,4.714285850524902,50,58,8 -"['Sicily', 'Calabria']",1.9129885017587558,1.7086696805448425,4.0,24,52,36 -"['Oman', 'Iran']",2.9670962480147796,1.8344885935861346,3.4285714626312256,59,62,54 -"['Sony', 'ZEISS']",2.7021796583861115,1.4926095846618708,3.857142925262451,51,34,41 -"['FTX', 'Alameda Research']",3.4059919788309463,1.8468702122489273,4.714285850524902,74,64,8 -"['UK', 'Commonwealth']",1.6935460642808724,1.3116195554924144,4.714285850524902,11,9,8 -"['Australia', 'New Zealand']",1.799573489292502,1.1996322618593351,4.857142925262451,19,4,4 -"['Kylo Ren', 'Rey']",4.730349388909229,2.2496602704508817,3.857142925262451,86,76,41 -"['Anne Boleyn', 'Columbia Pictures']",2.8881106838766155,3.1023535131377296,1.5714285373687744,58,89,77 -"['KGB', 'CIA']",3.1965769251049667,1.9175389761631927,1.1428571939468384,67,66,90 -"['Rishi Sunak', 'Joe Biden']",1.6567048489506737,1.4530706574347767,4.285714149475098,10,32,24 -"['Quentin Tarantino', 'Edgar Wright']",1.5923169270556126,1.5630134648523961,4.142857074737549,9,44,31 -"['Keir Starmer', 'Jeremy Corbyn']",1.9958313139515222,1.6027956172293558,2.5714285373687744,28,48,65 -"['U.S.S.R.', 'East Germany']",2.3395774607344544,1.7490046671657096,4.5714287757873535,42,54,12 -"['Harry Potter', 'Severus Snape']",2.835789806911329,2.1374828361920906,3.2857143878936768,56,73,59 -"['Tata Motors', 'Jaguar']",3.2645597024389574,1.5440595393249203,4.714285850524902,72,41,8 -"['Kendall Jenner', 'Bergen']",3.2495189513125,2.107965967178699,1.2857142686843872,70,72,85 -"['Thomas Jefferson', 'Kid Cudi']",3.4343120315791578,3.5699412974829463,1.4285714626312256,77,91,79 -"['South Korea', 'Japan']",3.2084105434277217,1.358307886737753,3.2857143878936768,68,17,59 -"['Spain', 'Portugal']",2.242174696111792,1.4030445224268684,4.5714287757873535,35,23,12 -"['Liam Gallagher', 'Noel Gallagher']",1.428242484891731,1.1880720173877841,2.0,3,2,72 -"['France', 'Belgium']",2.1495651889562515,1.263730412056352,5.0,32,6,1 -"['Turkish Airlines', 'All Nippon Airways']",1.995466970230535,1.8020300914000285,3.4285714626312256,27,59,54 -"['Malaysia', 'Singapore']",2.278491830543572,1.421034738582978,4.4285712242126465,38,28,17 -"['JP Morgan', 'Morgan Stanley']",3.1479626220324053,1.6147051197573883,2.7142856121063232,66,49,63 -"['Sophia Loren', 'Marlon Brando']",2.6522093172042496,1.5278672802298314,2.142857074737549,49,37,69 -"['J.R.R. Tolkien', 'C.S. Lewis']",1.5004651493402452,1.4046480007981625,4.4285712242126465,4,24,17 -"['China', 'North Korea']",3.394494099547056,1.9096033070427534,4.142857074737549,73,65,31 -"['Margaret Thatcher', 'Ronald Reagan']",1.9637938491496274,1.3577940001482511,4.4285712242126465,25,16,17 -"['Eva Perón', 'Interpol']",3.1280485710606656,3.0137673242361056,1.7142857313156128,65,87,76 -"['UK', 'Ireland']",2.2780591851186016,1.3653722695428352,3.7142856121063232,37,18,46 -"['Singapore', 'Israel']",2.15985040502363,1.4140880138313676,3.857142925262451,33,26,41 -"['Eastern Orthodoxy', 'Oriental Orthodoxy']",1.9975610395757384,1.5438050427063432,3.5714285373687744,29,40,49 -"['India', 'US']",1.7856887266108992,1.255014507349887,3.4285714626312256,18,5,54 -"['Ed Gein', 'Colonel Sanders']",8.126493200865754,3.4933812565349394,1.2857142686843872,91,90,85 -"['Beatles', 'Rolling Stones']",1.7110518564158512,1.9865660915532268,3.4285714626312256,14,67,54 -"['Red Bull', 'GoPro']",2.3774817496320004,1.5047058185996207,4.4285712242126465,45,36,17 -"['HSBC', 'BlackRock']",4.060163736093491,2.0075052819565604,4.142857074737549,83,68,31 -"['Elsa', 'Anna']",1.0767167379115685,1.3202414370035342,4.5714287757873535,0,12,12 -"['Macbeth', 'Banquo']",3.243659802424347,1.594563451823357,2.7142856121063232,69,47,63 -"['Aznar', 'Bush']",2.553127859619468,1.3840087685711524,4.714285850524902,47,20,8 -"['Google', 'Samsung']",1.9677685952386745,1.3997592031330308,2.142857074737549,26,22,69 -"['IMF', 'The World Bank']",2.3615704424537003,1.5407179864932719,4.285714149475098,43,39,24 -"['Nikon', 'Tokina']",3.0316207016814207,1.8125038240195745,2.2857143878936768,61,61,67 -"['Walter White', 'Gus Fring']",2.78069204261706,1.4999948860022556,2.142857074737549,54,35,69 -"['Ron Weasley', 'Neville Longbottom']",1.2141788077859057,1.10628288517074,4.285714149475098,1,0,24 -"['Darth Vader', 'Emperor Palpatine']",6.205485207857897,2.2899855574798225,3.7142856121063232,88,78,46 -"['Coca-Cola', ""McDonald's""]",3.5697812866866854,1.8090831455918956,4.285714149475098,80,60,24 -"['Instagram', 'WhatsApp']",3.4448723805285413,1.6941523367602,4.142857074737549,78,51,31 -"['Noah Schnapp', 'Galatasaray S.K.']",3.4852571598231874,2.8019273827454723,1.0,79,86,91 -"['US', 'Canada']",1.784284332641386,1.197777087535886,4.857142925262451,17,3,4 -"['Bob Marley', 'Abu Bakr']",3.088521387504092,2.649177577551091,1.2857142686843872,62,83,85 -"['Jeff Bezos', 'GitHub']",3.1189446246428,2.800474123110106,2.142857074737549,64,85,69 -"['Hong Kong', 'HSBC']",3.0963374224577946,1.7907472995174216,3.5714285373687744,63,56,49 -"['United States', 'United Kingdom']",2.0385480921524324,1.1452585949143625,5.0,31,1,1 -"['Porter Wagoner', 'Dolly Parton']",1.58286302901684,1.448369263557515,4.142857074737549,8,31,31 -"['Achilles', 'Jonathan Bailey']",2.497802817204539,2.091679459310318,1.2857142686843872,46,71,85 -"['Linus Sebastian', 'Marques Brownlee']",2.019903462306368,1.4306724113989326,3.4285714626312256,30,30,54 -"['Catherine Zeta-Jones', 'Johnny Knoxville']",3.407993055964441,2.3032680576640763,1.8571428060531616,75,79,74 -"['Amazon', 'Royal Mail']",4.208998551944281,1.8436059753752663,3.0,84,63,61 -"['The Beatles', 'Queen']",2.2982529956212763,2.535800405044514,3.5714285373687744,39,81,49 -"['Benedict Cumberbatch', 'Hanukkah']",4.014797827691939,2.587972950419903,1.4285714626312256,82,82,79 -"['Huawei', 'China']",2.8443849448867033,1.6263823578951324,4.857142925262451,57,50,4 -"['Rishi Sunak', 'Emmanuel Macron']",1.7050516152774524,1.4175925450471027,4.0,13,27,36 -"['Microsoft', 'LinkedIn']",2.201981818402685,1.4224206869370313,4.4285712242126465,34,29,17 -"['Paul Rudd', 'Memento']",4.570331990332882,2.2146243768099922,1.2857142686843872,85,75,85 -"['Russia', 'Georgia']",3.0270059208598212,2.189183201168643,1.5714285373687744,60,74,77 -"['Germany', 'France']",2.363629963281166,1.408355684941454,4.0,44,25,36 -"['Stephen Hawking', 'Brian Cox']",1.7195681611652145,1.481281276570047,3.857142925262451,15,33,41 -"['Jean-Michel Basquiat', 'Andy Warhol']",1.8317732963172801,1.387763339914243,4.0,20,21,36 -"['Mark Drakeford', 'Rishi Sunak']",1.9100987212739948,1.3819595848830297,3.0,23,19,61 -"['Jürgen Klopp', 'Exo']",3.2643771887608133,2.0334641521139707,1.0,71,70,91 -"['Windows', 'Xbox']",2.7463502833751425,1.3096745859497074,4.285714149475098,52,8,24 -"['Saturn', 'Rachel Bilson']",6.4014221456208205,2.3856047480335407,1.2857142686843872,89,80,85 -"['Ottoman Empire', 'Snowpiercer']",6.454866281707184,3.094959464267752,1.2857142686843872,90,88,85 -"['Johnny Cash', 'Waylon Jennings']",1.42712057334745,1.2764023623156513,4.285714149475098,2,7,24 -"['UN', 'NATO']",1.6980850920247033,1.5479037084149063,4.4285712242126465,12,43,17 -"['Boris Johnson', 'Emmanuel Macron']",1.774999932675924,1.357574493019605,3.2857143878936768,16,15,59 -"['Cersei Lannister', 'Euron Greyjoy']",3.629246562824895,1.789102919795851,3.857142925262451,81,55,41 -"['Japan', 'Taiwan']",2.326098881271156,1.7482978988801516,3.4285714626312256,41,53,54 +"['Rishi Sunak', 'Leo Varadkar']",1.8745743305026898,1.5328972126014884,4.0,20,35,32 +"['Gondor', 'Rohan']",1.547410230183052,1.3200803632378275,4.285714149475098,6,9,20 +"['FIFA', 'UEFA']",1.8601838471488965,1.577544267205364,3.7142856121063232,19,43,42 +"['Joseph Stalin', 'Josip Broz Tito']",3.4109425925809616,1.7933325159421711,1.8571428060531616,72,54,70 +"['Hillary Clinton', 'Barack Obama']",1.5239015529180413,1.3201421701192426,4.285714149475098,5,10,20 +"['Di Maio', 'Salvini']",2.2721448401343936,1.337838952235684,2.4285714626312256,34,11,62 +"['Yahoo', 'Yahoo Japan']",1.5222072597182084,1.3426315225376397,4.5714287757873535,4,12,9 +"['Armenia', 'Azerbaijan']",2.5939852328960775,2.019560002782508,1.2857142686843872,45,65,81 +"['Doja Cat', 'Anthony Albanese']",2.7925708911375096,2.285112189877014,1.2857142686843872,51,73,81 +"['Pedro Sánchez', 'Pablo Iglesias']",2.3213870515558295,1.5763126396850815,3.857142925262451,38,42,37 +"['Islamic State', 'Denys Prokopenko']",5.378523082216302,2.7434138522858,1.8571428060531616,83,80,70 +"['Brazil', 'India']",2.774780345997216,1.5445218908976759,3.4285714626312256,49,39,50 +"['Sicily', 'Calabria']",1.9129885017587558,1.7086696805448425,4.0,22,49,32 +"['Oman', 'Iran']",2.9670962480147796,1.8344885935861346,3.4285714626312256,55,58,50 +"['Sony', 'ZEISS']",2.7021796583861115,1.4926095846618708,3.857142925262451,47,31,37 +"['FTX', 'Alameda Research']",3.4059919788309463,1.8468702122489273,4.714285850524902,70,60,6 +"['UK', 'Commonwealth']",1.6935460642808724,1.3116195554924144,4.714285850524902,10,8,6 +"['Kylo Ren', 'Rey']",4.730349388909229,2.2496602704508817,3.857142925262451,82,72,37 +"['Anne Boleyn', 'Columbia Pictures']",2.8881106838766155,3.1023535131377296,1.5714285373687744,54,85,73 +"['KGB', 'CIA']",3.1965769251049667,1.9175389761631927,1.1428571939468384,63,62,86 +"['Rishi Sunak', 'Joe Biden']",1.6567048489506737,1.4530706574347767,4.285714149475098,9,29,20 +"['Quentin Tarantino', 'Edgar Wright']",1.5923169270556126,1.5630134648523961,4.142857074737549,8,41,27 +"['Keir Starmer', 'Jeremy Corbyn']",1.9958313139515222,1.6027956172293558,2.5714285373687744,26,45,61 +"['U.S.S.R.', 'East Germany']",2.3395774607344544,1.7490046671657096,4.5714287757873535,40,51,9 +"['Harry Potter', 'Severus Snape']",2.835789806911329,2.1374828361920906,3.2857143878936768,52,69,55 +"['Tata Motors', 'Jaguar']",3.2645597024389574,1.5440595393249203,4.714285850524902,68,38,6 +"['Kendall Jenner', 'Bergen']",3.2495189513125,2.107965967178699,1.2857142686843872,66,68,81 +"['Thomas Jefferson', 'Kid Cudi']",3.4343120315791578,3.5699412974829463,1.4285714626312256,73,87,75 +"['South Korea', 'Japan']",3.2084105434277217,1.358307886737753,3.2857143878936768,64,15,55 +"['Spain', 'Portugal']",2.242174696111792,1.4030445224268684,4.5714287757873535,33,20,9 +"['Liam Gallagher', 'Noel Gallagher']",1.428242484891731,1.1880720173877841,2.0,2,2,68 +"['France', 'Belgium']",2.1495651889562515,1.263730412056352,5.0,30,5,1 +"['Turkish Airlines', 'All Nippon Airways']",1.995466970230535,1.8020300914000285,3.4285714626312256,25,55,50 +"['Malaysia', 'Singapore']",2.278491830543572,1.421034738582978,4.4285712242126465,36,25,13 +"['JP Morgan', 'Morgan Stanley']",3.1479626220324053,1.6147051197573883,2.7142856121063232,62,46,59 +"['Sophia Loren', 'Marlon Brando']",2.6522093172042496,1.5278672802298314,2.142857074737549,46,34,65 +"['J.R.R. Tolkien', 'C.S. Lewis']",1.5004651493402452,1.4046480007981625,4.4285712242126465,3,21,13 +"['China', 'North Korea']",3.394494099547056,1.9096033070427534,4.142857074737549,69,61,27 +"['Margaret Thatcher', 'Ronald Reagan']",1.9637938491496274,1.3577940001482511,4.4285712242126465,23,14,13 +"['Eva Perón', 'Interpol']",3.1280485710606656,3.0137673242361056,1.7142857313156128,61,83,72 +"['UK', 'Ireland']",2.2780591851186016,1.3653722695428352,3.7142856121063232,35,16,42 +"['Singapore', 'Israel']",2.15985040502363,1.4140880138313676,3.857142925262451,31,23,37 +"['Eastern Orthodoxy', 'Oriental Orthodoxy']",1.9975610395757384,1.5438050427063432,3.5714285373687744,27,37,45 +"['India', 'US']",1.7856887266108992,1.255014507349887,3.4285714626312256,17,4,50 +"['Ed Gein', 'Colonel Sanders']",8.126493200865754,3.4933812565349394,1.2857142686843872,87,86,81 +"['Beatles', 'Rolling Stones']",1.7110518564158512,1.9865660915532268,3.4285714626312256,13,63,50 +"['Red Bull', 'GoPro']",2.3774817496320004,1.5047058185996207,4.4285712242126465,43,33,13 +"['HSBC', 'BlackRock']",4.060163736093491,2.0075052819565604,4.142857074737549,79,64,27 +"['Macbeth', 'Banquo']",3.243659802424347,1.594563451823357,2.7142856121063232,65,44,59 +"['Google', 'Samsung']",1.9677685952386745,1.3997592031330308,2.142857074737549,24,19,65 +"['IMF', 'The World Bank']",2.3615704424537003,1.5407179864932719,4.285714149475098,41,36,20 +"['Nikon', 'Tokina']",3.0316207016814207,1.8125038240195745,2.2857143878936768,57,57,63 +"['Walter White', 'Gus Fring']",2.78069204261706,1.4999948860022556,2.142857074737549,50,32,65 +"['Ron Weasley', 'Neville Longbottom']",1.2141788077859057,1.10628288517074,4.285714149475098,0,0,20 +"['Darth Vader', 'Emperor Palpatine']",6.205485207857897,2.2899855574798225,3.7142856121063232,84,74,42 +"['Coca-Cola', ""McDonald's""]",3.5697812866866854,1.8090831455918956,4.285714149475098,76,56,20 +"['Instagram', 'WhatsApp']",3.4448723805285413,1.6941523367602,4.142857074737549,74,48,27 +"['Noah Schnapp', 'Galatasaray S.K.']",3.4852571598231874,2.8019273827454723,1.0,75,82,87 +"['US', 'Canada']",1.784284332641386,1.197777087535886,4.857142925262451,16,3,3 +"['Bob Marley', 'Abu Bakr']",3.088521387504092,2.649177577551091,1.2857142686843872,58,79,81 +"['Jeff Bezos', 'GitHub']",3.1189446246428,2.800474123110106,2.142857074737549,60,81,65 +"['Hong Kong', 'HSBC']",3.0963374224577946,1.7907472995174216,3.5714285373687744,59,53,45 +"['United States', 'United Kingdom']",2.0385480921524324,1.1452585949143625,5.0,29,1,1 +"['Porter Wagoner', 'Dolly Parton']",1.58286302901684,1.448369263557515,4.142857074737549,7,28,27 +"['Achilles', 'Jonathan Bailey']",2.497802817204539,2.091679459310318,1.2857142686843872,44,67,81 +"['Linus Sebastian', 'Marques Brownlee']",2.019903462306368,1.4306724113989326,3.4285714626312256,28,27,50 +"['Catherine Zeta-Jones', 'Johnny Knoxville']",3.407993055964441,2.3032680576640763,1.8571428060531616,71,75,70 +"['Amazon', 'Royal Mail']",4.208998551944281,1.8436059753752663,3.0,80,59,57 +"['The Beatles', 'Queen']",2.2982529956212763,2.535800405044514,3.5714285373687744,37,77,45 +"['Benedict Cumberbatch', 'Hanukkah']",4.014797827691939,2.587972950419903,1.4285714626312256,78,78,75 +"['Huawei', 'China']",2.8443849448867033,1.6263823578951324,4.857142925262451,53,47,3 +"['Rishi Sunak', 'Emmanuel Macron']",1.7050516152774524,1.4175925450471027,4.0,12,24,32 +"['Microsoft', 'LinkedIn']",2.201981818402685,1.4224206869370313,4.4285712242126465,32,26,13 +"['Paul Rudd', 'Memento']",4.570331990332882,2.2146243768099922,1.2857142686843872,81,71,81 +"['Russia', 'Georgia']",3.0270059208598212,2.189183201168643,1.5714285373687744,56,70,73 +"['Germany', 'France']",2.363629963281166,1.408355684941454,4.0,42,22,32 +"['Stephen Hawking', 'Brian Cox']",1.7195681611652145,1.481281276570047,3.857142925262451,14,30,37 +"['Jean-Michel Basquiat', 'Andy Warhol']",1.8317732963172801,1.387763339914243,4.0,18,18,32 +"['Mark Drakeford', 'Rishi Sunak']",1.9100987212739948,1.3819595848830297,3.0,21,17,57 +"['Jürgen Klopp', 'Exo']",3.2643771887608133,2.0334641521139707,1.0,67,66,87 +"['Windows', 'Xbox']",2.7463502833751425,1.3096745859497074,4.285714149475098,48,7,20 +"['Saturn', 'Rachel Bilson']",6.4014221456208205,2.3856047480335407,1.2857142686843872,85,76,81 +"['Ottoman Empire', 'Snowpiercer']",6.454866281707184,3.094959464267752,1.2857142686843872,86,84,81 +"['Johnny Cash', 'Waylon Jennings']",1.42712057334745,1.2764023623156513,4.285714149475098,1,6,20 +"['UN', 'NATO']",1.6980850920247033,1.5479037084149063,4.4285712242126465,11,40,13 +"['Boris Johnson', 'Emmanuel Macron']",1.774999932675924,1.357574493019605,3.2857143878936768,15,13,55 +"['Cersei Lannister', 'Euron Greyjoy']",3.629246562824895,1.789102919795851,3.857142925262451,77,52,37 +"['Japan', 'Taiwan']",2.326098881271156,1.7482978988801516,3.4285714626312256,39,50,50 diff --git a/experiments/results/flan_ul2_additional_analysis/infl.csv b/experiments/results/flan_ul2_additional_analysis/infl.csv index 4335b6477a91b278aef24a0624b7a34202f65824..44fcf70ea47b723cbebde151ef13685c1060f55a 100644 --- a/experiments/results/flan_ul2_additional_analysis/infl.csv +++ b/experiments/results/flan_ul2_additional_analysis/infl.csv @@ -1,94 +1,91 @@ pairs,score_fewshot,score_zeroshot,score_true,rank_fewshot,rank_zeroshot,rank_true -"['Prince Harry', 'Monarchy']",2.2476740650761298,1.4828068514166197,4.857142925262451,68,65,3 -"['F1', 'social media']",1.9753139794074348,1.4783565184427614,2.857142925262451,52,62,69 -"['Elton John', 'Elvis Presley']",1.1804962904837342,1.2207688454317978,4.285714149475098,9,5,29 -"['Jack Black', 'Waffen-SS']",2.6375428331912505,1.6618920512992446,1.1428571939468384,74,84,90 -"['Game of Thrones', 'Lord of the Rings']",1.7340579064068953,1.3037945218604563,4.4285712242126465,37,27,21 -"['Canon', 'Nikon']",1.8748803930957065,1.499901101345442,4.142857074737549,46,69,36 -"['Thomas Aquinas', 'Aristotle']",1.2159023258189594,1.2786954208798134,4.5714287757873535,13,21,13 -"['Android', 'iOS']",1.7137210908102982,1.383687906634991,4.142857074737549,36,43,36 -"['Charles Baudelaire', 'Tornado MRCA']",3.4578634289751684,2.2726535736087294,1.2857142686843872,87,92,86 -"['trending music', 'TikTok']",3.7166366139334093,1.9175394333401652,4.714285850524902,91,87,7 -"['Xi Jinping', 'Kim Jong-il']",2.5007580583809133,1.4616549945990829,3.2857143878936768,71,60,62 -"['Beethoven', 'romanticism']",1.164930447072821,1.3262804176032572,3.2857143878936768,6,32,62 -"['Edgar Allan Poe', 'Romanticism']",1.3855810355586151,1.3348436344608527,4.4285712242126465,22,34,21 -"['US', 'NASA']",1.9221526323194973,1.4853929568657513,4.0,48,66,44 -"['Wales', 'Westminster']",2.2697414102466738,1.4885316048811115,4.285714149475098,69,67,29 -"['Sierra Leone', 'Pulp fiction']",3.4937993908285896,1.5544310550489477,1.2857142686843872,88,72,86 -"['Ethereum', 'Bitcoin']",1.977971814914747,1.2953061815438591,4.857142925262451,53,23,3 -"['Theresa May', 'David Cameron']",2.867953650113619,1.586599476418079,4.4285712242126465,80,76,21 -"['Anna Delvey', 'Bernie Madoff']",5.851304478796712,2.2394238525833763,3.4285714626312256,92,91,57 -"['Lord of the Rings', 'Beowulf']",1.4028647338107878,1.2980656118986473,4.5714287757873535,23,25,13 -"['Andrew Johnson', 'Abraham Lincoln']",1.7943550054552766,1.40498846198677,4.0,39,51,44 -"['LinkedIn', 'Facebook']",2.0518563779471473,1.4175498334174674,3.2857143878936768,59,52,62 -"['Picasso', 'Cezanne']",1.0984081274257655,1.2479383152464008,4.5714287757873535,0,11,13 -"['Playstation', 'Xbox']",1.9293394427509483,1.3788052017388595,4.142857074737549,49,42,36 -"['Kevin Spacey', 'Tenerife']",3.0559953961248767,1.9604880644970053,1.1428571939468384,81,89,90 -"['Saudi Arabia', 'US']",1.7368911915800216,1.2916515768834047,4.0,38,22,44 -"['Fitbit', 'heart rate monitor']",3.123461259095108,1.6164861808299595,4.0,83,80,44 -"['Taiwan', 'China']",2.2182447127919165,1.5468607584026417,4.5714287757873535,66,71,13 -"['Kylian Mbappe', 'Cristiano Ronaldo']",1.1384666039027294,1.3997548229520052,4.5714287757873535,2,48,13 -"['Picasso', 'cubism']",1.1386846013027918,1.2655718661677833,3.857142925262451,3,17,50 -"['Miley Cyrus', 'Lorde']",2.5057882624182883,1.4807292942898764,3.4285714626312256,72,64,57 -"['Neymar', 'Alexis Sánchez']",1.1664475878754492,1.3969767151825936,3.5714285373687744,8,47,54 -"['Smashing Pumpkins', 'Beatles']",1.2902274990700031,1.1792361630004708,4.0,18,0,44 -"['Portuguese', 'The Prestige']",2.4246715053563133,1.9433309750579217,1.7142857313156128,70,88,78 -"['Luke Evans', 'Ava Gardner']",1.9844477084949745,1.4520768040323637,1.4285714626312256,55,59,81 -"['MacOS', 'Linux']",1.606121690504469,1.332216987202794,4.0,31,33,44 -"['Transport for Wales', 'National Rail']",3.1179866247158046,1.6550213721066336,4.142857074737549,82,83,36 -"['Herbie Hancock', 'Miles Davis']",1.1906291013619124,1.1964928260606924,4.5714287757873535,10,1,13 -"['India', 'Hinduism']",1.8738738933714594,1.2196591792656795,4.857142925262451,44,4,3 -"['hip hop', 'jazz']",1.2958361565295249,1.2047165654123286,3.7142856121063232,20,2,52 -"['Bob Dylan', 'Woody Guthrie']",1.1573855526684,1.2326184562750893,4.285714149475098,5,7,29 -"['Tim Burton', 'German expressionism']",1.5289439919718755,1.369226360059585,4.142857074737549,26,40,36 -"['Eamon de Valera', 'James Napper Tandy']",2.6897103923804613,1.443439450357,2.5714285373687744,75,58,76 -"['Joe Biden', 'Donald Trump']",2.7151493148816317,1.4317740304131183,3.142857074737549,76,55,67 -"[""Shaquille O'Neal"", 'Selim II']",1.9829826136041866,1.4394651784951111,1.2857142686843872,54,57,86 -"['Cobra Kai', 'Anna Chlumsky']",2.843922142288414,1.977163565115634,1.2857142686843872,78,90,86 -"['Harry Potter', 'Wizard of Oz']",1.526616290848502,1.2769913155132229,2.7142856121063232,25,20,73 -"['Coca-Cola', 'Pepsi']",1.9394993430469933,1.3923309535278097,4.285714149475098,50,46,29 -"['Apple Music', 'Spotify']",2.0835486180967333,1.576047707286359,4.285714149475098,61,74,29 -"['Singaporean food', 'Malaysian food']",2.0290924274978543,1.3594139059930275,3.142857074737549,57,38,67 -"['Guess', 'Gucci']",2.088424766132236,1.3498799842494749,3.2857143878936768,62,36,62 -"['Commonwealth', 'United Kingdom']",2.2425711193340345,1.317790593316562,4.5714287757873535,67,30,13 -"['machine learning', 'Google']",1.6035954368348817,1.470958422894975,4.0,30,61,44 -"['Antonio Salazar', 'fascism']",2.037055683002217,1.6184086883675441,3.2857143878936768,58,81,62 -"['Facebook', 'LinkedIn']",1.8182173109842872,1.4374315972141112,2.857142925262451,42,56,69 -"['Hank Williams', 'Jimmie Rodgers']",1.2921890679498842,1.297683920797394,3.857142925262451,19,24,50 -"['painters', 'Stable Diffusion']",2.559299897799426,1.5677620010100897,2.7142856121063232,73,73,73 -"['Walmart', 'Rivaldo']",3.690980385424992,1.71497201525277,1.2857142686843872,90,85,86 -"['Sauron', 'Shiba Inu']",3.2021918405706447,1.6006748278781522,1.2857142686843872,84,79,86 -"['Bruno Mars', 'James Brown']",1.6238384642327086,1.3405051681301698,4.4285712242126465,32,35,21 -"['Brazil', 'Spain']",1.6354848524990435,1.365578101472138,2.7142856121063232,33,39,73 -"['heavy metal', 'punk music']",1.2828665664778731,1.2675698013535046,3.142857074737549,17,18,67 -"['Moon', 'Göbekli Tepe']",3.3163465648552024,1.8167444522743377,1.0,85,86,92 -"['English', 'William Shakespeare']",1.8740843321382203,1.3537742603597003,4.4285712242126465,45,37,21 -"['Beatles', 'Alice in Wonderland']",1.1920790414439135,1.2127665918503285,3.7142856121063232,11,3,52 -"['impressionism', 'Edouard Manet']",1.4334941168085642,1.2426143845861817,4.714285850524902,24,10,7 -"['Gilbert Gottfried', 'Mike Krieger']",2.7867605085940013,1.5883290396723415,1.2857142686843872,77,77,86 -"['Vladimir Lenin', 'chess']",1.540776118479181,1.6468579185886547,3.4285714626312256,29,82,57 -"['Pepsi', 'Coca-Cola']",1.8730678768881355,1.3216048983146913,4.285714149475098,43,31,29 -"['Alicia Vikander', 'Richard Attenborough']",2.2157093020774417,1.4914094205132749,1.5714285373687744,65,68,79 -"['Luke Bryan', 'Hank Williams']",1.6356969881619359,1.369560235671437,2.5714285373687744,34,41,76 -"['Bill Gates', 'Steve Jobs']",1.1651676273638105,1.2628213877198153,3.2857143878936768,7,16,62 -"['Allu Arjun', 'Aaron Ramsey']",3.4138674152065915,1.5093072142863981,1.0,86,70,92 -"['Stephen King', 'Arthur Machen']",1.5356716364503307,1.3031646611706496,4.285714149475098,27,26,29 -"['Bangladesh', 'India']",2.8649865836107558,1.594239101732205,4.0,79,78,44 -"['hamburger', 'Germany']",2.0281452994839406,1.4805603774557137,2.7142856121063232,56,63,73 -"['Plato', 'Socrates']",1.2478319893920897,1.2252417514229652,5.0,16,6,1 -"['Messi', 'Maradona']",1.1936159759875689,1.386407854799256,4.714285850524902,12,45,7 -"['Oasis', 'Blur']",1.5393028328220681,1.4267974980604674,3.4285714626312256,28,54,57 -"['Quentin Tarantino', 'Sergio Leone']",1.1420590588580273,1.2378902814139754,4.4285712242126465,4,9,21 -"['European Union', 'Germany']",1.8007329459626191,1.3075359721381155,4.4285712242126465,41,28,21 -"['Stephen Foster', 'Thomas Moore']",2.091480863357658,1.4035468401012576,2.7142856121063232,63,49,73 -"['Hoover', 'Dyson']",1.951971120526979,1.2489516544535164,4.285714149475098,51,12,29 -"['Mark Rothko', 'Claude Monet']",1.355077849288398,1.2531560156817456,3.4285714626312256,21,13,57 -"['James Brown', 'Michael Jackson']",1.2169289283223361,1.23633902308324,1.5714285373687744,14,8,79 -"['Windows', 'Linux']",2.0728154907076126,1.3146882104890258,4.0,60,29,44 -"['Radiohead', 'David Bowie']",1.2268231789902506,1.2615418250993753,4.285714149475098,15,15,29 -"['NVIDIA', 'AMD']",2.1731248201808326,1.404255266699919,4.142857074737549,64,50,36 -"['India', 'Gandhi']",1.7981407053240235,1.385347953173187,4.714285850524902,40,44,7 -"['Viktor Yushchenko', 'Bonnie Wright']",3.59219448972298,1.5775493447776812,1.4285714626312256,89,75,81 -"['Beethoven', 'Mozart']",1.1064064216629053,1.2548317540889342,4.5714287757873535,1,14,13 -"['Bitcoin', 'blockchain']",1.6582818034631044,1.2696348732034277,3.857142925262451,35,19,50 -"['Hong Kong', 'China']",1.9173846851610385,1.4266732545397631,4.857142925262451,47,53,3 +"['Prince Harry', 'Monarchy']",2.2476740650761298,1.4828068514166197,4.857142925262451,65,62,2 +"['F1', 'social media']",1.9753139794074348,1.4783565184427614,2.857142925262451,50,59,66 +"['Elton John', 'Elvis Presley']",1.1804962904837342,1.2207688454317978,4.285714149475098,9,5,26 +"['Jack Black', 'Waffen-SS']",2.6375428331912505,1.6618920512992446,1.1428571939468384,71,81,87 +"['Game of Thrones', 'Lord of the Rings']",1.7340579064068953,1.3037945218604563,4.4285712242126465,35,25,18 +"['Canon', 'Nikon']",1.8748803930957065,1.499901101345442,4.142857074737549,44,66,33 +"['Thomas Aquinas', 'Aristotle']",1.2159023258189594,1.2786954208798134,4.5714287757873535,12,20,10 +"['Android', 'iOS']",1.7137210908102982,1.383687906634991,4.142857074737549,34,41,33 +"['Charles Baudelaire', 'Tornado MRCA']",3.4578634289751684,2.2726535736087294,1.2857142686843872,84,89,83 +"['trending music', 'TikTok']",3.7166366139334093,1.9175394333401652,4.714285850524902,88,84,5 +"['Xi Jinping', 'Kim Jong-il']",2.5007580583809133,1.4616549945990829,3.2857143878936768,68,57,59 +"['Beethoven', 'romanticism']",1.164930447072821,1.3262804176032572,3.2857143878936768,6,30,59 +"['Edgar Allan Poe', 'Romanticism']",1.3855810355586151,1.3348436344608527,4.4285712242126465,20,32,18 +"['US', 'NASA']",1.9221526323194973,1.4853929568657513,4.0,46,63,41 +"['Wales', 'Westminster']",2.2697414102466738,1.4885316048811115,4.285714149475098,66,64,26 +"['Sierra Leone', 'Pulp fiction']",3.4937993908285896,1.5544310550489477,1.2857142686843872,85,69,83 +"['Theresa May', 'David Cameron']",2.867953650113619,1.586599476418079,4.4285712242126465,77,73,18 +"['Anna Delvey', 'Bernie Madoff']",5.851304478796712,2.2394238525833763,3.4285714626312256,89,88,54 +"['Lord of the Rings', 'Beowulf']",1.4028647338107878,1.2980656118986473,4.5714287757873535,21,23,10 +"['Andrew Johnson', 'Abraham Lincoln']",1.7943550054552766,1.40498846198677,4.0,37,48,41 +"['LinkedIn', 'Facebook']",2.0518563779471473,1.4175498334174674,3.2857143878936768,56,49,59 +"['Picasso', 'Cezanne']",1.0984081274257655,1.2479383152464008,4.5714287757873535,0,10,10 +"['Playstation', 'Xbox']",1.9293394427509483,1.3788052017388595,4.142857074737549,47,40,33 +"['Kevin Spacey', 'Tenerife']",3.0559953961248767,1.9604880644970053,1.1428571939468384,78,86,87 +"['Saudi Arabia', 'US']",1.7368911915800216,1.2916515768834047,4.0,36,21,41 +"['Fitbit', 'heart rate monitor']",3.123461259095108,1.6164861808299595,4.0,80,77,41 +"['Taiwan', 'China']",2.2182447127919165,1.5468607584026417,4.5714287757873535,63,68,10 +"['Kylian Mbappe', 'Cristiano Ronaldo']",1.1384666039027294,1.3997548229520052,4.5714287757873535,2,45,10 +"['Picasso', 'cubism']",1.1386846013027918,1.2655718661677833,3.857142925262451,3,16,47 +"['Miley Cyrus', 'Lorde']",2.5057882624182883,1.4807292942898764,3.4285714626312256,69,61,54 +"['Neymar', 'Alexis Sánchez']",1.1664475878754492,1.3969767151825936,3.5714285373687744,8,44,51 +"['Smashing Pumpkins', 'Beatles']",1.2902274990700031,1.1792361630004708,4.0,16,0,41 +"['Portuguese', 'The Prestige']",2.4246715053563133,1.9433309750579217,1.7142857313156128,67,85,75 +"['Luke Evans', 'Ava Gardner']",1.9844477084949745,1.4520768040323637,1.4285714626312256,52,56,78 +"['MacOS', 'Linux']",1.606121690504469,1.332216987202794,4.0,29,31,41 +"['Transport for Wales', 'National Rail']",3.1179866247158046,1.6550213721066336,4.142857074737549,79,80,33 +"['Herbie Hancock', 'Miles Davis']",1.1906291013619124,1.1964928260606924,4.5714287757873535,10,1,10 +"['India', 'Hinduism']",1.8738738933714594,1.2196591792656795,4.857142925262451,42,4,2 +"['hip hop', 'jazz']",1.2958361565295249,1.2047165654123286,3.7142856121063232,18,2,49 +"['Bob Dylan', 'Woody Guthrie']",1.1573855526684,1.2326184562750893,4.285714149475098,5,6,26 +"['Tim Burton', 'German expressionism']",1.5289439919718755,1.369226360059585,4.142857074737549,24,38,33 +"['Eamon de Valera', 'James Napper Tandy']",2.6897103923804613,1.443439450357,2.5714285373687744,72,55,73 +"['Joe Biden', 'Donald Trump']",2.7151493148816317,1.4317740304131183,3.142857074737549,73,52,64 +"[""Shaquille O'Neal"", 'Selim II']",1.9829826136041866,1.4394651784951111,1.2857142686843872,51,54,83 +"['Cobra Kai', 'Anna Chlumsky']",2.843922142288414,1.977163565115634,1.2857142686843872,75,87,83 +"['Harry Potter', 'Wizard of Oz']",1.526616290848502,1.2769913155132229,2.7142856121063232,23,19,70 +"['Coca-Cola', 'Pepsi']",1.9394993430469933,1.3923309535278097,4.285714149475098,48,43,26 +"['Apple Music', 'Spotify']",2.0835486180967333,1.576047707286359,4.285714149475098,58,71,26 +"['Singaporean food', 'Malaysian food']",2.0290924274978543,1.3594139059930275,3.142857074737549,54,36,64 +"['Guess', 'Gucci']",2.088424766132236,1.3498799842494749,3.2857143878936768,59,34,59 +"['Commonwealth', 'United Kingdom']",2.2425711193340345,1.317790593316562,4.5714287757873535,64,28,10 +"['machine learning', 'Google']",1.6035954368348817,1.470958422894975,4.0,28,58,41 +"['Antonio Salazar', 'fascism']",2.037055683002217,1.6184086883675441,3.2857143878936768,55,78,59 +"['Facebook', 'LinkedIn']",1.8182173109842872,1.4374315972141112,2.857142925262451,40,53,66 +"['Hank Williams', 'Jimmie Rodgers']",1.2921890679498842,1.297683920797394,3.857142925262451,17,22,47 +"['painters', 'Stable Diffusion']",2.559299897799426,1.5677620010100897,2.7142856121063232,70,70,70 +"['Walmart', 'Rivaldo']",3.690980385424992,1.71497201525277,1.2857142686843872,87,82,83 +"['Sauron', 'Shiba Inu']",3.2021918405706447,1.6006748278781522,1.2857142686843872,81,76,83 +"['Bruno Mars', 'James Brown']",1.6238384642327086,1.3405051681301698,4.4285712242126465,30,33,18 +"['Brazil', 'Spain']",1.6354848524990435,1.365578101472138,2.7142856121063232,31,37,70 +"['heavy metal', 'punk music']",1.2828665664778731,1.2675698013535046,3.142857074737549,15,17,64 +"['Moon', 'Göbekli Tepe']",3.3163465648552024,1.8167444522743377,1.0,82,83,89 +"['English', 'William Shakespeare']",1.8740843321382203,1.3537742603597003,4.4285712242126465,43,35,18 +"['Beatles', 'Alice in Wonderland']",1.1920790414439135,1.2127665918503285,3.7142856121063232,11,3,49 +"['impressionism', 'Edouard Manet']",1.4334941168085642,1.2426143845861817,4.714285850524902,22,9,5 +"['Gilbert Gottfried', 'Mike Krieger']",2.7867605085940013,1.5883290396723415,1.2857142686843872,74,74,83 +"['Vladimir Lenin', 'chess']",1.540776118479181,1.6468579185886547,3.4285714626312256,27,79,54 +"['Pepsi', 'Coca-Cola']",1.8730678768881355,1.3216048983146913,4.285714149475098,41,29,26 +"['Alicia Vikander', 'Richard Attenborough']",2.2157093020774417,1.4914094205132749,1.5714285373687744,62,65,76 +"['Luke Bryan', 'Hank Williams']",1.6356969881619359,1.369560235671437,2.5714285373687744,32,39,73 +"['Bill Gates', 'Steve Jobs']",1.1651676273638105,1.2628213877198153,3.2857143878936768,7,15,59 +"['Allu Arjun', 'Aaron Ramsey']",3.4138674152065915,1.5093072142863981,1.0,83,67,89 +"['Stephen King', 'Arthur Machen']",1.5356716364503307,1.3031646611706496,4.285714149475098,25,24,26 +"['Bangladesh', 'India']",2.8649865836107558,1.594239101732205,4.0,76,75,41 +"['hamburger', 'Germany']",2.0281452994839406,1.4805603774557137,2.7142856121063232,53,60,70 +"['Oasis', 'Blur']",1.5393028328220681,1.4267974980604674,3.4285714626312256,26,51,54 +"['Quentin Tarantino', 'Sergio Leone']",1.1420590588580273,1.2378902814139754,4.4285712242126465,4,8,18 +"['European Union', 'Germany']",1.8007329459626191,1.3075359721381155,4.4285712242126465,39,26,18 +"['Stephen Foster', 'Thomas Moore']",2.091480863357658,1.4035468401012576,2.7142856121063232,60,46,70 +"['Hoover', 'Dyson']",1.951971120526979,1.2489516544535164,4.285714149475098,49,11,26 +"['Mark Rothko', 'Claude Monet']",1.355077849288398,1.2531560156817456,3.4285714626312256,19,12,54 +"['James Brown', 'Michael Jackson']",1.2169289283223361,1.23633902308324,1.5714285373687744,13,7,76 +"['Windows', 'Linux']",2.0728154907076126,1.3146882104890258,4.0,57,27,41 +"['Radiohead', 'David Bowie']",1.2268231789902506,1.2615418250993753,4.285714149475098,14,14,26 +"['NVIDIA', 'AMD']",2.1731248201808326,1.404255266699919,4.142857074737549,61,47,33 +"['India', 'Gandhi']",1.7981407053240235,1.385347953173187,4.714285850524902,38,42,5 +"['Viktor Yushchenko', 'Bonnie Wright']",3.59219448972298,1.5775493447776812,1.4285714626312256,86,72,78 +"['Beethoven', 'Mozart']",1.1064064216629053,1.2548317540889342,4.5714287757873535,1,13,10 +"['Bitcoin', 'blockchain']",1.6582818034631044,1.2696348732034277,3.857142925262451,33,18,47 +"['Hong Kong', 'China']",1.9173846851610385,1.4266732545397631,4.857142925262451,45,50,2 diff --git a/experiments/results/flan_ul2_additional_analysis/know.csv b/experiments/results/flan_ul2_additional_analysis/know.csv index 8db8638034279a764c16f67eac70ac1bc2525799..85164b4662d8f9a3a91545a534d947b502391021 100644 --- a/experiments/results/flan_ul2_additional_analysis/know.csv +++ b/experiments/results/flan_ul2_additional_analysis/know.csv @@ -1,109 +1,106 @@ pairs,score_fewshot,score_zeroshot,score_true,rank_fewshot,rank_zeroshot,rank_true -"['Hawaii', 'ukulele']",2.0379885080276736,1.6141553237135906,4.4285712242126465,55,50,35 -"['Paris', 'Eiffel Tower']",1.6516645695078804,1.549073112637212,5.0,24,37,3 -"['Sweden', 'pop']",2.8935680038817995,1.599112336564866,3.4285714626312256,94,49,64 -"['Memphis Depay', 'Mendelian inheritance']",4.433216931616718,2.7539158748346066,1.0,105,105,103 -"['France', 'beaches']",2.0120074980914664,1.7211045184289022,2.2857143878936768,53,68,80 -"['France', 'cars']",2.2041304826944175,1.577197902525235,3.142857074737549,62,44,70 -"['Alphabet Inc.', 'Google']",1.6412349989165158,1.4982438958353133,5.0,23,28,3 -"['Vincent Van Gogh', 'The Starry Night']",1.1529951921784258,1.4038491705190446,4.5714287757873535,1,9,26 -"['Italy', 'Hawaiian pizza']",2.4360520426756067,1.6829345832720786,1.2857142686843872,68,62,95 -"['Japan', 'glass product']",2.4583809740141827,1.6285215315723371,2.5714285373687744,69,53,75 -"['France', 'rococo movement']",2.554788816863291,1.7522039622068803,3.0,76,70,72 -"['Europe', 'The Final Countdown']",2.541047551664279,1.4387832395341067,4.5714287757873535,74,18,26 -"['Sophie Turner', 'Sylvia Plath']",1.9852305368441152,1.5106470237582166,1.2857142686843872,51,32,95 -"['Bill Nye', 'scientist']",1.4294051510746526,1.3207424886520618,4.4285712242126465,10,0,35 -"['Mercedes Benz', 'build quality']",1.6281286499443355,1.5617058192446298,3.857142925262451,22,42,57 -"['Hawaii', 'beaches']",1.6780379309883793,1.5151668359092634,4.857142925262451,27,33,9 -"['Jackson Pollock', 'action painting']",1.4928709910212137,1.446368405963585,4.4285712242126465,12,19,35 -"['Andhra Pradesh', 'Martinique']",5.011995049103896,1.9438218153226388,1.0,107,90,103 -"['Keanu Reeves', 'The Matrix']",1.7944492325467365,1.3843872585630363,4.857142925262451,35,5,9 -"['Christopher Columbus', 'India']",2.5562651146389914,2.201138053250345,1.7142857313156128,77,99,88 -"['Picasso', 'Guernica']",1.1729677340026763,1.5519262551361566,4.857142925262451,3,39,9 -"['Italy', 'Renaissance']",1.8625240168955677,1.5369287637424967,4.4285712242126465,42,34,35 -"['Korea', 'Breakdance']",2.9857756231318073,1.8628185631970635,2.7142856121063232,96,84,73 -"['Spain', 'olive oil']",1.869457459416164,1.5490954571308952,4.5714287757873535,43,38,26 -"['C.S. Lewis', 'The Screwtape Letters']",1.390514795859247,1.4756095615869196,4.4285712242126465,7,24,35 -"['Corsica', 'Napoleon Bonaparte']",2.7657037465748724,1.9022471325455272,4.4285712242126465,91,87,35 -"['Rafael Nadal', 'Ralph Macchio']",2.6021925539888997,1.647891184288785,1.0,80,58,103 -"['Walther P38', 'Lupin the Third']",3.548951989427863,2.220320178652019,3.4285714626312256,103,101,64 -"['Richard Harris', 'Curcuma longa']",3.888387999138837,3.0051507411666667,1.0,104,107,103 -"['Smashing Pumpkins', 'Thru the eyes of Ruby']",1.9214777089669548,1.617355203052018,3.5714285373687744,47,52,63 -"['India', 'rum']",2.89230028154474,2.0201010411950517,2.4285714626312256,93,92,78 -"['Parasite', 'Jersey']",4.48182851409854,2.0917107526710037,1.2857142686843872,106,96,95 -"['India', 'Gurkhas']",2.46205035307783,1.7755981109002028,2.7142856121063232,71,74,73 -"['Amazon', 'Alexa']",1.6714109993972888,1.5899399391175666,4.142857074737549,26,46,46 -"['Thomas Edison', 'telephone']",1.157521030980131,1.4076575234169095,3.7142856121063232,2,10,60 -"['Buffon', 'PSG']",2.9954780478893275,1.7530930722481544,2.4285714626312256,97,71,78 -"['Alfred Hitchcock', 'horror']",1.3736420772474371,1.3663635836010108,4.142857074737549,6,3,46 -"['William Shakespeare', 'Romeo and Juliet']",1.218704473477727,1.5081249508332475,4.714285850524902,5,31,17 -"['Thomas Edison', 'light bulb']",1.1300194316989536,1.3653392286358037,4.857142925262451,0,2,9 -"['Michael Jordan', 'Tessa Thompson']",1.6838434430799847,1.5543171907584603,1.8571428060531616,28,40,86 -"['Inglourious Basterds', 'Sergio Busquets']",2.6456146772380564,2.1133903510632104,1.0,83,98,103 -"['Boris Johnson', 'Brexit']",1.532590887000037,1.5863673272495546,4.4285712242126465,17,45,35 -"['Georgia', 'Joseph Stalin']",2.6605290205595615,1.8488188109955903,3.7142856121063232,84,81,60 -"['China', 'coffee']",2.5547068930002474,1.8135234081399012,2.142857074737549,75,80,82 -"['OpenAI', 'ChatGPT']",2.729014899721563,2.0160923267589936,4.5714287757873535,88,91,26 -"['Tesco', 'groceries']",2.2075506281388493,1.4777211558218561,5.0,64,25,3 -"['Amazon', 'cloud computing']",2.2064401069117556,1.9068170630915215,3.2857143878936768,63,88,67 -"['Nvidia', 'GPUs']",1.849954421356761,1.4512691228933783,4.714285850524902,39,20,17 -"['Tony Blair', 'Iraq War']",1.811316599140115,1.7821177773658414,4.285714149475098,37,77,42 -"['Germany', 'techno music']",1.7491196573741141,1.629043158489762,3.7142856121063232,34,54,60 -"['Michelangelo', 'Pop Art']",1.4372291981355696,1.8118542261041621,2.0,11,79,84 -"['Gilmore Girls', 'OpenAI']",3.3492910555577455,2.1065435226515503,1.0,101,97,103 -"['Ragnarök', 'Little Boy']",3.071680871606256,1.686534969515163,1.5714285373687744,99,63,89 -"['Pizzagate', 'Hillary Clinton']",2.1697525786872065,1.7795214681654785,3.857142925262451,60,76,57 -"['George Orwell', 'Coming Up for Air']",1.5938324506474786,2.038484059003444,4.0,19,94,52 -"['Italy', 'wine']",1.6839405990965706,1.4373376976319032,4.0,29,16,52 -"['Coca-Cola', 'Pepsi']",2.358834516976814,1.564914630149368,1.4285714626312256,66,43,91 -"['Spotify', 'Podcasts']",1.8112757896302745,1.778620332709591,3.7142856121063232,36,75,60 -"['Valencia', 'paella']",1.9811142408327254,1.6345744732560765,4.5714287757873535,50,56,26 -"['The Office', 'IBM']",2.381587907395338,1.6322135453268423,1.4285714626312256,67,55,91 -"['Romania', 'Roman Catholicism']",2.4710694825138426,1.4311110891664438,2.142857074737549,72,15,82 -"['George Washington', 'Kiribati']",2.7315825873761,2.031883419437793,1.0,89,93,103 -"['Charles Bronson', 'Rory McIlroy']",2.771262751856999,1.8027123773986695,1.0,92,78,103 -"['Belgium', 'wine']",1.9208840823674107,1.5421924887285943,2.4285714626312256,46,35,78 -"['Luka Modrić', 'Rottweiler']",2.9573464947505816,2.397671526907933,1.0,95,103,103 -"['Switzerland', 'mountains']",2.6949875000008405,1.6930428362085401,4.714285850524902,86,65,17 -"[""Assassin's Creed"", 'history']",2.6605949906105084,1.6465573298565803,3.2857143878936768,85,57,67 -"['Red Bull', 'energy drinks']",2.198328929040291,1.456624393896625,4.857142925262451,61,21,9 -"['Johnny Cash', 'Ring of Fire']",1.5914676662686418,1.6823023432944961,4.714285850524902,18,61,17 -"['Microsoft', 'Xbox']",1.522222094247351,1.4025903288235062,4.285714149475098,16,8,42 -"['Canada', 'maple syrup']",1.702171344312723,1.558050888058955,4.714285850524902,32,41,17 -"['France', 'cheese']",2.159340280083786,1.5430241918791174,4.5714287757873535,59,36,26 -"['France', 'beer']",1.886476134965053,1.616702308516782,1.8571428060531616,44,51,86 -"['Nintendo', 'Super Mario Bros.']",1.5208118276210465,1.4081862950465882,4.5714287757873535,15,11,26 -"['democracy', 'North Korea']",3.065631800682577,1.874067353187238,1.0,98,85,103 -"['Apple', 'iPhone']",1.5969831897287368,1.504551474404591,4.857142925262451,20,30,9 -"['Harry Potter', 'Bloomsbury']",1.664304935136619,1.681124247026932,3.857142925262451,25,60,57 -"['France', 'mountains']",2.622095377675188,2.0420109399379687,3.2857143878936768,81,95,67 -"['UK', 'rain']",2.6382514729558815,1.8510534368673026,4.4285712242126465,82,82,35 -"['Matt Damon', ""Ocean's Eleven""]",1.8322377070608122,1.710292734340407,4.285714149475098,38,67,42 -"['Switzerland', 'banking secrecy']",1.4987666733534533,1.4140492427045632,4.0,13,12,52 -"['Adidas', 'Yeezy Boost']",2.0152049578038915,1.425090203853594,4.142857074737549,54,13,46 -"['Portugal', 'Fado']",2.1075865547487154,1.4374283843077116,4.142857074737549,57,17,46 -"['Italy', 'tea']",3.2063680266023415,1.853469614720884,1.2857142686843872,100,83,95 -"['Beatles', 'Come Together']",1.5097255492695179,1.3725785586556383,4.142857074737549,14,4,46 -"['Afro-Brazilians', 'Capoeira']",2.1458750555626116,1.5942359184295292,4.142857074737549,58,47,46 -"['Steve Jobs', 'AirPods']",1.711572373386904,1.9190476817297606,1.4285714626312256,33,89,91 -"['Apple', 'Apple Watch']",1.8560795537691561,1.5014430337590525,4.0,40,29,52 -"['Frank Abagnale Jr', 'doctor']",2.5889446320908003,2.204312972088224,2.142857074737549,79,100,82 -"['Meta', 'Instagram']",2.741323552603841,1.7586111048690642,4.0,90,73,52 -"['Jeff Goldblum', 'Jurassic Park']",1.903180728486699,1.472164987898691,4.4285712242126465,45,23,35 -"['Leonardo Da Vinci', 'Mona Lisa']",1.2134310688826102,1.4838067466083005,5.0,4,26,3 -"['Neil Armstrong', 'Korean War']",2.458719923407149,2.5360696094371646,1.4285714626312256,70,104,91 -"['France', 'baguette']",1.945662787920705,1.6694015995141194,4.5714287757873535,49,59,26 -"['Queen', 'Bohemian Rhapsody']",1.6945072153533645,1.4253497252771552,4.714285850524902,31,14,17 -"['Pixar', 'Novosibirsk']",3.3754246678273243,2.9477767154494834,1.0,102,106,103 -"['Greggs', 'sausage rolls']",2.5707194295236775,1.7009085678770521,4.4285712242126465,78,66,35 -"['Japan', 'sake']",2.0970448092767215,1.7311980801105462,4.0,56,69,52 -"['IKEA', 'food']",2.723054976352971,2.3136462632326893,2.0,87,102,84 -"['William Grant & Sons', 'gin']",1.9365934088622412,1.6904876254513095,3.142857074737549,48,64,70 -"['Netherlands', 'tulips']",2.0082882283289325,1.4584905157760355,4.714285850524902,52,22,17 -"['LAMY', 'notebook']",2.4905111827994992,1.887999111649344,3.142857074737549,73,86,70 -"['Harvey Weinstein', 'Miramax']",2.322859034615252,1.754414354986099,4.714285850524902,65,72,17 -"['Scotland', 'whisky']",1.6202457906440713,1.399913185634903,4.714285850524902,21,7,17 -"['Apple', 'MacBook']",1.6869552176930962,1.3878072634111522,4.5714287757873535,30,6,26 -"['Steve Jobs', 'Apple']",1.4023122580033978,1.495425847102713,5.0,9,27,3 -"['Beatles', 'I Me Mine']",1.8608328043186562,1.5983103230707787,2.5714285373687744,41,48,75 -"['Google', 'search engine']",1.3974527880930494,1.355647107117722,4.857142925262451,8,1,9 +"['Hawaii', 'ukulele']",2.0379885080276736,1.6141553237135906,4.4285712242126465,52,47,32 +"['Sweden', 'pop']",2.8935680038817995,1.599112336564866,3.4285714626312256,91,46,61 +"['Memphis Depay', 'Mendelian inheritance']",4.433216931616718,2.7539158748346066,1.0,102,102,100 +"['France', 'beaches']",2.0120074980914664,1.7211045184289022,2.2857143878936768,50,65,77 +"['France', 'cars']",2.2041304826944175,1.577197902525235,3.142857074737549,59,41,67 +"['Alphabet Inc.', 'Google']",1.6412349989165158,1.4982438958353133,5.0,21,27,2 +"['Vincent Van Gogh', 'The Starry Night']",1.1529951921784258,1.4038491705190446,4.5714287757873535,1,9,23 +"['Italy', 'Hawaiian pizza']",2.4360520426756067,1.6829345832720786,1.2857142686843872,65,59,92 +"['Japan', 'glass product']",2.4583809740141827,1.6285215315723371,2.5714285373687744,66,50,72 +"['France', 'rococo movement']",2.554788816863291,1.7522039622068803,3.0,73,67,69 +"['Europe', 'The Final Countdown']",2.541047551664279,1.4387832395341067,4.5714287757873535,71,18,23 +"['Sophie Turner', 'Sylvia Plath']",1.9852305368441152,1.5106470237582166,1.2857142686843872,48,30,92 +"['Bill Nye', 'scientist']",1.4294051510746526,1.3207424886520618,4.4285712242126465,9,0,32 +"['Mercedes Benz', 'build quality']",1.6281286499443355,1.5617058192446298,3.857142925262451,20,39,54 +"['Hawaii', 'beaches']",1.6780379309883793,1.5151668359092634,4.857142925262451,24,31,6 +"['Jackson Pollock', 'action painting']",1.4928709910212137,1.446368405963585,4.4285712242126465,11,19,32 +"['Andhra Pradesh', 'Martinique']",5.011995049103896,1.9438218153226388,1.0,104,87,100 +"['Keanu Reeves', 'The Matrix']",1.7944492325467365,1.3843872585630363,4.857142925262451,32,5,6 +"['Christopher Columbus', 'India']",2.5562651146389914,2.201138053250345,1.7142857313156128,74,96,85 +"['Picasso', 'Guernica']",1.1729677340026763,1.5519262551361566,4.857142925262451,3,36,6 +"['Italy', 'Renaissance']",1.8625240168955677,1.5369287637424967,4.4285712242126465,39,32,32 +"['Korea', 'Breakdance']",2.9857756231318073,1.8628185631970635,2.7142856121063232,93,81,70 +"['Spain', 'olive oil']",1.869457459416164,1.5490954571308952,4.5714287757873535,40,35,23 +"['C.S. Lewis', 'The Screwtape Letters']",1.390514795859247,1.4756095615869196,4.4285712242126465,6,24,32 +"['Corsica', 'Napoleon Bonaparte']",2.7657037465748724,1.9022471325455272,4.4285712242126465,88,84,32 +"['Rafael Nadal', 'Ralph Macchio']",2.6021925539888997,1.647891184288785,1.0,77,55,100 +"['Walther P38', 'Lupin the Third']",3.548951989427863,2.220320178652019,3.4285714626312256,100,98,61 +"['Richard Harris', 'Curcuma longa']",3.888387999138837,3.0051507411666667,1.0,101,104,100 +"['Smashing Pumpkins', 'Thru the eyes of Ruby']",1.9214777089669548,1.617355203052018,3.5714285373687744,44,49,60 +"['India', 'rum']",2.89230028154474,2.0201010411950517,2.4285714626312256,90,89,75 +"['Parasite', 'Jersey']",4.48182851409854,2.0917107526710037,1.2857142686843872,103,93,92 +"['India', 'Gurkhas']",2.46205035307783,1.7755981109002028,2.7142856121063232,68,71,70 +"['Amazon', 'Alexa']",1.6714109993972888,1.5899399391175666,4.142857074737549,23,43,43 +"['Thomas Edison', 'telephone']",1.157521030980131,1.4076575234169095,3.7142856121063232,2,10,57 +"['Buffon', 'PSG']",2.9954780478893275,1.7530930722481544,2.4285714626312256,94,68,75 +"['Alfred Hitchcock', 'horror']",1.3736420772474371,1.3663635836010108,4.142857074737549,5,3,43 +"['William Shakespeare', 'Romeo and Juliet']",1.218704473477727,1.5081249508332475,4.714285850524902,4,29,14 +"['Thomas Edison', 'light bulb']",1.1300194316989536,1.3653392286358037,4.857142925262451,0,2,6 +"['Michael Jordan', 'Tessa Thompson']",1.6838434430799847,1.5543171907584603,1.8571428060531616,25,37,83 +"['Inglourious Basterds', 'Sergio Busquets']",2.6456146772380564,2.1133903510632104,1.0,80,95,100 +"['Boris Johnson', 'Brexit']",1.532590887000037,1.5863673272495546,4.4285712242126465,16,42,32 +"['Georgia', 'Joseph Stalin']",2.6605290205595615,1.8488188109955903,3.7142856121063232,81,78,57 +"['China', 'coffee']",2.5547068930002474,1.8135234081399012,2.142857074737549,72,77,79 +"['OpenAI', 'ChatGPT']",2.729014899721563,2.0160923267589936,4.5714287757873535,85,88,23 +"['Tesco', 'groceries']",2.2075506281388493,1.4777211558218561,5.0,61,25,2 +"['Amazon', 'cloud computing']",2.2064401069117556,1.9068170630915215,3.2857143878936768,60,85,64 +"['Nvidia', 'GPUs']",1.849954421356761,1.4512691228933783,4.714285850524902,36,20,14 +"['Tony Blair', 'Iraq War']",1.811316599140115,1.7821177773658414,4.285714149475098,34,74,39 +"['Germany', 'techno music']",1.7491196573741141,1.629043158489762,3.7142856121063232,31,51,57 +"['Michelangelo', 'Pop Art']",1.4372291981355696,1.8118542261041621,2.0,10,76,81 +"['Gilmore Girls', 'OpenAI']",3.3492910555577455,2.1065435226515503,1.0,98,94,100 +"['Ragnarök', 'Little Boy']",3.071680871606256,1.686534969515163,1.5714285373687744,96,60,86 +"['Pizzagate', 'Hillary Clinton']",2.1697525786872065,1.7795214681654785,3.857142925262451,57,73,54 +"['George Orwell', 'Coming Up for Air']",1.5938324506474786,2.038484059003444,4.0,18,91,49 +"['Italy', 'wine']",1.6839405990965706,1.4373376976319032,4.0,26,16,49 +"['Coca-Cola', 'Pepsi']",2.358834516976814,1.564914630149368,1.4285714626312256,63,40,88 +"['Spotify', 'Podcasts']",1.8112757896302745,1.778620332709591,3.7142856121063232,33,72,57 +"['Valencia', 'paella']",1.9811142408327254,1.6345744732560765,4.5714287757873535,47,53,23 +"['The Office', 'IBM']",2.381587907395338,1.6322135453268423,1.4285714626312256,64,52,88 +"['Romania', 'Roman Catholicism']",2.4710694825138426,1.4311110891664438,2.142857074737549,69,15,79 +"['George Washington', 'Kiribati']",2.7315825873761,2.031883419437793,1.0,86,90,100 +"['Charles Bronson', 'Rory McIlroy']",2.771262751856999,1.8027123773986695,1.0,89,75,100 +"['Belgium', 'wine']",1.9208840823674107,1.5421924887285943,2.4285714626312256,43,33,75 +"['Luka Modrić', 'Rottweiler']",2.9573464947505816,2.397671526907933,1.0,92,100,100 +"['Switzerland', 'mountains']",2.6949875000008405,1.6930428362085401,4.714285850524902,83,62,14 +"[""Assassin's Creed"", 'history']",2.6605949906105084,1.6465573298565803,3.2857143878936768,82,54,64 +"['Red Bull', 'energy drinks']",2.198328929040291,1.456624393896625,4.857142925262451,58,21,6 +"['Johnny Cash', 'Ring of Fire']",1.5914676662686418,1.6823023432944961,4.714285850524902,17,58,14 +"['Microsoft', 'Xbox']",1.522222094247351,1.4025903288235062,4.285714149475098,15,8,39 +"['Canada', 'maple syrup']",1.702171344312723,1.558050888058955,4.714285850524902,29,38,14 +"['France', 'cheese']",2.159340280083786,1.5430241918791174,4.5714287757873535,56,34,23 +"['France', 'beer']",1.886476134965053,1.616702308516782,1.8571428060531616,41,48,83 +"['Nintendo', 'Super Mario Bros.']",1.5208118276210465,1.4081862950465882,4.5714287757873535,14,11,23 +"['democracy', 'North Korea']",3.065631800682577,1.874067353187238,1.0,95,82,100 +"['Harry Potter', 'Bloomsbury']",1.664304935136619,1.681124247026932,3.857142925262451,22,57,54 +"['France', 'mountains']",2.622095377675188,2.0420109399379687,3.2857143878936768,78,92,64 +"['UK', 'rain']",2.6382514729558815,1.8510534368673026,4.4285712242126465,79,79,32 +"['Matt Damon', ""Ocean's Eleven""]",1.8322377070608122,1.710292734340407,4.285714149475098,35,64,39 +"['Switzerland', 'banking secrecy']",1.4987666733534533,1.4140492427045632,4.0,12,12,49 +"['Adidas', 'Yeezy Boost']",2.0152049578038915,1.425090203853594,4.142857074737549,51,13,43 +"['Portugal', 'Fado']",2.1075865547487154,1.4374283843077116,4.142857074737549,54,17,43 +"['Italy', 'tea']",3.2063680266023415,1.853469614720884,1.2857142686843872,97,80,92 +"['Beatles', 'Come Together']",1.5097255492695179,1.3725785586556383,4.142857074737549,13,4,43 +"['Afro-Brazilians', 'Capoeira']",2.1458750555626116,1.5942359184295292,4.142857074737549,55,44,43 +"['Steve Jobs', 'AirPods']",1.711572373386904,1.9190476817297606,1.4285714626312256,30,86,88 +"['Apple', 'Apple Watch']",1.8560795537691561,1.5014430337590525,4.0,37,28,49 +"['Frank Abagnale Jr', 'doctor']",2.5889446320908003,2.204312972088224,2.142857074737549,76,97,79 +"['Meta', 'Instagram']",2.741323552603841,1.7586111048690642,4.0,87,70,49 +"['Jeff Goldblum', 'Jurassic Park']",1.903180728486699,1.472164987898691,4.4285712242126465,42,23,32 +"['Neil Armstrong', 'Korean War']",2.458719923407149,2.5360696094371646,1.4285714626312256,67,101,88 +"['France', 'baguette']",1.945662787920705,1.6694015995141194,4.5714287757873535,46,56,23 +"['Queen', 'Bohemian Rhapsody']",1.6945072153533645,1.4253497252771552,4.714285850524902,28,14,14 +"['Pixar', 'Novosibirsk']",3.3754246678273243,2.9477767154494834,1.0,99,103,100 +"['Greggs', 'sausage rolls']",2.5707194295236775,1.7009085678770521,4.4285712242126465,75,63,32 +"['Japan', 'sake']",2.0970448092767215,1.7311980801105462,4.0,53,66,49 +"['IKEA', 'food']",2.723054976352971,2.3136462632326893,2.0,84,99,81 +"['William Grant & Sons', 'gin']",1.9365934088622412,1.6904876254513095,3.142857074737549,45,61,67 +"['Netherlands', 'tulips']",2.0082882283289325,1.4584905157760355,4.714285850524902,49,22,14 +"['LAMY', 'notebook']",2.4905111827994992,1.887999111649344,3.142857074737549,70,83,67 +"['Harvey Weinstein', 'Miramax']",2.322859034615252,1.754414354986099,4.714285850524902,62,69,14 +"['Scotland', 'whisky']",1.6202457906440713,1.399913185634903,4.714285850524902,19,7,14 +"['Apple', 'MacBook']",1.6869552176930962,1.3878072634111522,4.5714287757873535,27,6,23 +"['Steve Jobs', 'Apple']",1.4023122580033978,1.495425847102713,5.0,8,26,2 +"['Beatles', 'I Me Mine']",1.8608328043186562,1.5983103230707787,2.5714285373687744,38,45,72 +"['Google', 'search engine']",1.3974527880930494,1.355647107117722,4.857142925262451,7,1,6 diff --git a/experiments/results/flan_ul2_additional_analysis/simi.csv b/experiments/results/flan_ul2_additional_analysis/simi.csv index a474d5f57bff926ad1dfb898505f5decf7d8d4b3..6db8a2b2861edcc2dba71737d7c9b21e15c11cea 100644 --- a/experiments/results/flan_ul2_additional_analysis/simi.csv +++ b/experiments/results/flan_ul2_additional_analysis/simi.csv @@ -1,94 +1,90 @@ pairs,score_fewshot,score_zeroshot,score_true,rank_fewshot,rank_zeroshot,rank_true -"['pill', 'tablet']",2.787594142476719,1.0963185810651779,4.857142925262451,21,0,10 -"['Eduardo Saverin', 'Guinea-Bissau']",11.848144897715358,4.052577211867362,1.0,87,89,90 -"['Dionysus', 'Toyota Corolla']",8.916061293118249,3.4564230570493915,1.1428571939468384,84,87,86 -"['Great Britian', 'British Empire']",3.7412895492342257,1.272809779852253,4.5714287757873535,40,28,23 -"['English', 'Persian']",5.0889122727160645,1.6148763949051825,2.0,61,57,70 -"['Chess', ""Rubik's Cube""]",3.779193733187733,1.879439692861986,2.142857074737549,42,67,68 -"['Star Wars', 'Star Trek']",1.9130807485899026,1.4347979273272462,4.285714149475098,4,50,35 -"['Anne Heche', 'Ponzi scheme']",16.145925218000528,4.175371728372175,1.2857142686843872,92,90,83 -"['Chris Pine', 'Good Friday']",10.820051812704461,3.440924088108119,1.0,86,86,90 -"['Sudocrem', 'Germolene']",5.792675648325962,1.6453597895571181,4.4285712242126465,69,58,30 -"['Yugoslavia', 'Albania']",6.15088975180785,1.777307939350594,3.7142856121063232,72,62,56 -"['Beatles', 'Rolling Stones']",2.721417145024596,1.1962706778662544,4.714285850524902,18,15,16 -"['decision tree', 'neural network']",2.5570619568278343,1.4315812594673885,2.857142925262451,14,49,64 -"['Suits', 'Law & Order']",2.8313154971533714,1.3978820298258887,4.5714287757873535,22,46,23 -"['Titanic', 'Superbad']",3.923417746770726,2.213662292000817,1.7142857313156128,47,78,73 -"['Seleucid Empire', 'Macedonian Empire']",6.657879679039228,1.828381638106454,3.7142856121063232,77,64,56 -"['Doctor Who', 'Timeless']",2.6473780915009626,1.4524423096052965,3.7142856121063232,16,53,56 -"['Srebrenica massacre', 'Rock Hudson']",15.593253164074452,9.197721177121391,1.0,91,92,90 -"['Arnold Classic', 'Mr. Olympia']",3.6454399523518735,1.428413776493121,4.142857074737549,37,48,41 -"['Italy', 'Superman']",5.8382376159075315,2.573955623240689,1.0,71,82,90 -"['Alibaba', 'Amazon']",3.7603153581644357,1.3082210072455742,4.4285712242126465,41,40,30 -"['Indiana Jones', 'Star Wars']",2.7313136302218206,1.6919490885578246,3.2857143878936768,20,60,61 -"['NQ64', 'Wetherspoons']",4.522848711394549,2.154384332367406,2.5714285373687744,52,77,67 -"['Pepsi', 'Fanta']",5.119433385443051,1.492284581073927,3.4285714626312256,63,54,59 -"['Homebase', 'IKEA']",3.653334635879744,1.3055150387108365,4.714285850524902,38,38,16 -"['ramen', 'udon']",4.616728474015259,1.3038570428318557,4.142857074737549,57,37,41 -"['England', 'Wales']",3.856980062501871,1.284211292664953,4.0,44,32,46 -"['sphinx', 'sphynx']",1.487641088452482,1.29134319803738,2.142857074737549,1,34,68 -"['iPod', 'iPad']",3.0450299225110182,1.1745858450607467,3.4285714626312256,26,9,59 -"['Olympic Games', 'X Games']",2.6339053080235133,1.4087563252628894,3.857142925262451,15,47,51 -"[""McDonald's"", 'Burger King']",4.1751278413775745,1.1845686476202482,5.0,50,12,3 -"['Minnesota', 'Wisconsin']",3.9126989880214436,1.3668624638306508,4.5714287757873535,46,43,23 -"['Slack', 'Microsoft Teams']",1.9214659125165483,1.1083802086359376,4.714285850524902,5,1,16 -"['Peter Phillips', 'Christine Baranski']",4.535060013640789,1.9770690531727926,1.5714285373687744,54,69,75 -"['Jenna Ortega', 'Anglo-Saxons']",11.892121153636435,4.34116604633945,1.0,88,91,90 -"['Karl Urban', 'France 24']",15.10152644622368,3.737063890873087,1.2857142686843872,90,88,83 -"['Sudan', 'South Sudan']",3.273710897128462,1.1413170766716667,3.857142925262451,30,3,51 -"['Gameboy', 'Nintendo']",3.093549297730727,1.1561978345889523,2.7142856121063232,27,5,66 -"['Grammy Award', 'Novel Prize']",6.158049636137822,2.000009898204835,3.2857143878936768,73,70,61 -"['George Ezra', 'Lead Belly']",5.538529596204542,1.8679975384088594,3.857142925262451,66,66,51 -"['Cardiff', 'Swansea']",4.529390820956747,1.3684548520556212,4.4285712242126465,53,44,30 -"['Steve Jobs', 'Tim Cook']",2.3555150983794166,1.1722038716948548,3.857142925262451,12,8,51 -"['Counter Strike', 'Rainbow Six']",2.4903619990032655,1.6683302843699688,4.714285850524902,13,59,16 -"['Hawaii', 'Guam']",4.330392514327977,1.3596249987134326,4.0,51,42,46 -"['Scrabble', 'Jenga']",3.7856804025281106,2.0206657104219063,2.857142925262451,43,71,64 -"['Christmas', 'Easter']",3.1229158204241005,1.5852128544625168,3.857142925262451,28,56,51 -"['fusilli', 'rotini']",3.142761977877682,1.2170543108656977,4.857142925262451,29,18,10 -"['Coachella', 'Woodstock']",2.727321463663285,1.3026882918541969,4.142857074737549,19,36,41 -"['Avatar', 'Archimedes']",5.3914530435939,2.0498386840332077,1.0,65,73,90 -"['Shark', 'Bush']",5.1150546404494,2.473817916476143,4.5714287757873535,62,79,23 -"['Eva Braun', 'Phil Jackson']",5.832551510252753,2.073420971334422,1.2857142686843872,70,75,83 -"['Coca-Cola', 'Pepsi']",3.296204952853608,1.1603703122935556,5.0,32,6,3 -"['Joe Burrow', 'Edward Scissorhands']",6.407253426404243,2.7072382051749715,1.4285714626312256,75,83,79 -"['Australia', 'New Zealand']",4.5494009954795605,1.2436423214416585,4.857142925262451,55,25,10 -"['Edward I', 'William the Conqueror']",5.655943977746394,1.8079957937284559,4.142857074737549,67,63,41 -"['Frank Sinatra', 'Ella Fitzgerald']",3.6229609953208675,1.2618269168231726,4.285714149475098,36,27,35 -"['New York', 'York']",2.1820453023871194,1.2378399248510765,1.5714285373687744,10,22,75 -"['Uzbekistan', 'United States']",7.566941289942147,1.8443678727708666,1.4285714626312256,80,65,79 -"['Red Bull', 'Monster Energy']",4.085817066951404,1.2350180713452537,4.857142925262451,48,20,10 -"['Champions League', 'Europa League']",2.897441512997175,1.3311126253575225,4.714285850524902,25,41,16 -"['Cerave', 'Nivea']",6.515725632441174,1.7120814151917347,4.5714287757873535,76,61,23 -"['Galaxy', 'iPhone']",4.136298701133585,1.4420422620374922,4.5714287757873535,49,51,23 -"['Mehmet Öz', 'David Schwimmer']",8.06705771404044,2.5171469601925516,1.4285714626312256,83,81,79 -"['Disney', 'Pixar']",2.062663296511003,1.1827246431069653,5.0,7,11,3 -"['Batman', 'Iron Man']",1.999427404364395,1.4505700925559022,4.285714149475098,6,52,35 -"['Gisele Bündchen', 'Orson Welles']",7.88994896376945,2.482540389029044,1.4285714626312256,82,80,79 -"['Estonia', 'Finland']",4.867099009057239,1.2753268802230482,4.142857074737549,58,30,41 -"['The Avengers', 'The Justice League']",1.1970565555264627,1.3073785524764345,4.857142925262451,0,39,10 -"['Nicolae Ceaușescu', 'Javier Hernández']",10.451086178583688,2.866841024727357,1.2857142686843872,85,84,83 -"['Adidas', 'Nike']",3.708739980829369,1.1759724560937117,5.0,39,10,3 -"['Java', 'Javascript']",2.1648758313155447,1.1638525989865072,3.142857074737549,9,7,63 -"['bourbon', 'Scotch whisky']",3.424470627520201,1.2018479334928887,4.4285712242126465,34,17,30 -"['Alaska', 'Canada']",6.216817438978349,2.051522647924928,4.142857074737549,74,74,41 -"['Spain', 'Italy']",6.799897570483498,1.2304383339125753,4.285714149475098,78,19,35 -"['banana', 'plantain']",4.590611689448974,1.239858409557863,4.714285850524902,56,24,16 -"['Firefox', 'Chrome']",2.323313066984885,1.2388581155089609,4.857142925262451,11,23,10 -"['Pecorino Romano', 'Parmesan']",2.8646266304266486,1.1561388450582295,4.5714287757873535,23,4,23 -"['Ligue 1', 'Bundesliga']",3.865625472835201,1.23614659258189,5.0,45,21,3 -"['Netflix', 'Amazon Prime Video']",2.8743441261925944,1.1320119721227202,4.5714287757873535,24,2,23 -"['Primark', 'Shein']",5.762877002251481,1.3975065558414137,4.4285712242126465,68,45,30 -"[""Dominos' Pizza"", 'Pizza Hut']",3.279488276633316,1.1959740216706212,4.857142925262451,31,14,10 -"['South Africa', 'Bhagavad Gita']",12.20926245667213,3.0240732935848014,1.0,89,85,90 -"['Germany', 'France']",5.258700046586312,1.2762333438571687,3.4285714626312256,64,31,59 -"['Kindle', 'Jeff Bezos']",3.3310858446251417,1.2458504058572832,1.5714285373687744,33,26,75 -"['Harry Potter', 'Lord of the Rings']",2.677213611582014,1.5231994501082553,4.142857074737549,17,55,41 -"['Yakutia', 'Turkey']",7.832086656435432,1.9136274793204298,1.8571428060531616,81,68,71 -"['PS5', 'XBox']",3.5737521830664614,1.2867747741997058,5.0,35,33,3 -"['Monet', 'Manet']",2.1074790251044773,1.1854059397722165,4.0,8,13,46 -"['Glastonbury', 'Roskilde']",5.063006118878485,2.0309699733249644,4.4285712242126465,60,72,30 -"['Telugu', 'Tamil']",4.954002742720548,1.200778959518929,3.857142925262451,59,16,51 -"['Batman', 'Superman']",1.5826506232762976,1.2740821846390384,4.0,2,29,46 -"['cannoli', 'canneloni']",1.6520438304263976,1.3014626400370175,1.8571428060531616,3,35,71 -"['Gerald Ford', 'Duran Duran']",7.138901311201049,2.1149843195939737,1.4285714626312256,79,76,79 +"['pill', 'tablet']",2.787594142476719,1.0963185810651779,4.857142925262451,20,0,7 +"['Eduardo Saverin', 'Guinea-Bissau']",11.848144897715358,4.052577211867362,1.0,83,85,86 +"['Dionysus', 'Toyota Corolla']",8.916061293118249,3.4564230570493915,1.1428571939468384,80,83,82 +"['Great Britian', 'British Empire']",3.7412895492342257,1.272809779852253,4.5714287757873535,38,25,19 +"['English', 'Persian']",5.0889122727160645,1.6148763949051825,2.0,57,53,66 +"['Chess', ""Rubik's Cube""]",3.779193733187733,1.879439692861986,2.142857074737549,40,63,64 +"['Star Wars', 'Star Trek']",1.9130807485899026,1.4347979273272462,4.285714149475098,3,46,31 +"['Anne Heche', 'Ponzi scheme']",16.145925218000528,4.175371728372175,1.2857142686843872,88,86,79 +"['Chris Pine', 'Good Friday']",10.820051812704461,3.440924088108119,1.0,82,82,86 +"['Sudocrem', 'Germolene']",5.792675648325962,1.6453597895571181,4.4285712242126465,65,54,26 +"['Yugoslavia', 'Albania']",6.15088975180785,1.777307939350594,3.7142856121063232,68,58,52 +"['Beatles', 'Rolling Stones']",2.721417145024596,1.1962706778662544,4.714285850524902,17,14,12 +"['decision tree', 'neural network']",2.5570619568278343,1.4315812594673885,2.857142925262451,13,45,60 +"['Suits', 'Law & Order']",2.8313154971533714,1.3978820298258887,4.5714287757873535,21,42,19 +"['Titanic', 'Superbad']",3.923417746770726,2.213662292000817,1.7142857313156128,44,74,69 +"['Seleucid Empire', 'Macedonian Empire']",6.657879679039228,1.828381638106454,3.7142856121063232,73,60,52 +"['Doctor Who', 'Timeless']",2.6473780915009626,1.4524423096052965,3.7142856121063232,15,49,52 +"['Srebrenica massacre', 'Rock Hudson']",15.593253164074452,9.197721177121391,1.0,87,88,86 +"['Arnold Classic', 'Mr. Olympia']",3.6454399523518735,1.428413776493121,4.142857074737549,35,44,37 +"['Italy', 'Superman']",5.8382376159075315,2.573955623240689,1.0,67,78,86 +"['Alibaba', 'Amazon']",3.7603153581644357,1.3082210072455742,4.4285712242126465,39,36,26 +"['Indiana Jones', 'Star Wars']",2.7313136302218206,1.6919490885578246,3.2857143878936768,19,56,57 +"['NQ64', 'Wetherspoons']",4.522848711394549,2.154384332367406,2.5714285373687744,49,73,63 +"['Pepsi', 'Fanta']",5.119433385443051,1.492284581073927,3.4285714626312256,59,50,55 +"['Homebase', 'IKEA']",3.653334635879744,1.3055150387108365,4.714285850524902,36,35,12 +"['ramen', 'udon']",4.616728474015259,1.3038570428318557,4.142857074737549,53,34,37 +"['England', 'Wales']",3.856980062501871,1.284211292664953,4.0,42,29,42 +"['sphinx', 'sphynx']",1.487641088452482,1.29134319803738,2.142857074737549,0,31,64 +"['iPod', 'iPad']",3.0450299225110182,1.1745858450607467,3.4285714626312256,25,8,55 +"['Olympic Games', 'X Games']",2.6339053080235133,1.4087563252628894,3.857142925262451,14,43,47 +"[""McDonald's"", 'Burger King']",4.1751278413775745,1.1845686476202482,5.0,47,11,2 +"['Minnesota', 'Wisconsin']",3.9126989880214436,1.3668624638306508,4.5714287757873535,43,39,19 +"['Slack', 'Microsoft Teams']",1.9214659125165483,1.1083802086359376,4.714285850524902,4,1,12 +"['Peter Phillips', 'Christine Baranski']",4.535060013640789,1.9770690531727926,1.5714285373687744,51,65,71 +"['Jenna Ortega', 'Anglo-Saxons']",11.892121153636435,4.34116604633945,1.0,84,87,86 +"['Karl Urban', 'France 24']",15.10152644622368,3.737063890873087,1.2857142686843872,86,84,79 +"['Sudan', 'South Sudan']",3.273710897128462,1.1413170766716667,3.857142925262451,29,3,47 +"['Gameboy', 'Nintendo']",3.093549297730727,1.1561978345889523,2.7142856121063232,26,5,62 +"['Grammy Award', 'Novel Prize']",6.158049636137822,2.000009898204835,3.2857143878936768,69,66,57 +"['George Ezra', 'Lead Belly']",5.538529596204542,1.8679975384088594,3.857142925262451,62,62,47 +"['Cardiff', 'Swansea']",4.529390820956747,1.3684548520556212,4.4285712242126465,50,40,26 +"['Steve Jobs', 'Tim Cook']",2.3555150983794166,1.1722038716948548,3.857142925262451,11,7,47 +"['Counter Strike', 'Rainbow Six']",2.4903619990032655,1.6683302843699688,4.714285850524902,12,55,12 +"['Hawaii', 'Guam']",4.330392514327977,1.3596249987134326,4.0,48,38,42 +"['Scrabble', 'Jenga']",3.7856804025281106,2.0206657104219063,2.857142925262451,41,67,60 +"['Christmas', 'Easter']",3.1229158204241005,1.5852128544625168,3.857142925262451,27,52,47 +"['fusilli', 'rotini']",3.142761977877682,1.2170543108656977,4.857142925262451,28,17,7 +"['Coachella', 'Woodstock']",2.727321463663285,1.3026882918541969,4.142857074737549,18,33,37 +"['Avatar', 'Archimedes']",5.3914530435939,2.0498386840332077,1.0,61,69,86 +"['Shark', 'Bush']",5.1150546404494,2.473817916476143,4.5714287757873535,58,75,19 +"['Eva Braun', 'Phil Jackson']",5.832551510252753,2.073420971334422,1.2857142686843872,66,71,79 +"['Joe Burrow', 'Edward Scissorhands']",6.407253426404243,2.7072382051749715,1.4285714626312256,71,79,75 +"['Edward I', 'William the Conqueror']",5.655943977746394,1.8079957937284559,4.142857074737549,63,59,37 +"['Frank Sinatra', 'Ella Fitzgerald']",3.6229609953208675,1.2618269168231726,4.285714149475098,34,24,31 +"['New York', 'York']",2.1820453023871194,1.2378399248510765,1.5714285373687744,9,20,71 +"['Uzbekistan', 'United States']",7.566941289942147,1.8443678727708666,1.4285714626312256,76,61,75 +"['Red Bull', 'Monster Energy']",4.085817066951404,1.2350180713452537,4.857142925262451,45,19,7 +"['Champions League', 'Europa League']",2.897441512997175,1.3311126253575225,4.714285850524902,24,37,12 +"['Cerave', 'Nivea']",6.515725632441174,1.7120814151917347,4.5714287757873535,72,57,19 +"['Galaxy', 'iPhone']",4.136298701133585,1.4420422620374922,4.5714287757873535,46,47,19 +"['Mehmet Öz', 'David Schwimmer']",8.06705771404044,2.5171469601925516,1.4285714626312256,79,77,75 +"['Disney', 'Pixar']",2.062663296511003,1.1827246431069653,5.0,6,10,2 +"['Batman', 'Iron Man']",1.999427404364395,1.4505700925559022,4.285714149475098,5,48,31 +"['Gisele Bündchen', 'Orson Welles']",7.88994896376945,2.482540389029044,1.4285714626312256,78,76,75 +"['Estonia', 'Finland']",4.867099009057239,1.2753268802230482,4.142857074737549,54,27,37 +"['Nicolae Ceaușescu', 'Javier Hernández']",10.451086178583688,2.866841024727357,1.2857142686843872,81,80,79 +"['Adidas', 'Nike']",3.708739980829369,1.1759724560937117,5.0,37,9,2 +"['Java', 'Javascript']",2.1648758313155447,1.1638525989865072,3.142857074737549,8,6,59 +"['bourbon', 'Scotch whisky']",3.424470627520201,1.2018479334928887,4.4285712242126465,32,16,26 +"['Alaska', 'Canada']",6.216817438978349,2.051522647924928,4.142857074737549,70,70,37 +"['Spain', 'Italy']",6.799897570483498,1.2304383339125753,4.285714149475098,74,18,31 +"['banana', 'plantain']",4.590611689448974,1.239858409557863,4.714285850524902,52,22,12 +"['Firefox', 'Chrome']",2.323313066984885,1.2388581155089609,4.857142925262451,10,21,7 +"['Pecorino Romano', 'Parmesan']",2.8646266304266486,1.1561388450582295,4.5714287757873535,22,4,19 +"['Netflix', 'Amazon Prime Video']",2.8743441261925944,1.1320119721227202,4.5714287757873535,23,2,19 +"['Primark', 'Shein']",5.762877002251481,1.3975065558414137,4.4285712242126465,64,41,26 +"[""Dominos' Pizza"", 'Pizza Hut']",3.279488276633316,1.1959740216706212,4.857142925262451,30,13,7 +"['South Africa', 'Bhagavad Gita']",12.20926245667213,3.0240732935848014,1.0,85,81,86 +"['Germany', 'France']",5.258700046586312,1.2762333438571687,3.4285714626312256,60,28,55 +"['Kindle', 'Jeff Bezos']",3.3310858446251417,1.2458504058572832,1.5714285373687744,31,23,71 +"['Harry Potter', 'Lord of the Rings']",2.677213611582014,1.5231994501082553,4.142857074737549,16,51,37 +"['Yakutia', 'Turkey']",7.832086656435432,1.9136274793204298,1.8571428060531616,77,64,67 +"['PS5', 'XBox']",3.5737521830664614,1.2867747741997058,5.0,33,30,2 +"['Monet', 'Manet']",2.1074790251044773,1.1854059397722165,4.0,7,12,42 +"['Glastonbury', 'Roskilde']",5.063006118878485,2.0309699733249644,4.4285712242126465,56,68,26 +"['Telugu', 'Tamil']",4.954002742720548,1.200778959518929,3.857142925262451,55,15,47 +"['Batman', 'Superman']",1.5826506232762976,1.2740821846390384,4.0,1,26,42 +"['cannoli', 'canneloni']",1.6520438304263976,1.3014626400370175,1.8571428060531616,2,32,67 +"['Gerald Ford', 'Duran Duran']",7.138901311201049,2.1149843195939737,1.4285714626312256,75,72,75 diff --git a/experiments/results/lm_lc/lm.csv b/experiments/results/lm_lc/lm.csv index 29638fa24f958a0e893df67e4d0bd5e205d118eb..27a9fcd91f86a7ae266b97c36c86d8dca8308165 100644 --- a/experiments/results/lm_lc/lm.csv +++ b/experiments/results/lm_lc/lm.csv @@ -1,24 +1,24 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-T5 extsubscript{SMALL},0.47676097522939054,0.40833571261581375,0.30934590563428976,0.22436672671700258,0.16942071664102182,0.3176460073675037 -Flan-T5 extsubscript{BASE},0.4566419932654189,0.3899872752372662,0.3459207357378026,0.23634179781685494,0.10649793272688465,0.3070779469568455 -Flan-T5 extsubscript{LARGE},0.500097970006437,0.2791015777434352,0.41810593292697185,0.3014720569753186,0.2944442528504654,0.3586443581005256 -Flan-T5 extsubscript{XL},0.4948996416160854,0.2585068655322593,0.40334740581651923,0.3234891964665975,0.38715447342514303,0.3734795165713209 -Flan-T5 extsubscript{XXL},0.6558600331708642,0.39097532739732255,0.5137148714722951,0.48498322027473,0.46526989625821613,0.5021606697146856 -Flan-UL2,0.6605035317658581,0.35791417582293494,0.5329592730844052,0.5617353599147163,0.4369621165115711,0.5100148914198971 -T5 extsubscript{SMALL},0.31788332936795455,0.4067532853282234,0.3070207273509307,0.17679576870495456,0.19644313785640424,0.2809792497216935 -T5 extsubscript{BASE},0.4484817273521575,0.4231564950166599,0.4386362852295569,0.25739482237701783,0.22215778149637408,0.35796542229435324 -T5 extsubscript{LARGE},0.36104055160378007,0.16276615505429307,0.3156410828516156,0.174686170687364,0.29006506622651235,0.260839805284713 -T5 extsubscript{XL},0.5446721421811761,0.36070079168059405,0.5455346746040511,0.38386092796999827,0.3385425126933779,0.43466220982583953 -T5 extsubscript{XXL},0.3078963930515155,0.10340583387590391,0.2646516426827772,0.21968933744723163,0.168830348478407,0.212894711107167 -OPT extsubscript{125M},0.48600529320435076,0.409285168988368,0.5499158787006698,0.2905279206532933,0.22503489216228176,0.3921538307417927 -OPT extsubscript{350M},0.48169469248657154,0.3571499792303913,0.5061636493945053,0.40226502289268884,0.272974281569549,0.40404952511474124 -OPT extsubscript{1.3B},0.6174316679600876,0.3921023243923869,0.5616838228100176,0.48487821765846983,0.47457379958043716,0.5061339664802799 -OPT extsubscript{2.7B},0.6617839082166836,0.4307367076820927,0.5980792179334641,0.588005105364532,0.4801860336326363,0.5517581945658818 -OPT extsubscript{6.7B},0.7080054980914848,0.42069408377401935,0.5996118917215304,0.6223886893435421,0.5280282738485872,0.5757456873558329 -OPT extsubscript{13B},0.7212445905930207,0.4058964588456745,0.5814366235323154,0.7037084427908455,0.5978337043167529,0.6020239640157218 -OPT extsubscript{30B},0.6813139170132756,0.3770885630540297,0.5854813870413097,0.6989690065205573,0.5716333147202012,0.5828972376698747 -OPT-IML extsubscript{1.3B},0.6061643551928231,0.39118374464983446,0.5777955887284701,0.5394270768056251,0.4168298148649338,0.5062801160483372 -OPT-IML extsubscript{30B},0.6440378906082419,0.3558763182428186,0.5676350829822163,0.6966494032704463,0.5200321481017788,0.5568461686411004 -OPT-IML extsubscript{M-1.3B},0.5909364112710048,0.3755292932389407,0.590692477920735,0.5158492166090246,0.40518685793640347,0.49563885139522174 -OPT-IML extsubscript{M-30B},0.6125833091329617,0.3685743323310436,0.5747227646948349,0.6765032194870758,0.5111168415448232,0.5487000934381479 -GPT-3 extsubscript{davinci},0.70571789216601,0.3956531368425896,0.6475957959742583,0.7399152540158276,0.5197407005278296,0.6017245559053029 +Flan-T5 extsubscript{SMALL},0.38188478925630764,0.3338352411425878,0.241187788295071,0.1614871220097207,0.06711212999156634,0.2371014141390507 +Flan-T5 extsubscript{BASE},0.358489789271024,0.3128045825033697,0.28159202335531197,0.17215077789540603,-0.001969622923142145,0.22461351002039392 +Flan-T5 extsubscript{LARGE},0.413819370399414,0.18828791023299932,0.36221897557272553,0.24311369397442836,0.22220075055014848,0.28592814014594314 +Flan-T5 extsubscript{XL},0.4036957527842544,0.1731059624485638,0.346443419633338,0.2662381927581941,0.31080820257306263,0.3000583060394826 +Flan-T5 extsubscript{XXL},0.6078130660239124,0.3184062889781614,0.46792840166866323,0.44200931558897405,0.4022464546413586,0.447680705380214 +Flan-UL2,0.5996085695012955,0.28033232811957703,0.48912474225877123,0.5263056971616906,0.36716840829587466,0.45250794906744185 +T5 extsubscript{SMALL},0.19622759319253757,0.33034189348271764,0.23886105881028688,0.10855321205793352,0.09611077744440805,0.19401890699757676 +T5 extsubscript{BASE},0.35010251931102215,0.349078940022021,0.38333280802507524,0.19578950070872989,0.12542490562519892,0.2807457347384094 +T5 extsubscript{LARGE},0.2912291643133335,0.08244653340693457,0.2615672983213718,0.11424084147577347,0.21665852154563595,0.19322847181260988 +T5 extsubscript{XL},0.4704486737492087,0.28095866065455377,0.5042319822823165,0.33410537629563414,0.25738111496956184,0.36942516159025496 +T5 extsubscript{XXL},0.32550933790288106,0.07918254695705594,0.23966138774654241,0.17500238387750114,0.15235161208096903,0.19434145371298991 +OPT extsubscript{125M},0.4076558439275967,0.36768366278632925,0.5105108515657233,0.23333304904859034,0.12693409721565851,0.3292235009087796 +OPT extsubscript{350M},0.414814470225177,0.3346380053775579,0.4710389584621512,0.35773890492684124,0.18172542580488543,0.35199115295932254 +OPT extsubscript{1.3B},0.584113443642987,0.3890142553155362,0.5432253281868904,0.4500654920520515,0.41658803800380484,0.47660131144025397 +OPT extsubscript{2.7B},0.6514654553193701,0.41046835003473847,0.5780355115071184,0.564820557557383,0.4189669332226649,0.524751361528255 +OPT extsubscript{6.7B},0.7071910455620942,0.4165817084395112,0.5895206442830742,0.6068570734282313,0.47407374253984097,0.5588448428505504 +OPT extsubscript{13B},0.7214981440774001,0.4057311588899146,0.5533820799449375,0.6965605985844833,0.5544872221422373,0.5863318407277945 +OPT extsubscript{30B},0.7075769005965737,0.3890936495805332,0.5741493782187024,0.6924883598049523,0.5275434626741458,0.5781703501749815 +OPT-IML extsubscript{1.3B},0.5676638342783344,0.3851945090106782,0.5576642522945935,0.5113308701191037,0.3502006610359055,0.4744108253477231 +OPT-IML extsubscript{30B},0.650033730059854,0.35617149436175727,0.5546939593352945,0.6967891425976203,0.47256455094938143,0.5460505754607815 +OPT-IML extsubscript{M-1.3B},0.5542299866305348,0.36853935653129744,0.5679530170730538,0.4861858344919227,0.3345630487370194,0.46229424869276564 +OPT-IML extsubscript{M-30B},0.6183428468332609,0.35533344378678844,0.5688936098434985,0.6706520181861402,0.4571145217860326,0.5340672880871441 +GPT-3 extsubscript{davinci},0.7182894548433074,0.38564440984566145,0.6352136509736224,0.7275906425499408,0.4674401207467475,0.5868356557918559 diff --git a/experiments/results/lm_lc_fewshots.csv b/experiments/results/lm_lc_fewshots.csv index 2cb9cd3094f3b094bbaddaedf90d70a3c2da1175..f9f8983b8deb158467b663173802cca9b7c3f210 100644 --- a/experiments/results/lm_lc_fewshots.csv +++ b/experiments/results/lm_lc_fewshots.csv @@ -1,25 +1,25 @@ model,shot,seed,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-UL2,1,0,0.4634621318268161,0.16655626138700946,0.3560737650265537,0.41547148831050135,0.17042957362776867,0.3143986440357298 -Flan-UL2,1,1,0.4808325723430157,0.2700624443104191,0.3892318540513041,0.4232416819137535,0.2359978047515976,0.359873271474018 -Flan-UL2,1,2,0.3566701999849623,0.2570402256071756,0.35238039502018914,0.3265963193386597,0.21653807442945824,0.301845042876089 -Flan-UL2,3,0,0.6008806683724164,0.3409165910069645,0.4400867179850928,0.48946492285056153,0.3203158297994847,0.43833294600290396 -Flan-UL2,3,1,0.5984479531158479,0.3218657102958768,0.4100388352814914,0.5981330849874441,0.35945200787054604,0.45758751831024125 -Flan-UL2,3,2,0.5558370248323746,0.32140256084585034,0.479510078397158,0.5586568741198161,0.3275721270893454,0.44859573305690886 -Flan-T5 extsubscript{XXL},1,0,0.4289090393405381,0.2235622395277642,0.3116935132901571,0.24477064419482994,0.15137338610032808,0.27206176449072345 -Flan-T5 extsubscript{XXL},1,1,0.5408992995727435,0.28015138316349514,0.37012950513174664,0.22275827754974462,0.1943880588093273,0.32166530484541145 -Flan-T5 extsubscript{XXL},1,2,0.35487767295380657,0.19694658446624458,0.3643427270246087,0.15625343868751154,0.19403682711764508,0.25329145004996334 -Flan-T5 extsubscript{XXL},3,0,0.6051229823461516,0.3515458708850714,0.44012410027260657,0.3804674343263175,0.40166706800486446,0.43578549116700227 -Flan-T5 extsubscript{XXL},3,1,0.6207094316742009,0.3572426091203966,0.3608960801158353,0.49954040116534365,0.4290780859855123,0.45349332161225775 -Flan-T5 extsubscript{XXL},3,2,0.5559223832624296,0.3356752830641652,0.4745756164453349,0.399234265559725,0.41335486302169466,0.43575248227066987 -OPT extsubscript{13B},1,0,0.4849127052996463,0.20449592050167562,0.2532949037360814,0.4419226019156754,0.25835706478379455,0.32859663924737464 -OPT extsubscript{13B},1,1,0.48103743257514775,0.2688659748978508,0.29629201083446693,0.5712333238400675,0.2671453300905671,0.37691481444762004 -OPT extsubscript{13B},1,2,0.41472246826539133,0.29268729494421086,0.3035815568996601,0.5357233481593575,0.2574976680913806,0.36084246727200003 -OPT extsubscript{13B},3,0,0.6665554444567601,0.3765173453989971,0.4665832833748821,0.6225700574989006,0.5729112002367472,0.5410274661932575 -OPT extsubscript{13B},3,1,0.6810749134091214,0.3487669741849127,0.47417188774018576,0.66063350589321,0.49442959968255856,0.5318153761819977 -OPT extsubscript{13B},3,2,0.6545284416620056,0.445943447957961,0.5320695746415764,0.6374422462382947,0.5381467357749222,0.5616260892549519 -GPT-3 extsubscript{davinci},1,0,0.5280699275354719,0.212191920529615,0.3635277931568076,0.5348785543830825,0.3421445057868,0.3961625402783554 -GPT-3 extsubscript{davinci},1,1,0.4974091794597034,0.2292126628180868,0.39615505369886195,0.6084233413809402,0.29307669115731966,0.4048553857029824 -GPT-3 extsubscript{davinci},1,2,0.44272003332344273,0.1907326626783898,0.39534759628856364,0.613277325959876,0.27941602025529555,0.38429872770111356 -GPT-3 extsubscript{davinci},3,0,0.6604608525508305,0.35463353388524765,0.5785282815637409,0.6671818508708893,0.5031879729304646,0.5527984983602346 -GPT-3 extsubscript{davinci},3,1,0.6504483087053751,0.330626954058877,0.5698331614880284,0.7072260304355611,0.4307669873114737,0.537780288399863 -GPT-3 extsubscript{davinci},3,2,0.6291172370346219,0.3578601417204319,0.5625809977103491,0.671381955521296,0.4700152606032847,0.5381911185179967 +Flan-UL2,1,0,0.5013678469068427,0.16985079758368482,0.3337124139772319,0.3761315038022488,0.16920851476084792,0.31005421540617123 +Flan-UL2,1,1,0.4690372566494021,0.26475340901015626,0.37052754504498664,0.38843132705471,0.21405793716659546,0.3413614949851701 +Flan-UL2,1,2,0.36785185089707934,0.24484309166589655,0.3223345417803619,0.27783160724277745,0.20665692981903103,0.2839036042810293 +Flan-UL2,3,0,0.6014363038751458,0.29922816318887446,0.4491000446322185,0.4523249612728372,0.3026312831648665,0.4209441512267885 +Flan-UL2,3,1,0.5706999041548969,0.2735397076698296,0.3933492959489332,0.5700303222204821,0.3218841340759269,0.4259006728140138 +Flan-UL2,3,2,0.540735214503607,0.2905565451341969,0.4593723077831272,0.5243578788679097,0.3214322292494051,0.42729083510764915 +Flan-T5 extsubscript{XXL},1,0,0.4815267748707124,0.2233360674366962,0.3015424910652696,0.18716196421281012,0.1410198853932811,0.2669174365957539 +Flan-T5 extsubscript{XXL},1,1,0.5354043225798769,0.25176803589063906,0.3800242317009673,0.1797135070573923,0.15389490969607175,0.30016100138498947 +Flan-T5 extsubscript{XXL},1,2,0.39087114992773825,0.19408369157778382,0.36040379654204285,0.09441984251826,0.1814781571262226,0.2442513275384095 +Flan-T5 extsubscript{XXL},3,0,0.6113162235737921,0.33101233394269275,0.4388607847364131,0.33209522781645234,0.38439195074066745,0.41953530416200363 +Flan-T5 extsubscript{XXL},3,1,0.5853319332255539,0.319923601598105,0.34214474565613046,0.45987730207058997,0.38021396272188107,0.41749830905445207 +Flan-T5 extsubscript{XXL},3,2,0.5584743920098094,0.32826882100779475,0.4662617372859455,0.3494489902685101,0.40436102816923414,0.42136299374825875 +OPT extsubscript{13B},1,0,0.5132379662570148,0.2153348898419937,0.23565974306526472,0.41024689194505504,0.1945919236015153,0.31381428294216873 +OPT extsubscript{13B},1,1,0.48155723711027654,0.27850626002464496,0.27423229746727135,0.551814325537044,0.2099481611970954,0.3592116562672665 +OPT extsubscript{13B},1,2,0.4477847675134652,0.32649568242286064,0.2710969882324558,0.5079390691968668,0.20544616594419907,0.35175253466196954 +OPT extsubscript{13B},3,0,0.6767694223173417,0.3806513927358471,0.4546363406758006,0.6091009601026667,0.5343305615781334,0.5310977354819578 +OPT extsubscript{13B},3,1,0.6809529032174879,0.3277748122478131,0.45819244141318344,0.6413879961403773,0.4439837022984183,0.510458371063456 +OPT extsubscript{13B},3,2,0.6745050625097383,0.4659737628526748,0.5159316362164438,0.6133601894384008,0.5034987153007221,0.5546538732635959 +GPT-3 extsubscript{davinci},1,0,0.5476399888048191,0.21408222477204028,0.3450655337327744,0.5075546997202274,0.28041120810985165,0.3789507310279426 +GPT-3 extsubscript{davinci},1,1,0.5108517574911547,0.22118360069677623,0.3798014597290199,0.585789470762698,0.22970407597164239,0.38546607293025825 +GPT-3 extsubscript{davinci},1,2,0.46023366941535654,0.20981257763219902,0.3658493336340909,0.5891760775028183,0.2206403999227242,0.3691424116214378 +GPT-3 extsubscript{davinci},3,0,0.684039743493324,0.361235084151569,0.5698424534277189,0.6515789814534385,0.4541899301728822,0.5441772385397865 +GPT-3 extsubscript{davinci},3,1,0.6628583329163701,0.31524816154827884,0.5536131027306608,0.6926649619969217,0.370945650525104,0.5190660419434671 +GPT-3 extsubscript{davinci},3,2,0.6446317595771409,0.372747252576141,0.5481180607559578,0.652872332800509,0.4332488310419856,0.5303236473503469 diff --git a/experiments/results/lm_lc_zeroshot.csv b/experiments/results/lm_lc_zeroshot.csv index 211521fa68af94e169020f47f349551e3ef4a8fa..19a6f592cbe3e987809982d295a3003a3944f630 100644 --- a/experiments/results/lm_lc_zeroshot.csv +++ b/experiments/results/lm_lc_zeroshot.csv @@ -1,5 +1,5 @@ -model,is competitor/rival of,is friend/ally of,is influenced by,is known for,is similar to,average,shot,seed -Flan-UL2,0.3722054342549786,0.16943550713467384,0.25216595865316427,0.10233459523791726,0.14331747623578653,0.20789179430330412,0,0 -Flan-T5 extsubscript{XXL},0.3870407293985436,0.18011882111528382,0.2803447269810751,0.11541696665469497,0.1376454580658542,0.2201133404430903,0,0 -OPT extsubscript{13B},0.2915843970679984,0.12024131638436512,0.1601905784541834,0.18695238540502862,0.06757099906788934,0.165307935275893,0,0 -GPT-3 extsubscript{davinci},0.3230219068572676,0.1719056375348149,0.2882024838164782,0.32588516525580674,0.13042652584957673,0.24788834386278885,0,0 +model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average,shot,seed +Flan-UL2,0.42382113905631696,0.1849268863481243,0.24018943982819554,0.058652704462327634,0.17166414853515502,0.2158508636460239,0,0 +Flan-T5 extsubscript{XXL},0.44580472194179405,0.20274648804746173,0.26801118388029527,0.06323916727141685,0.17201373528774733,0.23036305928574308,0,0 +OPT extsubscript{13B},0.3439288387593501,0.15084028190939164,0.164034428677282,0.16291032790970988,0.0041609350064647915,0.16517496245243965,0,0 +GPT-3 extsubscript{davinci},0.3396336629808019,0.1935632180628032,0.28558541722281383,0.3088928163009354,0.06408522030448642,0.23835206697436812,0,0 diff --git a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_lc_zeroshot/davinci/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_lc_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_lc_zeroshot/davinci/ppl.competitor__rival_of.jsonl index c7362c8576634211b34d6aa32772a06db980e99e..925309c8fca1aaf9d6e14efb594893ed9de55028 100644 --- a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/davinci/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 117.4295710327631, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Dyson\", \"Dualit\"]", "output": ""} {"perplexity": 152.96684016457226, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Netflix\", \"Disney Plus\"]", "output": ""} {"perplexity": 90.00091079400973, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"PyTorch\", \"TensorFlow\"]", "output": ""} -{"perplexity": 90.20581487269541, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Dell\", \"HP\"]", "output": ""} {"perplexity": 83.17478344580698, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Sanpellegrino\", \"Volvic\"]", "output": ""} {"perplexity": 80.13930568420182, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Mikhail Khodorkovsky\", \"Hezbollah\"]", "output": ""} {"perplexity": 63.522640374906636, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"British Airways\", \"Aer Lingus\"]", "output": ""} -{"perplexity": 112.76160557077885, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Microsoft Teams\", \"Slack\"]", "output": ""} {"perplexity": 84.5190652775399, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Federal Reserve Board\", \"Bank of England\"]", "output": ""} {"perplexity": 132.01602447968676, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"American Psycho\", \"Chihuahua\"]", "output": ""} {"perplexity": 124.08648627288929, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Mars\", \"Snickers\"]", "output": ""} @@ -45,7 +43,6 @@ {"perplexity": 152.65886305814806, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Nintendo\", \"Xbox\"]", "output": ""} {"perplexity": 96.96071223157128, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"H&M\", \"Zalora\"]", "output": ""} {"perplexity": 83.66123647138915, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Serena Williams\", \"Andy Murray\"]", "output": ""} -{"perplexity": 92.7845918585828, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Liverpool FC\", \"Manchester United\"]", "output": ""} {"perplexity": 108.50971345453637, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Apple\", \"Samsung\"]", "output": ""} {"perplexity": 81.25659240836981, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Expedia\", \"Trivago\"]", "output": ""} {"perplexity": 51.6195325451907, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Heathrow Airport\", \"Gatwick Airport\"]", "output": ""} @@ -54,7 +51,6 @@ {"perplexity": 60.27123496105139, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Olympic Games\", \"Helicobacter pylori\"]", "output": ""} {"perplexity": 60.201441547509866, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"BMW\", \"Mercedes-Benz\"]", "output": ""} {"perplexity": 151.0218628139722, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Blur\", \"Oasis\"]", "output": ""} -{"perplexity": 114.15143408909168, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Israel\", \"Palestine\"]", "output": ""} {"perplexity": 100.82776509292835, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Toshiba\", \"LG\"]", "output": ""} {"perplexity": 136.92724042191756, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Apple\", \"Rolex\"]", "output": ""} {"perplexity": 141.43026140544134, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Tesla\", \"Skoda\"]", "output": ""} @@ -76,7 +72,6 @@ {"perplexity": 71.84639673489492, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Neoclassicism\", \"Romanticism\"]", "output": ""} {"perplexity": 295.1522630430287, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Royal Feast\", \"Fast X\"]", "output": ""} {"perplexity": 123.01674307820997, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Eminem\", \"MGK\"]", "output": ""} -{"perplexity": 110.63149511908688, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Sprite\", \"7 Up\"]", "output": ""} {"perplexity": 94.14678774507296, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Katharine Hepburn\", \"Abrahamic religion\"]", "output": ""} {"perplexity": 68.66845904377139, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Martin Luther King Jr.\", \"Malcolm X\"]", "output": ""} {"perplexity": 131.19009048007678, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Ligue 1\", \"Hayley Atwell\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_lc_zeroshot/davinci/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/davinci/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_lc_zeroshot/davinci/ppl.friend__ally_of.jsonl index 39dc58d1f16901d313ad06938f5769cf5770a6cd..fd90cef5201bddb4baf59a8dedd6bd30932f0d6a 100644 --- a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/davinci/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 33.548134125388685, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"]", "output": ""} {"perplexity": 108.96840242890875, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Islamic State\", \"Denys Prokopenko\"]", "output": ""} {"perplexity": 108.47548584060864, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Brazil\", \"India\"]", "output": ""} -{"perplexity": 52.84138239592815, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Extinction Rebellion\", \"Greta Thunberg\"]", "output": ""} {"perplexity": 68.5423974605655, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Sicily\", \"Calabria\"]", "output": ""} {"perplexity": 104.6513312724189, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Oman\", \"Iran\"]", "output": ""} {"perplexity": 150.0018686114863, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Sony\", \"ZEISS\"]", "output": ""} {"perplexity": 195.56625107038138, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"FTX\", \"Alameda Research\"]", "output": ""} {"perplexity": 100.57911021089531, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"UK\", \"Commonwealth\"]", "output": ""} -{"perplexity": 72.50930017465377, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Australia\", \"New Zealand\"]", "output": ""} {"perplexity": 60.64711632440313, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Kylo Ren\", \"Rey\"]", "output": ""} {"perplexity": 76.58369561351051, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Anne Boleyn\", \"Columbia Pictures\"]", "output": ""} {"perplexity": 100.59428521535328, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"KGB\", \"CIA\"]", "output": ""} @@ -48,9 +46,7 @@ {"perplexity": 66.75443736723595, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Beatles\", \"Rolling Stones\"]", "output": ""} {"perplexity": 108.85972143685375, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Red Bull\", \"GoPro\"]", "output": ""} {"perplexity": 112.19805208236879, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"HSBC\", \"BlackRock\"]", "output": ""} -{"perplexity": 118.4103860950407, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Elsa\", \"Anna\"]", "output": ""} {"perplexity": 54.99843196964987, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Macbeth\", \"Banquo\"]", "output": ""} -{"perplexity": 108.0459500942928, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Aznar\", \"Bush\"]", "output": ""} {"perplexity": 116.89390353429339, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Google\", \"Samsung\"]", "output": ""} {"perplexity": 76.30975302163986, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"IMF\", \"The World Bank\"]", "output": ""} {"perplexity": 105.97067472224956, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Nikon\", \"Tokina\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_influenced_by.jsonl b/experiments/results/lm_lc_zeroshot/davinci/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_lc_zeroshot/davinci/ppl.is_influenced_by.jsonl rename to experiments/results/lm_lc_zeroshot/davinci/ppl.influenced_by.jsonl index 87b9165e772e63a53906ef67dec109937cf585d2..f6432834960c19ceb89bb3bfccd0549ca2b962f2 100644 --- a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_lc_zeroshot/davinci/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 209.1375905093156, "input": "Complete the following list with examples of what has influenced different entities\n * [\"US\", \"NASA\"]", "output": ""} {"perplexity": 149.86213064142197, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Wales\", \"Westminster\"]", "output": ""} {"perplexity": 154.67575500016008, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Sierra Leone\", \"Pulp fiction\"]", "output": ""} -{"perplexity": 147.65575023935043, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Ethereum\", \"Bitcoin\"]", "output": ""} {"perplexity": 106.65056132863172, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Theresa May\", \"David Cameron\"]", "output": ""} {"perplexity": 132.94553195363358, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Anna Delvey\", \"Bernie Madoff\"]", "output": ""} {"perplexity": 77.32268152934569, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Lord of the Rings\", \"Beowulf\"]", "output": ""} @@ -74,8 +73,6 @@ {"perplexity": 169.91634498149463, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Stephen King\", \"Arthur Machen\"]", "output": ""} {"perplexity": 116.51745175257727, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Bangladesh\", \"India\"]", "output": ""} {"perplexity": 190.4652773198914, "input": "Complete the following list with examples of what has influenced different entities\n * [\"hamburger\", \"Germany\"]", "output": ""} -{"perplexity": 105.92166215022029, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Plato\", \"Socrates\"]", "output": ""} -{"perplexity": 118.07276625569484, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Messi\", \"Maradona\"]", "output": ""} {"perplexity": 158.63476611125054, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Oasis\", \"Blur\"]", "output": ""} {"perplexity": 79.45335186736146, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Quentin Tarantino\", \"Sergio Leone\"]", "output": ""} {"perplexity": 148.47004942093432, "input": "Complete the following list with examples of what has influenced different entities\n * [\"European Union\", \"Germany\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_known_for.jsonl b/experiments/results/lm_lc_zeroshot/davinci/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_lc_zeroshot/davinci/ppl.is_known_for.jsonl rename to experiments/results/lm_lc_zeroshot/davinci/ppl.known_for.jsonl index 863967e300ae6b3bb86249efdf30b9e6d27ad3b6..ab552858d90eb92c795183b57d26ed6ea89a6f6c 100644 --- a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_known_for.jsonl +++ b/experiments/results/lm_lc_zeroshot/davinci/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 95.6427847100704, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Hawaii\", \"ukulele\"]", "output": ""} -{"perplexity": 63.28684492975992, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Paris\", \"Eiffel Tower\"]", "output": ""} {"perplexity": 131.2838776555291, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Sweden\", \"pop\"]", "output": ""} {"perplexity": 89.16997711671964, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Memphis Depay\", \"Mendelian inheritance\"]", "output": ""} {"perplexity": 123.67016706373899, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"beaches\"]", "output": ""} @@ -73,7 +72,6 @@ {"perplexity": 137.77994565258444, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"beer\"]", "output": ""} {"perplexity": 68.0852384969616, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Nintendo\", \"Super Mario Bros.\"]", "output": ""} {"perplexity": 123.37559646023354, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"democracy\", \"North Korea\"]", "output": ""} -{"perplexity": 107.97711033655992, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Apple\", \"iPhone\"]", "output": ""} {"perplexity": 73.04902547591084, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Harry Potter\", \"Bloomsbury\"]", "output": ""} {"perplexity": 113.63560927442808, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"mountains\"]", "output": ""} {"perplexity": 140.55012840651617, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"UK\", \"rain\"]", "output": ""} @@ -89,7 +87,6 @@ {"perplexity": 106.53259649296683, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Frank Abagnale Jr\", \"doctor\"]", "output": ""} {"perplexity": 155.90711017011532, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Meta\", \"Instagram\"]", "output": ""} {"perplexity": 46.15986286261209, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Jeff Goldblum\", \"Jurassic Park\"]", "output": ""} -{"perplexity": 47.29924185917698, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Leonardo Da Vinci\", \"Mona Lisa\"]", "output": ""} {"perplexity": 107.22435821708999, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Neil Armstrong\", \"Korean War\"]", "output": ""} {"perplexity": 89.75442006426371, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"baguette\"]", "output": ""} {"perplexity": 55.567287846048636, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Queen\", \"Bohemian Rhapsody\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_similar_to.jsonl b/experiments/results/lm_lc_zeroshot/davinci/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/davinci/ppl.is_similar_to.jsonl rename to experiments/results/lm_lc_zeroshot/davinci/ppl.similar_to.jsonl index c33a2c828b240d51d21fbabb3daa629fda2848a4..68120012db167ccdbfec0407bdf87a3fefdf3d17 100644 --- a/experiments/results/lm_lc_zeroshot/davinci/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_lc_zeroshot/davinci/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 91.66437404439094, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Avatar\", \"Archimedes\"]", "output": ""} {"perplexity": 151.7127308120904, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"shark\", \"Bush\"]", "output": ""} {"perplexity": 138.05725374998585, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Eva Braun\", \"Phil Jackson\"]", "output": ""} -{"perplexity": 39.35443486694978, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Coca-Cola\", \"Pepsi\"]", "output": ""} {"perplexity": 90.15838840780349, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Joe Burrow\", \"Edward Scissorhands\"]", "output": ""} -{"perplexity": 72.7333826903699, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Australia\", \"New Zealand\"]", "output": ""} {"perplexity": 64.83290600103547, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Edward I\", \"William the Conqueror\"]", "output": ""} {"perplexity": 60.32467148786994, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Frank Sinatra\", \"Ella Fitzgerald\"]", "output": ""} {"perplexity": 85.79368577574411, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"New York\", \"York\"]", "output": ""} @@ -65,7 +63,6 @@ {"perplexity": 85.35793550449638, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Batman\", \"Iron Man\"]", "output": ""} {"perplexity": 41.82192874983211, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Gisele B\u00fcndchen\", \"Orson Welles\"]", "output": ""} {"perplexity": 61.1359966534566, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Estonia\", \"Finland\"]", "output": ""} -{"perplexity": 63.15371595878302, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"The Avengers\", \"The Justice League\"]", "output": ""} {"perplexity": 28.631796918191316, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"]", "output": ""} {"perplexity": 66.57192885291194, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Adidas\", \"Nike\"]", "output": ""} {"perplexity": 85.0467859577298, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Java\", \"Javascript\"]", "output": ""} @@ -75,7 +72,6 @@ {"perplexity": 79.4158547976393, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"banana\", \"plantain\"]", "output": ""} {"perplexity": 71.96078794076372, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Firefox\", \"Chrome\"]", "output": ""} {"perplexity": 43.93448789029347, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Pecorino Romano\", \"Parmesan\"]", "output": ""} -{"perplexity": 56.85258506894564, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Ligue 1\", \"Bundesliga\"]", "output": ""} {"perplexity": 83.04078138294967, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Netflix\", \"Amazon Prime Video\"]", "output": ""} {"perplexity": 137.0408967531455, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Primark\", \"Shein\"]", "output": ""} {"perplexity": 63.537305145207945, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Dominos' Pizza\", \"Pizza Hut\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl index adb90e409f2c6f525cd3c0fc6a35e1869639a179..26e82a9e9f7a07eff3a0b5341f38482d784c4f65 100644 --- a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 45.63995847302403, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Dyson\", \"Dualit\"]"} {"perplexity": 26.11654314868405, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Netflix\", \"Disney Plus\"]"} {"perplexity": 27.917471734699674, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"PyTorch\", \"TensorFlow\"]"} -{"perplexity": 36.191335603099844, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Dell\", \"HP\"]"} {"perplexity": 33.08353859510913, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Sanpellegrino\", \"Volvic\"]"} {"perplexity": 16.252862432715045, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Mikhail Khodorkovsky\", \"Hezbollah\"]"} {"perplexity": 11.221848688100414, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"British Airways\", \"Aer Lingus\"]"} -{"perplexity": 18.32194737459479, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Microsoft Teams\", \"Slack\"]"} {"perplexity": 20.301760710746045, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Federal Reserve Board\", \"Bank of England\"]"} {"perplexity": 27.499891056299283, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"American Psycho\", \"Chihuahua\"]"} {"perplexity": 50.960704235743734, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Mars\", \"Snickers\"]"} @@ -45,7 +43,6 @@ {"perplexity": 17.500815275942198, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Nintendo\", \"Xbox\"]"} {"perplexity": 26.979249286801476, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"H&M\", \"Zalora\"]"} {"perplexity": 19.854444322772377, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Serena Williams\", \"Andy Murray\"]"} -{"perplexity": 17.315380682960562, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Liverpool FC\", \"Manchester United\"]"} {"perplexity": 14.043564250096946, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Apple\", \"Samsung\"]"} {"perplexity": 39.651416281338165, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Expedia\", \"Trivago\"]"} {"perplexity": 12.556163833116738, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Heathrow Airport\", \"Gatwick Airport\"]"} @@ -54,7 +51,6 @@ {"perplexity": 16.77873761715997, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Olympic Games\", \"Helicobacter pylori\"]"} {"perplexity": 13.356607594570407, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"BMW\", \"Mercedes-Benz\"]"} {"perplexity": 33.641050768799204, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Blur\", \"Oasis\"]"} -{"perplexity": 32.294475955425504, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Israel\", \"Palestine\"]"} {"perplexity": 28.402482544075482, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Toshiba\", \"LG\"]"} {"perplexity": 20.575465070467278, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Apple\", \"Rolex\"]"} {"perplexity": 17.861597157656863, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Tesla\", \"Skoda\"]"} @@ -76,7 +72,6 @@ {"perplexity": 21.952536363372293, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Neoclassicism\", \"Romanticism\"]"} {"perplexity": 26.91110108723829, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Royal Feast\", \"Fast X\"]"} {"perplexity": 41.553604251720884, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Eminem\", \"MGK\"]"} -{"perplexity": 60.31554257562304, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Sprite\", \"7 Up\"]"} {"perplexity": 34.89098375753156, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Katharine Hepburn\", \"Abrahamic religion\"]"} {"perplexity": 13.880722844763248, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Martin Luther King Jr.\", \"Malcolm X\"]"} {"perplexity": 76.51080002411547, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Ligue 1\", \"Hayley Atwell\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl index 432b208febe6edd8a717a8b0cd82d626b4856313..3ff07e23dfd67067f50d51083c2bb27c9540ec0d 100644 --- a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 14.220868966093796, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"]"} {"perplexity": 55.2047912468795, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Islamic State\", \"Denys Prokopenko\"]"} {"perplexity": 28.736295421260365, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Brazil\", \"India\"]"} -{"perplexity": 17.98154374419638, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Extinction Rebellion\", \"Greta Thunberg\"]"} {"perplexity": 27.320197051767977, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Sicily\", \"Calabria\"]"} {"perplexity": 38.78997661483257, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Oman\", \"Iran\"]"} {"perplexity": 44.262371166691, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Sony\", \"ZEISS\"]"} {"perplexity": 101.75215435298102, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"FTX\", \"Alameda Research\"]"} {"perplexity": 22.959468254352522, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"UK\", \"Commonwealth\"]"} -{"perplexity": 30.405586559686654, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Australia\", \"New Zealand\"]"} {"perplexity": 38.49797638787128, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Kylo Ren\", \"Rey\"]"} {"perplexity": 24.516539535589267, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Anne Boleyn\", \"Columbia Pictures\"]"} {"perplexity": 56.30611836544038, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"KGB\", \"CIA\"]"} @@ -48,9 +46,7 @@ {"perplexity": 20.46998203910004, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Beatles\", \"Rolling Stones\"]"} {"perplexity": 55.01099494944889, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Red Bull\", \"GoPro\"]"} {"perplexity": 59.64969620866941, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"HSBC\", \"BlackRock\"]"} -{"perplexity": 36.944453621399695, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Elsa\", \"Anna\"]"} {"perplexity": 42.71333292296135, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Macbeth\", \"Banquo\"]"} -{"perplexity": 44.04462032925808, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Aznar\", \"Bush\"]"} {"perplexity": 30.76081489360343, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Google\", \"Samsung\"]"} {"perplexity": 35.49306651649412, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"IMF\", \"The World Bank\"]"} {"perplexity": 30.67411800029071, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Nikon\", \"Tokina\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl rename to experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl index f576723d5c279ddadd56914881ceb573622a310f..48e16079359daa240dc3ff5c54b311c77c38e03c 100644 --- a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 65.87364376085662, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"US\", \"NASA\"]"} {"perplexity": 36.487991058317384, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Wales\", \"Westminster\"]"} {"perplexity": 26.92906576283414, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Sierra Leone\", \"Pulp fiction\"]"} -{"perplexity": 20.357626929196595, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Ethereum\", \"Bitcoin\"]"} {"perplexity": 14.992063510225524, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Theresa May\", \"David Cameron\"]"} {"perplexity": 30.959972187215374, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Anna Delvey\", \"Bernie Madoff\"]"} {"perplexity": 8.384053994689904, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Lord of the Rings\", \"Beowulf\"]"} @@ -74,8 +73,6 @@ {"perplexity": 28.816381648416534, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Stephen King\", \"Arthur Machen\"]"} {"perplexity": 17.603404106919594, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Bangladesh\", \"India\"]"} {"perplexity": 60.444672309025535, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"hamburger\", \"Germany\"]"} -{"perplexity": 21.02164729918823, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Plato\", \"Socrates\"]"} -{"perplexity": 17.31498849809842, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Messi\", \"Maradona\"]"} {"perplexity": 24.46286347019456, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Oasis\", \"Blur\"]"} {"perplexity": 12.277143792718636, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Quentin Tarantino\", \"Sergio Leone\"]"} {"perplexity": 27.48553610220662, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"European Union\", \"Germany\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl rename to experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.known_for.jsonl index 328a2bf0b267e7b404fe1e6d66db2bd05b67a801..a30967d2a097abc8aa27a23682a24982ac04d45e 100644 --- a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 23.768324621875404, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Hawaii\", \"ukulele\"]"} -{"perplexity": 19.769562264962687, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Paris\", \"Eiffel Tower\"]"} {"perplexity": 54.04769902613014, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Sweden\", \"pop\"]"} {"perplexity": 76.52010380381957, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Memphis Depay\", \"Mendelian inheritance\"]"} {"perplexity": 62.486864075671356, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"beaches\"]"} @@ -73,7 +72,6 @@ {"perplexity": 48.969571329477795, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"beer\"]"} {"perplexity": 16.377152640231525, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Nintendo\", \"Super Mario Bros.\"]"} {"perplexity": 19.75004887060444, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"democracy\", \"North Korea\"]"} -{"perplexity": 16.076342104186757, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Apple\", \"iPhone\"]"} {"perplexity": 25.413717742245435, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Harry Potter\", \"Bloomsbury\"]"} {"perplexity": 59.796130547592355, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"mountains\"]"} {"perplexity": 138.3422783414602, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"UK\", \"rain\"]"} @@ -89,7 +87,6 @@ {"perplexity": 23.687822549719396, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Frank Abagnale Jr\", \"doctor\"]"} {"perplexity": 45.32858742578523, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Meta\", \"Instagram\"]"} {"perplexity": 12.50447187603582, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Jeff Goldblum\", \"Jurassic Park\"]"} -{"perplexity": 11.663116060794055, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Leonardo Da Vinci\", \"Mona Lisa\"]"} {"perplexity": 21.525092568483604, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Neil Armstrong\", \"Korean War\"]"} {"perplexity": 47.82089295168022, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"baguette\"]"} {"perplexity": 10.788792378321185, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Queen\", \"Bohemian Rhapsody\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl rename to experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl index e92e92b4985c0d74f501e401033c64632a9c9f97..99fa2bc487899ef22fa19a413368aaf45e2abdf3 100644 --- a/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 30.462611876825886, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Avatar\", \"Archimedes\"]"} {"perplexity": 50.0831491174017, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Shark\", \"Bush\"]"} {"perplexity": 76.18006711621507, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Eva Braun\", \"Phil Jackson\"]"} -{"perplexity": 9.577924565266786, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Coca-Cola\", \"Pepsi\"]"} {"perplexity": 14.967195704505794, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Joe Burrow\", \"Edward Scissorhands\"]"} -{"perplexity": 29.97185514638415, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Australia\", \"New Zealand\"]"} {"perplexity": 8.55247677657705, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Edward I\", \"William the Conqueror\"]"} {"perplexity": 14.320668236401897, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Frank Sinatra\", \"Ella Fitzgerald\"]"} {"perplexity": 24.222324173524967, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"New York\", \"York\"]"} @@ -65,7 +63,6 @@ {"perplexity": 15.62682309359238, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Batman\", \"Iron Man\"]"} {"perplexity": 14.906939023764181, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Gisele B\u00fcndchen\", \"Orson Welles\"]"} {"perplexity": 27.180084356144807, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Estonia\", \"Finland\"]"} -{"perplexity": 28.905745302528626, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"The Avengers\", \"The Justice League\"]"} {"perplexity": 16.346584621008883, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"]"} {"perplexity": 17.692128640399552, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Adidas\", \"Nike\"]"} {"perplexity": 27.269093272489574, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Java\", \"Javascript\"]"} @@ -75,7 +72,6 @@ {"perplexity": 24.542933113487347, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"banana\", \"plantain\"]"} {"perplexity": 19.52803005262185, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Firefox\", \"Chrome\"]"} {"perplexity": 18.660308987912813, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Pecorino Romano\", \"Parmesan\"]"} -{"perplexity": 32.066414344144334, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Ligue 1\", \"Bundesliga\"]"} {"perplexity": 14.205247258344142, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Netflix\", \"Amazon Prime Video\"]"} {"perplexity": 110.21154309711255, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Primark\", \"Shein\"]"} {"perplexity": 18.358677800964674, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Dominos' Pizza\", \"Pizza Hut\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_lc_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl index b599f5c5d45696aa25a2228528be3693f82fb576..e46453f5e645cad7cdece2cea8bb00710f3facd9 100644 --- a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 58.807830439895575, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Dyson\", \"Dualit\"]"} {"perplexity": 26.980484327090885, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Netflix\", \"Disney Plus\"]"} {"perplexity": 22.895266481239364, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"PyTorch\", \"TensorFlow\"]"} -{"perplexity": 34.27977991863856, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Dell\", \"HP\"]"} {"perplexity": 29.42832161758333, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Sanpellegrino\", \"Volvic\"]"} {"perplexity": 18.97453976611424, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Mikhail Khodorkovsky\", \"Hezbollah\"]"} {"perplexity": 9.603532271276254, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"British Airways\", \"Aer Lingus\"]"} -{"perplexity": 17.52638227019037, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Microsoft Teams\", \"Slack\"]"} {"perplexity": 15.56713205107134, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Federal Reserve Board\", \"Bank of England\"]"} {"perplexity": 22.768910098690395, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"American Psycho\", \"Chihuahua\"]"} {"perplexity": 46.25735181061592, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Mars\", \"Snickers\"]"} @@ -45,7 +43,6 @@ {"perplexity": 17.24733160752516, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Nintendo\", \"Xbox\"]"} {"perplexity": 24.565770399315188, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"H&M\", \"Zalora\"]"} {"perplexity": 18.525734933067874, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Serena Williams\", \"Andy Murray\"]"} -{"perplexity": 18.276311961157152, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Liverpool FC\", \"Manchester United\"]"} {"perplexity": 16.01171171209678, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Apple\", \"Samsung\"]"} {"perplexity": 34.04921565719388, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Expedia\", \"Trivago\"]"} {"perplexity": 18.259182290970553, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Heathrow Airport\", \"Gatwick Airport\"]"} @@ -54,7 +51,6 @@ {"perplexity": 17.44707246230173, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Olympic Games\", \"Helicobacter pylori\"]"} {"perplexity": 16.504522019331098, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"BMW\", \"Mercedes-Benz\"]"} {"perplexity": 31.52382708315473, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Blur\", \"Oasis\"]"} -{"perplexity": 27.224412885545224, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Israel\", \"Palestine\"]"} {"perplexity": 26.40238713168242, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Toshiba\", \"LG\"]"} {"perplexity": 24.37523731503945, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Apple\", \"Rolex\"]"} {"perplexity": 15.844503027441396, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Tesla\", \"Skoda\"]"} @@ -76,7 +72,6 @@ {"perplexity": 23.214870277913224, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Neoclassicism\", \"Romanticism\"]"} {"perplexity": 34.57451354654573, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Royal Feast\", \"Fast X\"]"} {"perplexity": 45.51868330531374, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Eminem\", \"MGK\"]"} -{"perplexity": 47.34459347680224, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Sprite\", \"7 Up\"]"} {"perplexity": 31.321893969151414, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Katharine Hepburn\", \"Abrahamic religion\"]"} {"perplexity": 13.236497949251508, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Martin Luther King Jr.\", \"Malcolm X\"]"} {"perplexity": 65.11848756645682, "input": "Complete the following list with examples of entities that are competitors or rivals", "output": "* [\"Ligue 1\", \"Hayley Atwell\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_lc_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl index 6fa5da662eb6f939593a3301826d8b4f646a1067..4e133b9e9d63b68890997bf8091c47bba35dec0f 100644 --- a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 14.101840526322885, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"]"} {"perplexity": 54.71115208667882, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Islamic State\", \"Denys Prokopenko\"]"} {"perplexity": 26.58316726443884, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Brazil\", \"India\"]"} -{"perplexity": 15.738804149227423, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Extinction Rebellion\", \"Greta Thunberg\"]"} {"perplexity": 25.9528300282068, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Sicily\", \"Calabria\"]"} {"perplexity": 35.65009059187143, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Oman\", \"Iran\"]"} {"perplexity": 59.73397598300983, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Sony\", \"ZEISS\"]"} {"perplexity": 175.4909158931099, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"FTX\", \"Alameda Research\"]"} {"perplexity": 22.783664196155808, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"UK\", \"Commonwealth\"]"} -{"perplexity": 32.825931754927446, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Australia\", \"New Zealand\"]"} {"perplexity": 25.88768186671229, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Kylo Ren\", \"Rey\"]"} {"perplexity": 20.865083501251465, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Anne Boleyn\", \"Columbia Pictures\"]"} {"perplexity": 48.05183669118565, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"KGB\", \"CIA\"]"} @@ -48,9 +46,7 @@ {"perplexity": 18.437159250831225, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Beatles\", \"Rolling Stones\"]"} {"perplexity": 46.156715070020844, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Red Bull\", \"GoPro\"]"} {"perplexity": 62.37621021614084, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"HSBC\", \"BlackRock\"]"} -{"perplexity": 43.7338093104186, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Elsa\", \"Anna\"]"} {"perplexity": 32.28272849828967, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Macbeth\", \"Banquo\"]"} -{"perplexity": 25.78384135279312, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Aznar\", \"Bush\"]"} {"perplexity": 28.979911922712507, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Google\", \"Samsung\"]"} {"perplexity": 35.68944014488946, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"IMF\", \"The World Bank\"]"} {"perplexity": 37.06026056937207, "input": "Complete the following list with examples of entities that are friends or allies", "output": "* [\"Nikon\", \"Tokina\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl rename to experiments/results/lm_lc_zeroshot/flan-ul2/ppl.influenced_by.jsonl index 1c264778fe69b62e13ab6bef8bface01bae6dd9d..5ca6ceea85719f5ac1e6d8328ea0cd8c1df6e8e2 100644 --- a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 100.62863344651572, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"US\", \"NASA\"]"} {"perplexity": 45.524337808890444, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Wales\", \"Westminster\"]"} {"perplexity": 33.712221000948055, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Sierra Leone\", \"Pulp fiction\"]"} -{"perplexity": 22.960979118070345, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Ethereum\", \"Bitcoin\"]"} {"perplexity": 21.07278117207154, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Theresa May\", \"David Cameron\"]"} {"perplexity": 37.32791506173553, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Anna Delvey\", \"Bernie Madoff\"]"} {"perplexity": 10.205039823524658, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Lord of the Rings\", \"Beowulf\"]"} @@ -74,8 +73,6 @@ {"perplexity": 43.47604606083975, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Stephen King\", \"Arthur Machen\"]"} {"perplexity": 20.7265840806289, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Bangladesh\", \"India\"]"} {"perplexity": 80.1611835448049, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"hamburger\", \"Germany\"]"} -{"perplexity": 29.860487310834113, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Plato\", \"Socrates\"]"} -{"perplexity": 14.450794935578045, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Messi\", \"Maradona\"]"} {"perplexity": 19.080589835659723, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Oasis\", \"Blur\"]"} {"perplexity": 13.315194294482353, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"Quentin Tarantino\", \"Sergio Leone\"]"} {"perplexity": 32.70514409298319, "input": "Complete the following list with examples of what has influenced different entities", "output": "* [\"European Union\", \"Germany\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_known_for.jsonl b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_known_for.jsonl rename to experiments/results/lm_lc_zeroshot/flan-ul2/ppl.known_for.jsonl index 395a9a5d796b82b098237ccbaf3706bf26a66c99..86f25dd91fe2962cd4f1d10ba411f7f121bfc3d0 100644 --- a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_known_for.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 31.84207372432165, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Hawaii\", \"ukulele\"]"} -{"perplexity": 23.89065611232903, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Paris\", \"Eiffel Tower\"]"} {"perplexity": 49.039906831773656, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Sweden\", \"pop\"]"} {"perplexity": 108.22405102213314, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Memphis Depay\", \"Mendelian inheritance\"]"} {"perplexity": 65.78553206190487, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"beaches\"]"} @@ -73,7 +72,6 @@ {"perplexity": 44.99063783839785, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"beer\"]"} {"perplexity": 13.722282053182946, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Nintendo\", \"Super Mario Bros.\"]"} {"perplexity": 27.75486739054767, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"democracy\", \"North Korea\"]"} -{"perplexity": 18.783155990131064, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Apple\", \"iPhone\"]"} {"perplexity": 33.69106458916548, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Harry Potter\", \"Bloomsbury\"]"} {"perplexity": 45.32361639677581, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"mountains\"]"} {"perplexity": 155.82695192508473, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"UK\", \"rain\"]"} @@ -89,7 +87,6 @@ {"perplexity": 26.73644644288782, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Frank Abagnale Jr\", \"doctor\"]"} {"perplexity": 53.682499945058275, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Meta\", \"Instagram\"]"} {"perplexity": 11.409494481196148, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Jeff Goldblum\", \"Jurassic Park\"]"} -{"perplexity": 12.470016865760364, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Leonardo Da Vinci\", \"Mona Lisa\"]"} {"perplexity": 20.948015667317208, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Neil Armstrong\", \"Korean War\"]"} {"perplexity": 47.16100386610745, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"France\", \"baguette\"]"} {"perplexity": 7.911262464039681, "input": "Complete the following list with examples of examples of what entities are known for", "output": "* [\"Queen\", \"Bohemian Rhapsody\"]"} diff --git a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_similar_to.jsonl b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_similar_to.jsonl rename to experiments/results/lm_lc_zeroshot/flan-ul2/ppl.similar_to.jsonl index 91e24085b2fc859a636dd019122f925dec6f587b..eaaca00e0722409b9752589fd5e69eb8985466a1 100644 --- a/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_lc_zeroshot/flan-ul2/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 29.183182895500003, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Avatar\", \"Archimedes\"]"} {"perplexity": 59.16580302008069, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Shark\", \"Bush\"]"} {"perplexity": 99.85296265405319, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Eva Braun\", \"Phil Jackson\"]"} -{"perplexity": 9.154451947293003, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Coca-Cola\", \"Pepsi\"]"} {"perplexity": 19.541066112491126, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Joe Burrow\", \"Edward Scissorhands\"]"} -{"perplexity": 31.382104262745127, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Australia\", \"New Zealand\"]"} {"perplexity": 9.001772935335449, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Edward I\", \"William the Conqueror\"]"} {"perplexity": 16.39609707894987, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Frank Sinatra\", \"Ella Fitzgerald\"]"} {"perplexity": 26.358121340326043, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"New York\", \"York\"]"} @@ -65,7 +63,6 @@ {"perplexity": 17.24413681395669, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Batman\", \"Iron Man\"]"} {"perplexity": 16.068076667327382, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Gisele B\u00fcndchen\", \"Orson Welles\"]"} {"perplexity": 27.940471179175017, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Estonia\", \"Finland\"]"} -{"perplexity": 30.98733247736819, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"The Avengers\", \"The Justice League\"]"} {"perplexity": 21.191316310954683, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"]"} {"perplexity": 22.054777043577765, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Adidas\", \"Nike\"]"} {"perplexity": 17.61652035206102, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Java\", \"Javascript\"]"} @@ -75,7 +72,6 @@ {"perplexity": 23.675135752963513, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"banana\", \"plantain\"]"} {"perplexity": 19.900959681726377, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Firefox\", \"Chrome\"]"} {"perplexity": 22.31975869455207, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Pecorino Romano\", \"Parmesan\"]"} -{"perplexity": 29.68296354366138, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Ligue 1\", \"Bundesliga\"]"} {"perplexity": 16.86505469257441, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Netflix\", \"Amazon Prime Video\"]"} {"perplexity": 89.11403141226333, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Primark\", \"Shein\"]"} {"perplexity": 12.965816803918935, "input": "Complete the following list with examples of examples of entities that are similar", "output": "* [\"Dominos' Pizza\", \"Pizza Hut\"]"} diff --git a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_lc_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl index be21ddb1d66f5f74a7a3f41d8bd8428b487bb473..1efbf5e98b5a1617956ae7ba9e27d0b7099ca663 100644 --- a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 146.47280374686483, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Dyson\", \"Dualit\"]", "output": ""} {"perplexity": 129.25409124568912, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Netflix\", \"Disney Plus\"]", "output": ""} {"perplexity": 78.19541139509558, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"PyTorch\", \"TensorFlow\"]", "output": ""} -{"perplexity": 99.61608072132233, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Dell\", \"HP\"]", "output": ""} {"perplexity": 88.42113079069448, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Sanpellegrino\", \"Volvic\"]", "output": ""} {"perplexity": 75.60355828231123, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Mikhail Khodorkovsky\", \"Hezbollah\"]", "output": ""} {"perplexity": 68.32779216984109, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"British Airways\", \"Aer Lingus\"]", "output": ""} -{"perplexity": 100.41595584614615, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Microsoft Teams\", \"Slack\"]", "output": ""} {"perplexity": 76.97623974304106, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Federal Reserve Board\", \"Bank of England\"]", "output": ""} {"perplexity": 110.83885954321592, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"American Psycho\", \"Chihuahua\"]", "output": ""} {"perplexity": 140.43216485802066, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Mars\", \"Snickers\"]", "output": ""} @@ -45,7 +43,6 @@ {"perplexity": 144.1186393342107, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Nintendo\", \"Xbox\"]", "output": ""} {"perplexity": 108.44793943661894, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"H&M\", \"Zalora\"]", "output": ""} {"perplexity": 81.08332218631125, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Serena Williams\", \"Andy Murray\"]", "output": ""} -{"perplexity": 103.23527166367057, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Liverpool FC\", \"Manchester United\"]", "output": ""} {"perplexity": 109.86880121506155, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Apple\", \"Samsung\"]", "output": ""} {"perplexity": 80.92677018149939, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Expedia\", \"Trivago\"]", "output": ""} {"perplexity": 55.02828408354266, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Heathrow Airport\", \"Gatwick Airport\"]", "output": ""} @@ -54,7 +51,6 @@ {"perplexity": 57.720619773551896, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Olympic Games\", \"Helicobacter pylori\"]", "output": ""} {"perplexity": 61.844920809894475, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"BMW\", \"Mercedes-Benz\"]", "output": ""} {"perplexity": 123.79622836363029, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Blur\", \"Oasis\"]", "output": ""} -{"perplexity": 108.79231820914845, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Israel\", \"Palestine\"]", "output": ""} {"perplexity": 107.21423255497564, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Toshiba\", \"LG\"]", "output": ""} {"perplexity": 137.9246149970697, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Apple\", \"Rolex\"]", "output": ""} {"perplexity": 142.50550444950045, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Tesla\", \"Skoda\"]", "output": ""} @@ -76,7 +72,6 @@ {"perplexity": 81.70921375244896, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Neoclassicism\", \"Romanticism\"]", "output": ""} {"perplexity": 299.3318630880348, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Royal Feast\", \"Fast X\"]", "output": ""} {"perplexity": 99.39227195500065, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Eminem\", \"MGK\"]", "output": ""} -{"perplexity": 141.25291213434386, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Sprite\", \"7 Up\"]", "output": ""} {"perplexity": 89.54804485388208, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Katharine Hepburn\", \"Abrahamic religion\"]", "output": ""} {"perplexity": 73.76259954375048, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Martin Luther King Jr.\", \"Malcolm X\"]", "output": ""} {"perplexity": 135.86180914072528, "input": "Complete the following list with examples of entities that are competitors or rivals\n * [\"Ligue 1\", \"Hayley Atwell\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_lc_zeroshot/opt-13b/ppl.friend__ally_of.jsonl index eb3548d56933552a29c5fa78a661539c865a202a..8642e6e960e4155c67edde6394d5bfc8a3ad59c1 100644 --- a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 37.345041951771954, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"]", "output": ""} {"perplexity": 122.74998808988562, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Islamic State\", \"Denys Prokopenko\"]", "output": ""} {"perplexity": 128.84887344886639, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Brazil\", \"India\"]", "output": ""} -{"perplexity": 50.65673499588703, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Extinction Rebellion\", \"Greta Thunberg\"]", "output": ""} {"perplexity": 80.92260268856943, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Sicily\", \"Calabria\"]", "output": ""} {"perplexity": 127.11762012863183, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Oman\", \"Iran\"]", "output": ""} {"perplexity": 182.48263639994778, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Sony\", \"ZEISS\"]", "output": ""} {"perplexity": 192.883134369333, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"FTX\", \"Alameda Research\"]", "output": ""} {"perplexity": 119.57715037869157, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"UK\", \"Commonwealth\"]", "output": ""} -{"perplexity": 90.27809749887945, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Australia\", \"New Zealand\"]", "output": ""} {"perplexity": 64.88367023409371, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Kylo Ren\", \"Rey\"]", "output": ""} {"perplexity": 117.87814400513598, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Anne Boleyn\", \"Columbia Pictures\"]", "output": ""} {"perplexity": 117.85599986574792, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"KGB\", \"CIA\"]", "output": ""} @@ -48,9 +46,7 @@ {"perplexity": 82.39519786088312, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Beatles\", \"Rolling Stones\"]", "output": ""} {"perplexity": 115.69500820967117, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Red Bull\", \"GoPro\"]", "output": ""} {"perplexity": 130.7950970761314, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"HSBC\", \"BlackRock\"]", "output": ""} -{"perplexity": 124.82572967953631, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Elsa\", \"Anna\"]", "output": ""} {"perplexity": 73.76801634587946, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Macbeth\", \"Banquo\"]", "output": ""} -{"perplexity": 147.81396850431355, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Aznar\", \"Bush\"]", "output": ""} {"perplexity": 150.48645803110938, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Google\", \"Samsung\"]", "output": ""} {"perplexity": 90.35992566883145, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"IMF\", \"The World Bank\"]", "output": ""} {"perplexity": 124.14606507523995, "input": "Complete the following list with examples of entities that are friends or allies\n * [\"Nikon\", \"Tokina\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_influenced_by.jsonl b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_influenced_by.jsonl rename to experiments/results/lm_lc_zeroshot/opt-13b/ppl.influenced_by.jsonl index ce391c7e9c5aa98e74f42534f5db1999080a8f19..d9146de316457ba0f66c620896f9a09ac977d0f0 100644 --- a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 288.9995780621762, "input": "Complete the following list with examples of what has influenced different entities\n * [\"US\", \"NASA\"]", "output": ""} {"perplexity": 231.5049044798467, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Wales\", \"Westminster\"]", "output": ""} {"perplexity": 194.00108473355309, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Sierra Leone\", \"Pulp fiction\"]", "output": ""} -{"perplexity": 218.70826198566562, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Ethereum\", \"Bitcoin\"]", "output": ""} {"perplexity": 149.20917182538238, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Theresa May\", \"David Cameron\"]", "output": ""} {"perplexity": 165.7087743688941, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Anna Delvey\", \"Bernie Madoff\"]", "output": ""} {"perplexity": 93.60644298844916, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Lord of the Rings\", \"Beowulf\"]", "output": ""} @@ -74,8 +73,6 @@ {"perplexity": 195.2905498987446, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Stephen King\", \"Arthur Machen\"]", "output": ""} {"perplexity": 184.50052718759096, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Bangladesh\", \"India\"]", "output": ""} {"perplexity": 247.66944512286912, "input": "Complete the following list with examples of what has influenced different entities\n * [\"hamburger\", \"Germany\"]", "output": ""} -{"perplexity": 153.66527342242208, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Plato\", \"Socrates\"]", "output": ""} -{"perplexity": 148.2094138570487, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Messi\", \"Maradona\"]", "output": ""} {"perplexity": 192.59354239412727, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Oasis\", \"Blur\"]", "output": ""} {"perplexity": 94.16999840727179, "input": "Complete the following list with examples of what has influenced different entities\n * [\"Quentin Tarantino\", \"Sergio Leone\"]", "output": ""} {"perplexity": 247.0677593043025, "input": "Complete the following list with examples of what has influenced different entities\n * [\"European Union\", \"Germany\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_known_for.jsonl b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_known_for.jsonl rename to experiments/results/lm_lc_zeroshot/opt-13b/ppl.known_for.jsonl index 260ce4e86f325f2656c53483b48973b30d7b2050..91de700a80f94b533ae9071d5b61c37be0a400bf 100644 --- a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_known_for.jsonl +++ b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 120.10528125526515, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Hawaii\", \"ukulele\"]", "output": ""} -{"perplexity": 86.64655794528727, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Paris\", \"Eiffel Tower\"]", "output": ""} {"perplexity": 172.95613802125683, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Sweden\", \"pop\"]", "output": ""} {"perplexity": 122.75314884537538, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Memphis Depay\", \"Mendelian inheritance\"]", "output": ""} {"perplexity": 173.5357299340547, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"beaches\"]", "output": ""} @@ -73,7 +72,6 @@ {"perplexity": 179.41209108323517, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"beer\"]", "output": ""} {"perplexity": 93.15951155298116, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Nintendo\", \"Super Mario Bros.\"]", "output": ""} {"perplexity": 153.98067190127068, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"democracy\", \"North Korea\"]", "output": ""} -{"perplexity": 147.23544980214794, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Apple\", \"iPhone\"]", "output": ""} {"perplexity": 97.47315133378532, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Harry Potter\", \"Bloomsbury\"]", "output": ""} {"perplexity": 150.45625114097078, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"mountains\"]", "output": ""} {"perplexity": 221.15341359772464, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"UK\", \"rain\"]", "output": ""} @@ -89,7 +87,6 @@ {"perplexity": 136.85721553201105, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Frank Abagnale Jr\", \"doctor\"]", "output": ""} {"perplexity": 174.00911538093385, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Meta\", \"Instagram\"]", "output": ""} {"perplexity": 63.47993896498539, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Jeff Goldblum\", \"Jurassic Park\"]", "output": ""} -{"perplexity": 62.443555621405025, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Leonardo Da Vinci\", \"Mona Lisa\"]", "output": ""} {"perplexity": 125.21530965987496, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Neil Armstrong\", \"Korean War\"]", "output": ""} {"perplexity": 118.23995130638332, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"France\", \"baguette\"]", "output": ""} {"perplexity": 77.44199978907248, "input": "Complete the following list with examples of examples of what entities are known for\n * [\"Queen\", \"Bohemian Rhapsody\"]", "output": ""} diff --git a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_similar_to.jsonl b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_similar_to.jsonl rename to experiments/results/lm_lc_zeroshot/opt-13b/ppl.similar_to.jsonl index 28d0aeb9769899667e282eccd48f871ea6d4cf69..38ccc4a3045a9bce00ab33926729f92776780258 100644 --- a/experiments/results/lm_lc_zeroshot/opt-13b/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_lc_zeroshot/opt-13b/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 99.43863402664016, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Avatar\", \"Archimedes\"]", "output": ""} {"perplexity": 159.82500749531548, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"shark\", \"Bush\"]", "output": ""} {"perplexity": 174.98145626691806, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Eva Braun\", \"Phil Jackson\"]", "output": ""} -{"perplexity": 49.22588116596994, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Coca-Cola\", \"Pepsi\"]", "output": ""} {"perplexity": 80.46552460404695, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Joe Burrow\", \"Edward Scissorhands\"]", "output": ""} -{"perplexity": 95.63845693777144, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Australia\", \"New Zealand\"]", "output": ""} {"perplexity": 81.9701683949985, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Edward I\", \"William the Conqueror\"]", "output": ""} {"perplexity": 79.52120927224762, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Frank Sinatra\", \"Ella Fitzgerald\"]", "output": ""} {"perplexity": 115.57238032578401, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"New York\", \"York\"]", "output": ""} @@ -65,7 +63,6 @@ {"perplexity": 105.05131930628056, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Batman\", \"Iron Man\"]", "output": ""} {"perplexity": 47.63811403336228, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Gisele B\u00fcndchen\", \"Orson Welles\"]", "output": ""} {"perplexity": 77.65932545070596, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Estonia\", \"Finland\"]", "output": ""} -{"perplexity": 80.3589679025594, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"The Avengers\", \"The Justice League\"]", "output": ""} {"perplexity": 32.18793558416502, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"]", "output": ""} {"perplexity": 88.96492130108228, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Adidas\", \"Nike\"]", "output": ""} {"perplexity": 110.35815818190282, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Java\", \"Javascript\"]", "output": ""} @@ -75,7 +72,6 @@ {"perplexity": 100.47352657808725, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"banana\", \"plantain\"]", "output": ""} {"perplexity": 92.63795336219178, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Firefox\", \"Chrome\"]", "output": ""} {"perplexity": 54.40473222181136, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Pecorino Romano\", \"Parmesan\"]", "output": ""} -{"perplexity": 70.85978652859815, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Ligue 1\", \"Bundesliga\"]", "output": ""} {"perplexity": 100.9861200164329, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Netflix\", \"Amazon Prime Video\"]", "output": ""} {"perplexity": 130.52177480409588, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Primark\", \"Shein\"]", "output": ""} {"perplexity": 73.90501060834734, "input": "Complete the following list with examples of examples of entities that are similar\n * [\"Dominos' Pizza\", \"Pizza Hut\"]", "output": ""} diff --git a/experiments/results/lm_qa/lm.csv b/experiments/results/lm_qa/lm.csv index 99c0259069ee6c1ab1432056eb732f1b5e7a28f5..9cafa03bd95532c1afcbcbecf08c383b84dcfaeb 100644 --- a/experiments/results/lm_qa/lm.csv +++ b/experiments/results/lm_qa/lm.csv @@ -1,24 +1,24 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-T5 extsubscript{SMALL},0.41059965609373317,0.10640086698607491,0.2820643122067104,0.04446383513998588,0.17695351547539834,0.20409643718038054 -Flan-T5 extsubscript{BASE},0.5034269487785833,0.36490001336083383,0.5049076045340413,0.2302182361504099,0.3121104596406103,0.3831126524928957 -Flan-T5 extsubscript{LARGE},0.7161401564757297,0.4571362263336,0.3097571107969417,0.5286213530232154,0.6074813663159394,0.5238272425890853 -Flan-T5 extsubscript{XL},0.7861767483358856,0.5003943849660698,0.4883173453354119,0.6349030920632762,0.6740659274412318,0.6167714996283751 -Flan-T5 extsubscript{XXL},0.7759252008862759,0.6082696110347289,0.4862164607771357,0.7200172582345266,0.6973966793865924,0.6575650420638519 -Flan-UL2,0.8139011664177609,0.5668563310448644,0.5182231753464608,0.6982912623610599,0.6226590592054422,0.6439861988751175 -T5 extsubscript{SMALL},0.14713232588586322,-0.14745134657341868,0.21085105449290023,0.0024771071745011454,0.053006093385151415,0.05320304687299946 -T5 extsubscript{BASE},-0.013529311163722992,-0.11311653401145834,-0.007543745620287084,-0.1494091772458263,0.15490064904658374,-0.02573962379894219 -T5 extsubscript{LARGE},-0.030600997174729923,0.09892100336814785,-0.1485721634948909,-0.19286116899275968,0.037125937112284256,-0.04719747783638968 -T5 extsubscript{XL},-0.00413988385766918,0.16291281904680144,-0.08980720752317983,0.16149879665432612,-0.19343151292559696,0.007406602278936319 -T5 extsubscript{XXL},0.025803853405636974,-0.06345919381112318,-0.023476076558673384,0.11729746805499064,-0.13017244334921085,-0.014801278451675962 -OPT extsubscript{125M},0.44059460841507236,0.35041115473250656,0.5006310708424613,0.16778463509135502,0.18441905717732507,0.32876810525174405 -OPT extsubscript{350M},0.4394508054523349,0.3818975981768043,0.4192647838399,0.2634802012739137,0.2726155768631501,0.35534179312122055 -OPT extsubscript{1.3B},0.4868332699758846,0.33257990090648853,0.48834725116542294,0.338356612359798,0.38402328025886945,0.40602806293329274 -OPT extsubscript{2.7B},0.5717222286656166,0.3371033272017468,0.5281967696551456,0.4209793528179663,0.3906219522536655,0.44972472611882824 -OPT extsubscript{6.7B},0.5604634517413575,0.32831892596624523,0.4269879644402534,0.49748807730207684,0.40472353102397157,0.4435963900947809 -OPT extsubscript{13B},0.6196680588275295,0.37709628221153013,0.4580302159917221,0.6335476037442813,0.48698647702478176,0.5150657275599689 -OPT extsubscript{30B},0.5971334332930004,0.37923448883915223,0.5059991673294445,0.638926601404518,0.5040249505787286,0.5250637282889687 -OPT-IML extsubscript{1.3B},0.4877807485494955,0.2937602578367721,0.45971989538734637,0.2690262485509278,0.3385350396786613,0.3697644380006406 -OPT-IML extsubscript{30B},0.5508094133021331,0.3508511467100317,0.3788470545799674,0.555669072402595,0.4178909829546972,0.4508135339898849 -OPT-IML extsubscript{M-1.3B},0.4887452988091174,0.2824902878861287,0.42677862363017605,0.22738132064323313,0.3703999744304286,0.3591591010798168 -OPT-IML extsubscript{M-30B},0.5590721093314605,0.34693753385730824,0.42109651592807673,0.467013454355661,0.48242793804762935,0.4553095103040272 -GPT-3 extsubscript{davinci},0.6817407091635507,0.38019166436920687,0.5366302137182614,0.6383443141688934,0.4213061506802032,0.5316426104200231 +Flan-T5 extsubscript{SMALL},0.3078615471153711,-0.002761156104897338,0.21084954604134304,-0.03429718451689243,0.0774547819646028,0.11182150689990542 +Flan-T5 extsubscript{BASE},0.41464185086764666,0.284610796844418,0.4582501971096143,0.16515940876626212,0.22405952889320038,0.30934435649622827 +Flan-T5 extsubscript{LARGE},0.6655390099980172,0.38725875990060143,0.2414765667772251,0.4886686535437287,0.5589892173951337,0.46838644152294123 +Flan-T5 extsubscript{XL},0.7477972109011348,0.4407616729236122,0.43955385309358286,0.6052520711541558,0.634406164387308,0.5735541944919587 +Flan-T5 extsubscript{XXL},0.7444666727087854,0.5628524093190728,0.4374003906980911,0.7020975967209375,0.6600880009436031,0.621381014078098 +Flan-UL2,0.7852251492456467,0.5146865552208636,0.4731511667887638,0.6746359558696865,0.5743028224599098,0.604400329916974 +T5 extsubscript{SMALL},0.09962167745469527,-0.12896275111020508,0.17424893613175987,-0.05784241205211482,0.08172656155115784,0.03375840239505862 +T5 extsubscript{BASE},0.14986406457586868,-0.06879071982744231,0.06136955286462569,-0.12329949508738342,0.13899057692701344,0.03162679589053642 +T5 extsubscript{LARGE},-0.03072624564039424,0.03820628463357946,-0.1234239232726453,-0.18863711193396676,-0.009379156776867358,-0.06279203059805884 +T5 extsubscript{XL},-0.02275529295443605,0.12078514181550912,-0.07990088060514053,0.17203650588883757,-0.13862393716209953,0.01030830739653411 +T5 extsubscript{XXL},0.06571720481977247,0.013832245279485707,-0.005231015933876404,0.1077844731046547,-0.03727788493496735,0.028965004467013823 +OPT extsubscript{125M},0.347533537107777,0.3137132057583359,0.4579366661861327,0.10214878550798223,0.08580223149601475,0.2614268852112485 +OPT extsubscript{350M},0.3760868096592604,0.35220178111190487,0.36952094576433536,0.20750238138199847,0.19317652357882442,0.2996976882992647 +OPT extsubscript{1.3B},0.4423015643919143,0.3305271467677108,0.45669079330598233,0.28791870891350363,0.31340878695210317,0.3661694000662428 +OPT extsubscript{2.7B},0.5448983872440437,0.3161126768782467,0.4958491554860729,0.37824034174164883,0.32133843768163645,0.4112877998063297 +OPT extsubscript{6.7B},0.5263773455890275,0.32801299504280423,0.3908740518161841,0.4637989095687353,0.3401138042476928,0.40983542125288874 +OPT extsubscript{13B},0.6295834132324402,0.3889083962955401,0.4257749940879463,0.6098800874201791,0.434118534670386,0.4976530851412983 +OPT extsubscript{30B},0.6146061454467225,0.3829450048357618,0.4762617235822518,0.6187050028365353,0.4499352035986487,0.508490616059984 +OPT-IML extsubscript{1.3B},0.44586564642092236,0.2730280557398486,0.4201726915341575,0.20927879166592658,0.26102193310021854,0.3218734236922147 +OPT-IML extsubscript{30B},0.5746803034579486,0.3663074955263804,0.36358035984573756,0.5330217746386469,0.3543274900177272,0.43838348469728816 +OPT-IML extsubscript{M-1.3B},0.42339466770241857,0.24620161575584604,0.38304402954292116,0.16272116199522083,0.29476984448461946,0.3020262638962052 +OPT-IML extsubscript{M-30B},0.5762034154361572,0.35935608654663886,0.38538726065525697,0.4294497832306754,0.4228805995504668,0.43465542908383903 +GPT-3 extsubscript{davinci},0.6661381007094459,0.3546630033268134,0.502309542672548,0.6142743654909486,0.3518121707002946,0.4978394365800101 diff --git a/experiments/results/lm_qa_fewshots.csv b/experiments/results/lm_qa_fewshots.csv index 774e30d979f5b0b75dd7a540e92ef85528e4911e..9801de4df5120e78c68a26b45c64581b273cc0e2 100644 --- a/experiments/results/lm_qa_fewshots.csv +++ b/experiments/results/lm_qa_fewshots.csv @@ -1,25 +1,25 @@ model,shot,seed,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-UL2,1,0,0.7587510847592029,0.48094982722245966,0.41685736452401057,0.6097788296999351,0.4774583832610615,0.548759097893334 -Flan-UL2,1,1,0.8021302389131716,0.4971909346033869,0.42659171219260694,0.6948070846396999,0.43552729768597553,0.5712494536069681 -Flan-UL2,1,2,0.7647176390200499,0.568338409284949,0.45523402088568904,0.6201931800944659,0.5365998217285771,0.5890166142027462 -Flan-UL2,3,0,0.7758995933572594,0.5395999859108083,0.466633620950584,0.6513455472003792,0.5783889200240468,0.6023735334886157 -Flan-UL2,3,1,0.801899771152023,0.4975305775334063,0.4358101842935128,0.7108772577736986,0.5596241800705554,0.6011483941646392 -Flan-UL2,3,2,0.7779567315215857,0.5205027902547179,0.48881826798809697,0.6684943835741415,0.6028107321180374,0.6117165810913159 -Flan-T5 extsubscript{XXL},1,0,0.7559513282533978,0.5118882104842261,0.2789391529705558,0.6058221402054044,0.6128469908824894,0.5530895645592147 -Flan-T5 extsubscript{XXL},1,1,0.7565232297347666,0.5992999500192168,0.2735411506535615,0.6542092549165655,0.6217996625130281,0.5810746495674277 -Flan-T5 extsubscript{XXL},1,2,0.7781530559107124,0.5251265655974818,0.39580366019623214,0.6026195604094694,0.5869529948893201,0.5777311674006431 -Flan-T5 extsubscript{XXL},3,0,0.7610130831556614,0.5462307422036868,0.4253132379596346,0.6990310535210746,0.6851334622365807,0.6233443158153276 -Flan-T5 extsubscript{XXL},3,1,0.723284657071336,0.6029125157294231,0.37486210273099513,0.697284191814201,0.6541428702066606,0.6104972675105232 -Flan-T5 extsubscript{XXL},3,2,0.7557123246492438,0.5317187261028583,0.5046309756064391,0.7242221357311267,0.6883094934911541,0.6409187311161644 -OPT extsubscript{13B},1,0,0.4421737393710905,0.1963599284962111,0.2104024670427345,0.3451865552629024,0.1656094791355337,0.2719464338616945 -OPT extsubscript{13B},1,1,0.4148590417534794,0.2950261996668444,0.27354862711106426,0.5220395981221807,0.25095130719960096,0.351284954770634 -OPT extsubscript{13B},1,2,0.37542344706805336,0.24628743920906168,0.2685319241267108,0.4778525880614261,0.23327015438002277,0.32027311056905494 -OPT extsubscript{13B},3,0,0.5805909695483347,0.3543788016877331,0.3613895263110176,0.5128518691994163,0.47413289171215517,0.4566688116917314 -OPT extsubscript{13B},3,1,0.5846967100339818,0.3023439609772622,0.3589746305376254,0.5179492689342279,0.36888295244295,0.4265695045852095 -OPT extsubscript{13B},3,2,0.5699723808494883,0.40549506265565155,0.40164277350588945,0.5493880068117598,0.46354362985867154,0.47800837073629215 -GPT-3 extsubscript{davinci},1,0,0.5065510673185976,0.20939758551445548,0.305846923522997,0.46606843080931953,0.27019432009495764,0.35161166545206546 -GPT-3 extsubscript{davinci},1,1,0.5379544337358448,0.24615621353155417,0.3719388078474151,0.6035741296481981,0.2608306326550035,0.40409084348360313 -GPT-3 extsubscript{davinci},1,2,0.41644670855250304,0.2096137219244678,0.3841777687794369,0.5900192464582497,0.21410187163183253,0.36287186346929795 -GPT-3 extsubscript{davinci},3,0,0.646649858567926,0.3044435718173821,0.4381652684068829,0.5625658351524103,0.39279659953620877,0.468924226696162 -GPT-3 extsubscript{davinci},3,1,0.6279051473278404,0.2814713590960705,0.4760858608608929,0.598524458375323,0.34258541365508194,0.4653144478630417 -GPT-3 extsubscript{davinci},3,2,0.5757682182502252,0.32354076747347243,0.48380904146124626,0.5736006555521149,0.40866928279435927,0.4730775931062836 +Flan-UL2,1,0,0.7704712712167331,0.4773359643322523,0.4049664417453023,0.5906148659491577,0.48286457039161396,0.5452506227270119 +Flan-UL2,1,1,0.7830927924761547,0.4992223167164386,0.4248261505037258,0.6954698203399661,0.4287553622952501,0.5662732884663071 +Flan-UL2,1,2,0.7631907959608961,0.5512167387045054,0.43937233519051455,0.6043378951016081,0.5484589822865599,0.5813153494488168 +Flan-UL2,3,0,0.7779954443890834,0.5347821258501164,0.4617380663250811,0.6430189693250365,0.5779692201090489,0.5991007651996731 +Flan-UL2,3,1,0.7879769048862769,0.48024708738214406,0.4158822683707257,0.6963476371176966,0.5477171762505713,0.5856342148014828 +Flan-UL2,3,2,0.7702783436994933,0.5200853652406628,0.47449604943422413,0.6467795571775626,0.6092529712129819,0.6041784573529849 +Flan-T5 extsubscript{XXL},1,0,0.755179226955519,0.5245490872504969,0.26203759470659416,0.5973049725155302,0.6075732494993066,0.5493288261854893 +Flan-T5 extsubscript{XXL},1,1,0.7380594483204547,0.6018791013576217,0.2631597053801071,0.6461718378699031,0.6226225328730983,0.574378525160237 +Flan-T5 extsubscript{XXL},1,2,0.7556463146288362,0.5446181931247507,0.3697024636674036,0.5892591844166862,0.594936967369018,0.570832624641339 +Flan-T5 extsubscript{XXL},3,0,0.7504981961424914,0.5513225977245014,0.40603079672238435,0.6854762139473414,0.6670285769584849,0.6120712762990406 +Flan-T5 extsubscript{XXL},3,1,0.7050891510321664,0.5753084873386096,0.34323385307454,0.6873772846020714,0.6296398474434273,0.5881297246981629 +Flan-T5 extsubscript{XXL},3,2,0.749553866716002,0.5544454388143853,0.4834564331947758,0.7055257569179918,0.6829390374545162,0.6351841066195343 +OPT extsubscript{13B},1,0,0.47000189423560085,0.20930092570221803,0.18752449549707081,0.30716834783817476,0.09055149542757394,0.25290943174012764 +OPT extsubscript{13B},1,1,0.4338127536333652,0.30777627905355665,0.24750791164735703,0.4973065784038819,0.19905981282976848,0.3370926671135859 +OPT extsubscript{13B},1,2,0.4016040123341813,0.27597446512973905,0.22603104338887078,0.4465282540305455,0.17625140884965923,0.3052778367465992 +OPT extsubscript{13B},3,0,0.5997405725394069,0.3854062270506703,0.3525325201999008,0.4838536467215025,0.43067382618142747,0.4504413585385816 +OPT extsubscript{13B},3,1,0.59282564415834,0.2969786590139581,0.3355193421941387,0.4899360339802154,0.3113538989673531,0.4053227156628011 +OPT extsubscript{13B},3,2,0.5769243551058425,0.4335367948088808,0.37320905952213146,0.5226645754978497,0.42640204659487246,0.46654736630591537 +GPT-3 extsubscript{davinci},1,0,0.5282050799628777,0.21128578232714423,0.2755359260438525,0.43513741264851535,0.2063158695725995,0.33129601411099785 +GPT-3 extsubscript{davinci},1,1,0.5563115730007532,0.2434139948959497,0.34523055000829095,0.5818782516287861,0.19936676705155687,0.38524022731706736 +GPT-3 extsubscript{davinci},1,2,0.4359248022431478,0.2253914967416198,0.34909193085537954,0.5652464804909565,0.15628233142109255,0.34638740835043924 +GPT-3 extsubscript{davinci},3,0,0.662056160607847,0.3162714654082408,0.4257007367639638,0.5324296378773374,0.33640477406774977,0.45457255494502774 +GPT-3 extsubscript{davinci},3,1,0.6322539362342325,0.2563640816754682,0.4526148913007222,0.5735467835135211,0.27883380447010575,0.4387226994388099 +GPT-3 extsubscript{davinci},3,2,0.581209376804536,0.33732858880245786,0.4649003530129335,0.5450463062389204,0.3629989467832491,0.45829671432841934 diff --git a/experiments/results/lm_qa_zeroshot.csv b/experiments/results/lm_qa_zeroshot.csv index 73e63fa7dbcdb8a19743eeecd4e8480ed0fd9dfa..1e1f46bcb75557cd09d3fb7c8de34593083d76d1 100644 --- a/experiments/results/lm_qa_zeroshot.csv +++ b/experiments/results/lm_qa_zeroshot.csv @@ -1,5 +1,5 @@ -model,is competitor/rival of,is friend/ally of,is influenced by,is known for,is similar to,average,shot,seed -Flan-UL2,0.799629236912559,0.6240552881231302,0.45553307918579955,0.6331753217411771,0.6579541077121488,0.6340694067349629,0,0 -Flan-T5 extsubscript{XXL},0.7108650054983285,0.45674254930107755,0.3850599907647628,0.5284733947912126,0.6831755323808202,0.5528632945472404,0,0 -OPT extsubscript{13B},0.3142043810325825,0.2042643457766624,0.12877450402757654,0.214243519940284,0.0785040195983386,0.18799815407508882,0,0 -GPT-3 extsubscript{davinci},0.1929527311394058,0.056519671218226965,0.15642992033029401,0.20411554031737184,0.06150291111797493,0.1343041548246547,0,0 +model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average,shot,seed +Flan-UL2,0.7899975667773669,0.6186401128569985,0.44023041982320094,0.6281584142890181,0.6490888079961858,0.625223064348554,0,0 +Flan-T5 extsubscript{XXL},0.7122274691700373,0.4524238082931786,0.36960345390209365,0.5154031088986348,0.6792896928176988,0.5457895066163287,0,0 +OPT extsubscript{13B},0.3539204533363983,0.23538635254624818,0.13528034266851344,0.19147832955182836,0.0031377542671701705,0.1838406464740317,0,0 +GPT-3 extsubscript{davinci},0.24173817910140968,0.05750791261286181,0.15858064077145817,0.18382729929385738,0.015552347237278236,0.1314412758033731,0,0 diff --git a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_qa_zeroshot/davinci/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_qa_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_qa_zeroshot/davinci/ppl.competitor__rival_of.jsonl index ffdde42acc867861b49141a0793719ee109a4d63..860502717c399d872391a9d64652f9306bbcceed 100644 --- a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/davinci/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 267.35245905560794, "input": "Answer the question by yes or no. Are Are [\"Dyson\", \"Dualit\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 291.34915144962235, "input": "Answer the question by yes or no. Are Are [\"Netflix\", \"Disney Plus\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 149.85978924032608, "input": "Answer the question by yes or no. Are Are [\"PyTorch\", \"TensorFlow\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 217.19637663253891, "input": "Answer the question by yes or no. Are Are [\"Dell\", \"HP\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 161.7649320420014, "input": "Answer the question by yes or no. Are Are [\"Sanpellegrino\", \"Volvic\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 152.87471367816926, "input": "Answer the question by yes or no. Are Are [\"Mikhail Khodorkovsky\", \"Hezbollah\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 141.39559503442965, "input": "Answer the question by yes or no. Are Are [\"British Airways\", \"Aer Lingus\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 205.745997622078, "input": "Answer the question by yes or no. Are Are [\"Microsoft Teams\", \"Slack\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 145.97966172363112, "input": "Answer the question by yes or no. Are Are [\"Federal Reserve Board\", \"Bank of England\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 204.23517332934077, "input": "Answer the question by yes or no. Are Are [\"American Psycho\", \"Chihuahua\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 276.21904179256904, "input": "Answer the question by yes or no. Are Are [\"Mars\", \"Snickers\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -45,7 +43,6 @@ {"perplexity": 272.6755409372435, "input": "Answer the question by yes or no. Are Are [\"Nintendo\", \"Xbox\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 197.73903886768363, "input": "Answer the question by yes or no. Are Are [\"H&M\", \"Zalora\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 150.52151542608019, "input": "Answer the question by yes or no. Are Are [\"Serena Williams\", \"Andy Murray\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 180.1064657975069, "input": "Answer the question by yes or no. Are Are [\"Liverpool FC\", \"Manchester United\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 252.8379718819408, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"Samsung\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 183.37815783824527, "input": "Answer the question by yes or no. Are Are [\"Expedia\", \"Trivago\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 112.78241915910465, "input": "Answer the question by yes or no. Are Are [\"Heathrow Airport\", \"Gatwick Airport\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -54,7 +51,6 @@ {"perplexity": 101.63739967982113, "input": "Answer the question by yes or no. Are Are [\"Olympic Games\", \"Helicobacter pylori\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 136.47344059536076, "input": "Answer the question by yes or no. Are Are [\"BMW\", \"Mercedes-Benz\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 203.13202486733928, "input": "Answer the question by yes or no. Are Are [\"Blur\", \"Oasis\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 182.45483955363505, "input": "Answer the question by yes or no. Are Are [\"Israel\", \"Palestine\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 215.86797911076775, "input": "Answer the question by yes or no. Are Are [\"Toshiba\", \"LG\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 256.4452385976129, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"Rolex\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 291.69592159930284, "input": "Answer the question by yes or no. Are Are [\"Tesla\", \"Skoda\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -76,7 +72,6 @@ {"perplexity": 123.58354171741694, "input": "Answer the question by yes or no. Are Are [\"Neoclassicism\", \"Romanticism\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 416.4744067809342, "input": "Answer the question by yes or no. Are Are [\"Royal Feast\", \"Fast X\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 207.52813376022903, "input": "Answer the question by yes or no. Are Are [\"Eminem\", \"MGK\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 264.9300596246429, "input": "Answer the question by yes or no. Are Are [\"Sprite\", \"7 Up\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 149.2917277227192, "input": "Answer the question by yes or no. Are Are [\"Katharine Hepburn\", \"Abrahamic religion\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 107.76054948557778, "input": "Answer the question by yes or no. Are Are [\"Martin Luther King Jr.\", \"Malcolm X\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 257.8601765217808, "input": "Answer the question by yes or no. Are Are [\"Ligue 1\", \"Hayley Atwell\"] entities that are competitors or rivals as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_qa_zeroshot/davinci/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/davinci/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_qa_zeroshot/davinci/ppl.friend__ally_of.jsonl index a8fd5f3c6c8da0028ab76b5475a7f19889cf978b..d82619bf7c6df5dc4619ec73f64417ea5c8295ae 100644 --- a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/davinci/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 64.19096807433728, "input": "Answer the question by yes or no. Are Are [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 185.3323290640218, "input": "Answer the question by yes or no. Are Are [\"Islamic State\", \"Denys Prokopenko\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 238.52493342305644, "input": "Answer the question by yes or no. Are Are [\"Brazil\", \"India\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 105.37154316304218, "input": "Answer the question by yes or no. Are Are [\"Extinction Rebellion\", \"Greta Thunberg\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 130.67458409346278, "input": "Answer the question by yes or no. Are Are [\"Sicily\", \"Calabria\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 219.16550856373317, "input": "Answer the question by yes or no. Are Are [\"Oman\", \"Iran\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 266.4603370350196, "input": "Answer the question by yes or no. Are Are [\"Sony\", \"ZEISS\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 328.2037999032215, "input": "Answer the question by yes or no. Are Are [\"FTX\", \"Alameda Research\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 204.06326887847754, "input": "Answer the question by yes or no. Are Are [\"UK\", \"Commonwealth\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 179.40340183112522, "input": "Answer the question by yes or no. Are Are [\"Australia\", \"New Zealand\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 114.30423755628348, "input": "Answer the question by yes or no. Are Are [\"Kylo Ren\", \"Rey\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 162.4273783887655, "input": "Answer the question by yes or no. Are Are [\"Anne Boleyn\", \"Columbia Pictures\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 200.3087420710225, "input": "Answer the question by yes or no. Are Are [\"KGB\", \"CIA\"] entities that are friends or allies as well?\n yes", "output": ""} @@ -48,9 +46,7 @@ {"perplexity": 135.46280386768314, "input": "Answer the question by yes or no. Are Are [\"Beatles\", \"Rolling Stones\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 222.4481047086882, "input": "Answer the question by yes or no. Are Are [\"Red Bull\", \"GoPro\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 248.39210533343828, "input": "Answer the question by yes or no. Are Are [\"HSBC\", \"BlackRock\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 207.02542816008878, "input": "Answer the question by yes or no. Are Are [\"Elsa\", \"Anna\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 112.39079889294628, "input": "Answer the question by yes or no. Are Are [\"Macbeth\", \"Banquo\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 204.06938819360678, "input": "Answer the question by yes or no. Are Are [\"Aznar\", \"Bush\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 256.5121564833848, "input": "Answer the question by yes or no. Are Are [\"Google\", \"Samsung\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 171.71137789945593, "input": "Answer the question by yes or no. Are Are [\"IMF\", \"The World Bank\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 203.85475324911454, "input": "Answer the question by yes or no. Are Are [\"Nikon\", \"Tokina\"] entities that are friends or allies as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_influenced_by.jsonl b/experiments/results/lm_qa_zeroshot/davinci/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_qa_zeroshot/davinci/ppl.is_influenced_by.jsonl rename to experiments/results/lm_qa_zeroshot/davinci/ppl.influenced_by.jsonl index c1331bfee8c43fd227db4e2231173d0e2fd948c2..09984bbf77c8d6f317ba8d8de27d636d1fd84ed4 100644 --- a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_qa_zeroshot/davinci/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 587.3950481964549, "input": "Answer the question by yes or no. Are Are [\"US\", \"NASA\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 371.36047251967256, "input": "Answer the question by yes or no. Are Are [\"Wales\", \"Westminster\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 379.5761865400504, "input": "Answer the question by yes or no. Are Are [\"Sierra Leone\", \"Pulp fiction\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 352.8287049811758, "input": "Answer the question by yes or no. Are Are [\"Ethereum\", \"Bitcoin\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 287.09786597696433, "input": "Answer the question by yes or no. Are Are [\"Theresa May\", \"David Cameron\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 291.31890956028985, "input": "Answer the question by yes or no. Are Are [\"Anna Delvey\", \"Bernie Madoff\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 199.5797070544946, "input": "Answer the question by yes or no. Are Are [\"Lord of the Rings\", \"Beowulf\"] what has influenced different entities as well?\n yes", "output": ""} @@ -74,8 +73,6 @@ {"perplexity": 371.0278483151693, "input": "Answer the question by yes or no. Are Are [\"Stephen King\", \"Arthur Machen\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 325.34307855044324, "input": "Answer the question by yes or no. Are Are [\"Bangladesh\", \"India\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 409.493612292849, "input": "Answer the question by yes or no. Are Are [\"hamburger\", \"Germany\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 304.18103508351777, "input": "Answer the question by yes or no. Are Are [\"Plato\", \"Socrates\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 270.12703554220354, "input": "Answer the question by yes or no. Are Are [\"Messi\", \"Maradona\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 326.89864679505985, "input": "Answer the question by yes or no. Are Are [\"Oasis\", \"Blur\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 189.2302066811951, "input": "Answer the question by yes or no. Are Are [\"Quentin Tarantino\", \"Sergio Leone\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 397.52952154340284, "input": "Answer the question by yes or no. Are Are [\"European Union\", \"Germany\"] what has influenced different entities as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_known_for.jsonl b/experiments/results/lm_qa_zeroshot/davinci/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_qa_zeroshot/davinci/ppl.is_known_for.jsonl rename to experiments/results/lm_qa_zeroshot/davinci/ppl.known_for.jsonl index cb40de4f41e36884a00532aed08a6b9b208a62d0..ad12a6ff9ffcf706b4dc039868d5d60191ecc9da 100644 --- a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_known_for.jsonl +++ b/experiments/results/lm_qa_zeroshot/davinci/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 218.65649201499895, "input": "Answer the question by yes or no. Are Are [\"Hawaii\", \"ukulele\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 156.48460081141863, "input": "Answer the question by yes or no. Are Are [\"Paris\", \"Eiffel Tower\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 263.9384474815282, "input": "Answer the question by yes or no. Are Are [\"Sweden\", \"pop\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 195.86658654990524, "input": "Answer the question by yes or no. Are Are [\"Memphis Depay\", \"Mendelian inheritance\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 269.48199346540366, "input": "Answer the question by yes or no. Are Are [\"France\", \"beaches\"] examples of what entities are known for as well?\n yes", "output": ""} @@ -73,7 +72,6 @@ {"perplexity": 297.5315765874064, "input": "Answer the question by yes or no. Are Are [\"France\", \"beer\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 162.47349483232034, "input": "Answer the question by yes or no. Are Are [\"Nintendo\", \"Super Mario Bros.\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 255.22996743445296, "input": "Answer the question by yes or no. Are Are [\"democracy\", \"North Korea\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 244.71793719744124, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"iPhone\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 146.60939675879334, "input": "Answer the question by yes or no. Are Are [\"Harry Potter\", \"Bloomsbury\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 259.59960717117707, "input": "Answer the question by yes or no. Are Are [\"France\", \"mountains\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 311.38303944702795, "input": "Answer the question by yes or no. Are Are [\"UK\", \"rain\"] examples of what entities are known for as well?\n yes", "output": ""} @@ -89,7 +87,6 @@ {"perplexity": 206.35105144778737, "input": "Answer the question by yes or no. Are Are [\"Frank Abagnale Jr\", \"doctor\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 269.2362750798496, "input": "Answer the question by yes or no. Are Are [\"Meta\", \"Instagram\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 107.9553198443157, "input": "Answer the question by yes or no. Are Are [\"Jeff Goldblum\", \"Jurassic Park\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 102.74203496888089, "input": "Answer the question by yes or no. Are Are [\"Leonardo Da Vinci\", \"Mona Lisa\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 215.32897258887803, "input": "Answer the question by yes or no. Are Are [\"Neil Armstrong\", \"Korean War\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 211.82035865770018, "input": "Answer the question by yes or no. Are Are [\"France\", \"baguette\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 128.04492573008773, "input": "Answer the question by yes or no. Are Are [\"Queen\", \"Bohemian Rhapsody\"] examples of what entities are known for as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_similar_to.jsonl b/experiments/results/lm_qa_zeroshot/davinci/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/davinci/ppl.is_similar_to.jsonl rename to experiments/results/lm_qa_zeroshot/davinci/ppl.similar_to.jsonl index 4f62cf0f5e8e2c972f4452892bf77a86a5acfa0a..2a07e3ae5a3005383fd5129480a958f72ff9d877 100644 --- a/experiments/results/lm_qa_zeroshot/davinci/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_qa_zeroshot/davinci/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 161.49275522469145, "input": "Answer the question by yes or no. Are Are [\"Avatar\", \"Archimedes\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 202.96994034606035, "input": "Answer the question by yes or no. Are Are [\"shark\", \"Bush\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 197.94697694425355, "input": "Answer the question by yes or no. Are Are [\"Eva Braun\", \"Phil Jackson\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 77.2524908862818, "input": "Answer the question by yes or no. Are Are [\"Coca-Cola\", \"Pepsi\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 149.04659686875183, "input": "Answer the question by yes or no. Are Are [\"Joe Burrow\", \"Edward Scissorhands\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 144.8438535963923, "input": "Answer the question by yes or no. Are Are [\"Australia\", \"New Zealand\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 133.05482952738865, "input": "Answer the question by yes or no. Are Are [\"Edward I\", \"William the Conqueror\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 107.2835672765042, "input": "Answer the question by yes or no. Are Are [\"Frank Sinatra\", \"Ella Fitzgerald\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 148.83389895871346, "input": "Answer the question by yes or no. Are Are [\"New York\", \"York\"] examples of entities that are similar as well?\n yes", "output": ""} @@ -65,7 +63,6 @@ {"perplexity": 149.55742483906963, "input": "Answer the question by yes or no. Are Are [\"Batman\", \"Iron Man\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 74.23093366862534, "input": "Answer the question by yes or no. Are Are [\"Gisele B\u00fcndchen\", \"Orson Welles\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 114.71567363268656, "input": "Answer the question by yes or no. Are Are [\"Estonia\", \"Finland\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 116.7866110964565, "input": "Answer the question by yes or no. Are Are [\"The Avengers\", \"The Justice League\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 46.78211002649129, "input": "Answer the question by yes or no. Are Are [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 125.01612200179869, "input": "Answer the question by yes or no. Are Are [\"Adidas\", \"Nike\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 152.77762864270602, "input": "Answer the question by yes or no. Are Are [\"Java\", \"Javascript\"] examples of entities that are similar as well?\n yes", "output": ""} @@ -75,7 +72,6 @@ {"perplexity": 133.21424648306532, "input": "Answer the question by yes or no. Are Are [\"banana\", \"plantain\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 115.28315765766362, "input": "Answer the question by yes or no. Are Are [\"Firefox\", \"Chrome\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 84.9996545122752, "input": "Answer the question by yes or no. Are Are [\"Pecorino Romano\", \"Parmesan\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 111.83090043997278, "input": "Answer the question by yes or no. Are Are [\"Ligue 1\", \"Bundesliga\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 134.28111034626323, "input": "Answer the question by yes or no. Are Are [\"Netflix\", \"Amazon Prime Video\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 196.86033748736, "input": "Answer the question by yes or no. Are Are [\"Primark\", \"Shein\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 117.279077811096, "input": "Answer the question by yes or no. Are Are [\"Dominos' Pizza\", \"Pizza Hut\"] examples of entities that are similar as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl index c522a3cc66fb3fd6ab2b0dd292abcf11ea9b5c3f..b024caa11f754640e873e81f852687778c8c9fa6 100644 --- a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 1.3726400827016407, "input": "Answer the question by yes or no. Are [\"Dyson\", \"Dualit\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.2213969741123656, "input": "Answer the question by yes or no. Are [\"Netflix\", \"Disney Plus\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.4104243790562512, "input": "Answer the question by yes or no. Are [\"PyTorch\", \"TensorFlow\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.154297970053078, "input": "Answer the question by yes or no. Are [\"Dell\", \"HP\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1551589291959534, "input": "Answer the question by yes or no. Are [\"Sanpellegrino\", \"Volvic\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 3.210882266358501, "input": "Answer the question by yes or no. Are [\"Mikhail Khodorkovsky\", \"Hezbollah\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.144305344423478, "input": "Answer the question by yes or no. Are [\"British Airways\", \"Aer Lingus\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.130241866258848, "input": "Answer the question by yes or no. Are [\"Microsoft Teams\", \"Slack\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.3856312906992876, "input": "Answer the question by yes or no. Are [\"Federal Reserve Board\", \"Bank of England\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 2.0104321807945498, "input": "Answer the question by yes or no. Are [\"American Psycho\", \"Chihuahua\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.283299736254093, "input": "Answer the question by yes or no. Are [\"Mars\", \"Snickers\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -45,7 +43,6 @@ {"perplexity": 1.1111645327891297, "input": "Answer the question by yes or no. Are [\"Nintendo\", \"Xbox\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1771323203113893, "input": "Answer the question by yes or no. Are [\"H&M\", \"Zalora\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1858199308007384, "input": "Answer the question by yes or no. Are [\"Serena Williams\", \"Andy Murray\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.1301357671667809, "input": "Answer the question by yes or no. Are [\"Liverpool FC\", \"Manchester United\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.127073147852743, "input": "Answer the question by yes or no. Are [\"Apple\", \"Samsung\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1058029984626045, "input": "Answer the question by yes or no. Are [\"Expedia\", \"Trivago\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1231554378619109, "input": "Answer the question by yes or no. Are [\"Heathrow Airport\", \"Gatwick Airport\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -54,7 +51,6 @@ {"perplexity": 3.733241292153566, "input": "Answer the question by yes or no. Are [\"Olympic Games\", \"Helicobacter pylori\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1239047133213265, "input": "Answer the question by yes or no. Are [\"BMW\", \"Mercedes-Benz\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.3864432649264409, "input": "Answer the question by yes or no. Are [\"Blur\", \"Oasis\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.4537709794470195, "input": "Answer the question by yes or no. Are [\"Israel\", \"Palestine\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1493863542438691, "input": "Answer the question by yes or no. Are [\"Toshiba\", \"LG\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.2102092106551305, "input": "Answer the question by yes or no. Are [\"Apple\", \"Rolex\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.3612576368224352, "input": "Answer the question by yes or no. Are [\"Tesla\", \"Skoda\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -76,7 +72,6 @@ {"perplexity": 1.296298082588018, "input": "Answer the question by yes or no. Are [\"Neoclassicism\", \"Romanticism\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1669969006361085, "input": "Answer the question by yes or no. Are [\"Royal Feast\", \"Fast X\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.6050407100984858, "input": "Answer the question by yes or no. Are [\"Eminem\", \"MGK\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.1241231049978033, "input": "Answer the question by yes or no. Are [\"Sprite\", \"7 Up\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 4.198675647726309, "input": "Answer the question by yes or no. Are [\"Katharine Hepburn\", \"Abrahamic religion\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 2.482625029848454, "input": "Answer the question by yes or no. Are [\"Martin Luther King Jr.\", \"Malcolm X\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 3.945103802831966, "input": "Answer the question by yes or no. Are [\"Ligue 1\", \"Hayley Atwell\"] entities that are competitors or rivals as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl index 367b6d7118906cef23ecd9e943e0b0a1a8579843..c2f6fa44c8bf9a940ba0a1f8d018f38a3ea7e783 100644 --- a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 1.5076382682486769, "input": "Answer the question by yes or no. Are [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 3.604319485195574, "input": "Answer the question by yes or no. Are [\"Islamic State\", \"Denys Prokopenko\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.3331350021977564, "input": "Answer the question by yes or no. Are [\"Brazil\", \"India\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.716151838695067, "input": "Answer the question by yes or no. Are [\"Extinction Rebellion\", \"Greta Thunberg\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.550016293557066, "input": "Answer the question by yes or no. Are [\"Sicily\", \"Calabria\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.5488577171683127, "input": "Answer the question by yes or no. Are [\"Oman\", \"Iran\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.845919898385727, "input": "Answer the question by yes or no. Are [\"Sony\", \"ZEISS\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.4939354621306573, "input": "Answer the question by yes or no. Are [\"FTX\", \"Alameda Research\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.2534709087810465, "input": "Answer the question by yes or no. Are [\"UK\", \"Commonwealth\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.14844804747224, "input": "Answer the question by yes or no. Are [\"Australia\", \"New Zealand\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.3728450463927444, "input": "Answer the question by yes or no. Are [\"Kylo Ren\", \"Rey\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.723712993715269, "input": "Answer the question by yes or no. Are [\"Anne Boleyn\", \"Columbia Pictures\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.472892597499897, "input": "Answer the question by yes or no. Are [\"KGB\", \"CIA\"] entities that are friends or allies as well?", "output": "yes"} @@ -48,9 +46,7 @@ {"perplexity": 1.3408042684451291, "input": "Answer the question by yes or no. Are [\"Beatles\", \"Rolling Stones\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.3671933590352678, "input": "Answer the question by yes or no. Are [\"Red Bull\", \"GoPro\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.8162195556112777, "input": "Answer the question by yes or no. Are [\"HSBC\", \"BlackRock\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.2907485873798896, "input": "Answer the question by yes or no. Are [\"Elsa\", \"Anna\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.701560782243009, "input": "Answer the question by yes or no. Are [\"Macbeth\", \"Banquo\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.6894396338751407, "input": "Answer the question by yes or no. Are [\"Aznar\", \"Bush\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.647110111916017, "input": "Answer the question by yes or no. Are [\"Google\", \"Samsung\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.8613187832204103, "input": "Answer the question by yes or no. Are [\"IMF\", \"The World Bank\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.6151933908766962, "input": "Answer the question by yes or no. Are [\"Nikon\", \"Tokina\"] entities that are friends or allies as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl rename to experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl index e1777282c1f1cb34f0ca52df2b94e5277a975115..3de63c31e824ff03f8f7de9c8a7ffc3a2d3de42c 100644 --- a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 1.363669873322751, "input": "Answer the question by yes or no. Are [\"US\", \"NASA\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.487213625937047, "input": "Answer the question by yes or no. Are [\"Wales\", \"Westminster\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.5698544817421038, "input": "Answer the question by yes or no. Are [\"Sierra Leone\", \"Pulp fiction\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.3652171632530519, "input": "Answer the question by yes or no. Are [\"Ethereum\", \"Bitcoin\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.611923998892474, "input": "Answer the question by yes or no. Are [\"Theresa May\", \"David Cameron\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.726282926416673, "input": "Answer the question by yes or no. Are [\"Anna Delvey\", \"Bernie Madoff\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.1878283338997047, "input": "Answer the question by yes or no. Are [\"Lord of the Rings\", \"Beowulf\"] what has influenced different entities as well?", "output": "yes"} @@ -74,8 +73,6 @@ {"perplexity": 1.365983629858512, "input": "Answer the question by yes or no. Are [\"Stephen King\", \"Arthur Machen\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.564586425691157, "input": "Answer the question by yes or no. Are [\"Bangladesh\", \"India\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.4010632706954516, "input": "Answer the question by yes or no. Are [\"hamburger\", \"Germany\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.2159124359039477, "input": "Answer the question by yes or no. Are [\"Plato\", \"Socrates\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.366850732006366, "input": "Answer the question by yes or no. Are [\"Messi\", \"Maradona\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.3658748177405393, "input": "Answer the question by yes or no. Are [\"Oasis\", \"Blur\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.2479236247061725, "input": "Answer the question by yes or no. Are [\"Quentin Tarantino\", \"Sergio Leone\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.319891655740805, "input": "Answer the question by yes or no. Are [\"European Union\", \"Germany\"] what has influenced different entities as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl rename to experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.known_for.jsonl index 8ebd8502633d6b39fed104395e34c544455a2c46..e7b8fdf3abff451042592f77c5ac8caf43a97124 100644 --- a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_known_for.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 1.2078446958731324, "input": "Answer the question by yes or no. Are [\"Hawaii\", \"ukulele\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.1867704855414045, "input": "Answer the question by yes or no. Are [\"Paris\", \"Eiffel Tower\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.3403770940127793, "input": "Answer the question by yes or no. Are [\"Sweden\", \"pop\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.7764514429101865, "input": "Answer the question by yes or no. Are [\"Memphis Depay\", \"Mendelian inheritance\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.2475079169293035, "input": "Answer the question by yes or no. Are [\"France\", \"beaches\"] examples of what entities are known for as well?", "output": "yes"} @@ -73,7 +72,6 @@ {"perplexity": 1.7138133308929808, "input": "Answer the question by yes or no. Are [\"France\", \"beer\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.1930280002462306, "input": "Answer the question by yes or no. Are [\"Nintendo\", \"Super Mario Bros.\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 2.4296057201959815, "input": "Answer the question by yes or no. Are [\"democracy\", \"North Korea\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.215701898961206, "input": "Answer the question by yes or no. Are [\"Apple\", \"iPhone\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.2305637147564101, "input": "Answer the question by yes or no. Are [\"Harry Potter\", \"Bloomsbury\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.2944200410642819, "input": "Answer the question by yes or no. Are [\"France\", \"mountains\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.4280877697044003, "input": "Answer the question by yes or no. Are [\"UK\", \"rain\"] examples of what entities are known for as well?", "output": "yes"} @@ -89,7 +87,6 @@ {"perplexity": 1.6449843672418294, "input": "Answer the question by yes or no. Are [\"Frank Abagnale Jr\", \"doctor\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.3229651941315028, "input": "Answer the question by yes or no. Are [\"Meta\", \"Instagram\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.2509836914312573, "input": "Answer the question by yes or no. Are [\"Jeff Goldblum\", \"Jurassic Park\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.2393096659225693, "input": "Answer the question by yes or no. Are [\"Leonardo Da Vinci\", \"Mona Lisa\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.3640441020150051, "input": "Answer the question by yes or no. Are [\"Neil Armstrong\", \"Korean War\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.1463582378079102, "input": "Answer the question by yes or no. Are [\"France\", \"baguette\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.2822878966801101, "input": "Answer the question by yes or no. Are [\"Queen\", \"Bohemian Rhapsody\"] examples of what entities are known for as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl rename to experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl index 759393fc72d88f138bcd0213b7317fc4550db2af..44aa093e8162642a5dc7020492eb7c8f79cce9f2 100644 --- a/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-t5-xxl/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 2.2553190092672346, "input": "Answer the question by yes or no. Are [\"Avatar\", \"Archimedes\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.7374443468404, "input": "Answer the question by yes or no. Are [\"Shark\", \"Bush\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.5584958007817535, "input": "Answer the question by yes or no. Are [\"Eva Braun\", \"Phil Jackson\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.263158134228581, "input": "Answer the question by yes or no. Are [\"Coca-Cola\", \"Pepsi\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.7564588674669537, "input": "Answer the question by yes or no. Are [\"Joe Burrow\", \"Edward Scissorhands\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.3242773586328045, "input": "Answer the question by yes or no. Are [\"Australia\", \"New Zealand\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.469838438468642, "input": "Answer the question by yes or no. Are [\"Edward I\", \"William the Conqueror\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.4201532822570888, "input": "Answer the question by yes or no. Are [\"Frank Sinatra\", \"Ella Fitzgerald\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.217636926983925, "input": "Answer the question by yes or no. Are [\"New York\", \"York\"] examples of entities that are similar as well?", "output": "yes"} @@ -65,7 +63,6 @@ {"perplexity": 1.434714974723125, "input": "Answer the question by yes or no. Are [\"Batman\", \"Iron Man\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 3.125253127548737, "input": "Answer the question by yes or no. Are [\"Gisele B\u00fcndchen\", \"Orson Welles\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.4430048204527284, "input": "Answer the question by yes or no. Are [\"Estonia\", \"Finland\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.232302962297882, "input": "Answer the question by yes or no. Are [\"The Avengers\", \"The Justice League\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.6235280018797957, "input": "Answer the question by yes or no. Are [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.190597468230905, "input": "Answer the question by yes or no. Are [\"Adidas\", \"Nike\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.397444167120569, "input": "Answer the question by yes or no. Are [\"Java\", \"Javascript\"] examples of entities that are similar as well?", "output": "yes"} @@ -75,7 +72,6 @@ {"perplexity": 1.2329752036977735, "input": "Answer the question by yes or no. Are [\"banana\", \"plantain\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2114676124873207, "input": "Answer the question by yes or no. Are [\"Firefox\", \"Chrome\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2358492555506762, "input": "Answer the question by yes or no. Are [\"Pecorino Romano\", \"Parmesan\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.30721893115015, "input": "Answer the question by yes or no. Are [\"Ligue 1\", \"Bundesliga\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1687360257900292, "input": "Answer the question by yes or no. Are [\"Netflix\", \"Amazon Prime Video\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2839836107370073, "input": "Answer the question by yes or no. Are [\"Primark\", \"Shein\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1587451590950404, "input": "Answer the question by yes or no. Are [\"Dominos' Pizza\", \"Pizza Hut\"] examples of entities that are similar as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_qa_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl index de39fe215ad3e45e09fcfa0b0d8944d04e788b52..8b22081d271bcb3a33232692ee7f09da0453e320 100644 --- a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 1.4066400229807077, "input": "Answer the question by yes or no. Are [\"Dyson\", \"Dualit\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.233603087311407, "input": "Answer the question by yes or no. Are [\"Netflix\", \"Disney Plus\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.2808253965315133, "input": "Answer the question by yes or no. Are [\"PyTorch\", \"TensorFlow\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.0416585847044884, "input": "Answer the question by yes or no. Are [\"Dell\", \"HP\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.3447474634198389, "input": "Answer the question by yes or no. Are [\"Sanpellegrino\", \"Volvic\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 2.4170384926741626, "input": "Answer the question by yes or no. Are [\"Mikhail Khodorkovsky\", \"Hezbollah\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1037129775740366, "input": "Answer the question by yes or no. Are [\"British Airways\", \"Aer Lingus\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.0557504472617725, "input": "Answer the question by yes or no. Are [\"Microsoft Teams\", \"Slack\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.8141170517333125, "input": "Answer the question by yes or no. Are [\"Federal Reserve Board\", \"Bank of England\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.9418134795261126, "input": "Answer the question by yes or no. Are [\"American Psycho\", \"Chihuahua\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.4256724727393357, "input": "Answer the question by yes or no. Are [\"Mars\", \"Snickers\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -45,7 +43,6 @@ {"perplexity": 1.0998882844596016, "input": "Answer the question by yes or no. Are [\"Nintendo\", \"Xbox\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.359639423903739, "input": "Answer the question by yes or no. Are [\"H&M\", \"Zalora\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.0459443108429878, "input": "Answer the question by yes or no. Are [\"Serena Williams\", \"Andy Murray\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.0449462333912818, "input": "Answer the question by yes or no. Are [\"Liverpool FC\", \"Manchester United\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.04769222313876, "input": "Answer the question by yes or no. Are [\"Apple\", \"Samsung\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1483506089912217, "input": "Answer the question by yes or no. Are [\"Expedia\", \"Trivago\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.1256792359957808, "input": "Answer the question by yes or no. Are [\"Heathrow Airport\", \"Gatwick Airport\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -54,7 +51,6 @@ {"perplexity": 3.3511833150794743, "input": "Answer the question by yes or no. Are [\"Olympic Games\", \"Helicobacter pylori\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.036298820976043, "input": "Answer the question by yes or no. Are [\"BMW\", \"Mercedes-Benz\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.3052386699396863, "input": "Answer the question by yes or no. Are [\"Blur\", \"Oasis\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.1457000668046726, "input": "Answer the question by yes or no. Are [\"Israel\", \"Palestine\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.163162197987383, "input": "Answer the question by yes or no. Are [\"Toshiba\", \"LG\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.55752033597564, "input": "Answer the question by yes or no. Are [\"Apple\", \"Rolex\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.4840326440929967, "input": "Answer the question by yes or no. Are [\"Tesla\", \"Skoda\"] entities that are competitors or rivals as well?", "output": "yes"} @@ -76,7 +72,6 @@ {"perplexity": 1.3743393007605533, "input": "Answer the question by yes or no. Are [\"Neoclassicism\", \"Romanticism\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.309691642758208, "input": "Answer the question by yes or no. Are [\"Royal Feast\", \"Fast X\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.4744226711936121, "input": "Answer the question by yes or no. Are [\"Eminem\", \"MGK\"] entities that are competitors or rivals as well?", "output": "yes"} -{"perplexity": 1.212745195228596, "input": "Answer the question by yes or no. Are [\"Sprite\", \"7 Up\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 3.0833799818271994, "input": "Answer the question by yes or no. Are [\"Katharine Hepburn\", \"Abrahamic religion\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 1.6853565210199075, "input": "Answer the question by yes or no. Are [\"Martin Luther King Jr.\", \"Malcolm X\"] entities that are competitors or rivals as well?", "output": "yes"} {"perplexity": 2.5542050524768216, "input": "Answer the question by yes or no. Are [\"Ligue 1\", \"Hayley Atwell\"] entities that are competitors or rivals as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_qa_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl index 471d7b1c0346596ef64c4e4d49162a9ad4dee5bc..4654e3dfe46d20abf2af5c013da4d0b9e97eb560 100644 --- a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 1.5763126396850815, "input": "Answer the question by yes or no. Are [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 2.7434138522858, "input": "Answer the question by yes or no. Are [\"Islamic State\", \"Denys Prokopenko\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.5445218908976759, "input": "Answer the question by yes or no. Are [\"Brazil\", \"India\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.7988221620291822, "input": "Answer the question by yes or no. Are [\"Extinction Rebellion\", \"Greta Thunberg\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.7086696805448425, "input": "Answer the question by yes or no. Are [\"Sicily\", \"Calabria\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.8344885935861346, "input": "Answer the question by yes or no. Are [\"Oman\", \"Iran\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.4926095846618708, "input": "Answer the question by yes or no. Are [\"Sony\", \"ZEISS\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.8468702122489273, "input": "Answer the question by yes or no. Are [\"FTX\", \"Alameda Research\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.3116195554924144, "input": "Answer the question by yes or no. Are [\"UK\", \"Commonwealth\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.1996322618593351, "input": "Answer the question by yes or no. Are [\"Australia\", \"New Zealand\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 2.2496602704508817, "input": "Answer the question by yes or no. Are [\"Kylo Ren\", \"Rey\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 3.1023535131377296, "input": "Answer the question by yes or no. Are [\"Anne Boleyn\", \"Columbia Pictures\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.9175389761631927, "input": "Answer the question by yes or no. Are [\"KGB\", \"CIA\"] entities that are friends or allies as well?", "output": "yes"} @@ -48,9 +46,7 @@ {"perplexity": 1.9865660915532268, "input": "Answer the question by yes or no. Are [\"Beatles\", \"Rolling Stones\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.5047058185996207, "input": "Answer the question by yes or no. Are [\"Red Bull\", \"GoPro\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 2.0075052819565604, "input": "Answer the question by yes or no. Are [\"HSBC\", \"BlackRock\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.3202414370035342, "input": "Answer the question by yes or no. Are [\"Elsa\", \"Anna\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.594563451823357, "input": "Answer the question by yes or no. Are [\"Macbeth\", \"Banquo\"] entities that are friends or allies as well?", "output": "yes"} -{"perplexity": 1.3840087685711524, "input": "Answer the question by yes or no. Are [\"Aznar\", \"Bush\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.3997592031330308, "input": "Answer the question by yes or no. Are [\"Google\", \"Samsung\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.5407179864932719, "input": "Answer the question by yes or no. Are [\"IMF\", \"The World Bank\"] entities that are friends or allies as well?", "output": "yes"} {"perplexity": 1.8125038240195745, "input": "Answer the question by yes or no. Are [\"Nikon\", \"Tokina\"] entities that are friends or allies as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl rename to experiments/results/lm_qa_zeroshot/flan-ul2/ppl.influenced_by.jsonl index 1f8f070a329e77b3203a45ac97dfaee7b9957936..221591f251c549788ecd465d84c999eb7fe09794 100644 --- a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 1.4853929568657513, "input": "Answer the question by yes or no. Are [\"US\", \"NASA\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.4885316048811115, "input": "Answer the question by yes or no. Are [\"Wales\", \"Westminster\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.5544310550489477, "input": "Answer the question by yes or no. Are [\"Sierra Leone\", \"Pulp fiction\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.2953061815438591, "input": "Answer the question by yes or no. Are [\"Ethereum\", \"Bitcoin\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.586599476418079, "input": "Answer the question by yes or no. Are [\"Theresa May\", \"David Cameron\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 2.2394238525833763, "input": "Answer the question by yes or no. Are [\"Anna Delvey\", \"Bernie Madoff\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.2980656118986473, "input": "Answer the question by yes or no. Are [\"Lord of the Rings\", \"Beowulf\"] what has influenced different entities as well?", "output": "yes"} @@ -74,8 +73,6 @@ {"perplexity": 1.3031646611706496, "input": "Answer the question by yes or no. Are [\"Stephen King\", \"Arthur Machen\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.594239101732205, "input": "Answer the question by yes or no. Are [\"Bangladesh\", \"India\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.4805603774557137, "input": "Answer the question by yes or no. Are [\"hamburger\", \"Germany\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.2252417514229652, "input": "Answer the question by yes or no. Are [\"Plato\", \"Socrates\"] what has influenced different entities as well?", "output": "yes"} -{"perplexity": 1.386407854799256, "input": "Answer the question by yes or no. Are [\"Messi\", \"Maradona\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.4267974980604674, "input": "Answer the question by yes or no. Are [\"Oasis\", \"Blur\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.2378902814139754, "input": "Answer the question by yes or no. Are [\"Quentin Tarantino\", \"Sergio Leone\"] what has influenced different entities as well?", "output": "yes"} {"perplexity": 1.3075359721381155, "input": "Answer the question by yes or no. Are [\"European Union\", \"Germany\"] what has influenced different entities as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_known_for.jsonl b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_known_for.jsonl rename to experiments/results/lm_qa_zeroshot/flan-ul2/ppl.known_for.jsonl index 4478b739e4cd3ff45acbe7247c682678d41d2f27..c508a6b7724670e9e1b5c4fc1f288bdc681ba23d 100644 --- a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_known_for.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 1.6141553237135906, "input": "Answer the question by yes or no. Are [\"Hawaii\", \"ukulele\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.549073112637212, "input": "Answer the question by yes or no. Are [\"Paris\", \"Eiffel Tower\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.599112336564866, "input": "Answer the question by yes or no. Are [\"Sweden\", \"pop\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 2.7539158748346066, "input": "Answer the question by yes or no. Are [\"Memphis Depay\", \"Mendelian inheritance\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.7211045184289022, "input": "Answer the question by yes or no. Are [\"France\", \"beaches\"] examples of what entities are known for as well?", "output": "yes"} @@ -73,7 +72,6 @@ {"perplexity": 1.616702308516782, "input": "Answer the question by yes or no. Are [\"France\", \"beer\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.4081862950465882, "input": "Answer the question by yes or no. Are [\"Nintendo\", \"Super Mario Bros.\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.874067353187238, "input": "Answer the question by yes or no. Are [\"democracy\", \"North Korea\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.504551474404591, "input": "Answer the question by yes or no. Are [\"Apple\", \"iPhone\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.681124247026932, "input": "Answer the question by yes or no. Are [\"Harry Potter\", \"Bloomsbury\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 2.0420109399379687, "input": "Answer the question by yes or no. Are [\"France\", \"mountains\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.8510534368673026, "input": "Answer the question by yes or no. Are [\"UK\", \"rain\"] examples of what entities are known for as well?", "output": "yes"} @@ -89,7 +87,6 @@ {"perplexity": 2.204312972088224, "input": "Answer the question by yes or no. Are [\"Frank Abagnale Jr\", \"doctor\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.7586111048690642, "input": "Answer the question by yes or no. Are [\"Meta\", \"Instagram\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.472164987898691, "input": "Answer the question by yes or no. Are [\"Jeff Goldblum\", \"Jurassic Park\"] examples of what entities are known for as well?", "output": "yes"} -{"perplexity": 1.4838067466083005, "input": "Answer the question by yes or no. Are [\"Leonardo Da Vinci\", \"Mona Lisa\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 2.5360696094371646, "input": "Answer the question by yes or no. Are [\"Neil Armstrong\", \"Korean War\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.6694015995141194, "input": "Answer the question by yes or no. Are [\"France\", \"baguette\"] examples of what entities are known for as well?", "output": "yes"} {"perplexity": 1.4253497252771552, "input": "Answer the question by yes or no. Are [\"Queen\", \"Bohemian Rhapsody\"] examples of what entities are known for as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_similar_to.jsonl b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_similar_to.jsonl rename to experiments/results/lm_qa_zeroshot/flan-ul2/ppl.similar_to.jsonl index a71b9db7083fb1c64237345d2860c02928416bb9..15775858f01c2366c6fef0cbe5f79163a1ed7e9e 100644 --- a/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_qa_zeroshot/flan-ul2/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 2.0498386840332077, "input": "Answer the question by yes or no. Are [\"Avatar\", \"Archimedes\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.473817916476143, "input": "Answer the question by yes or no. Are [\"Shark\", \"Bush\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.073420971334422, "input": "Answer the question by yes or no. Are [\"Eva Braun\", \"Phil Jackson\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.1603703122935556, "input": "Answer the question by yes or no. Are [\"Coca-Cola\", \"Pepsi\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.7072382051749715, "input": "Answer the question by yes or no. Are [\"Joe Burrow\", \"Edward Scissorhands\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.2436423214416585, "input": "Answer the question by yes or no. Are [\"Australia\", \"New Zealand\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.8079957937284559, "input": "Answer the question by yes or no. Are [\"Edward I\", \"William the Conqueror\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2618269168231726, "input": "Answer the question by yes or no. Are [\"Frank Sinatra\", \"Ella Fitzgerald\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2378399248510765, "input": "Answer the question by yes or no. Are [\"New York\", \"York\"] examples of entities that are similar as well?", "output": "yes"} @@ -65,7 +63,6 @@ {"perplexity": 1.4505700925559022, "input": "Answer the question by yes or no. Are [\"Batman\", \"Iron Man\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.482540389029044, "input": "Answer the question by yes or no. Are [\"Gisele B\u00fcndchen\", \"Orson Welles\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2753268802230482, "input": "Answer the question by yes or no. Are [\"Estonia\", \"Finland\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.3073785524764345, "input": "Answer the question by yes or no. Are [\"The Avengers\", \"The Justice League\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 2.866841024727357, "input": "Answer the question by yes or no. Are [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1759724560937117, "input": "Answer the question by yes or no. Are [\"Adidas\", \"Nike\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1638525989865072, "input": "Answer the question by yes or no. Are [\"Java\", \"Javascript\"] examples of entities that are similar as well?", "output": "yes"} @@ -75,7 +72,6 @@ {"perplexity": 1.239858409557863, "input": "Answer the question by yes or no. Are [\"banana\", \"plantain\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.2388581155089609, "input": "Answer the question by yes or no. Are [\"Firefox\", \"Chrome\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1561388450582295, "input": "Answer the question by yes or no. Are [\"Pecorino Romano\", \"Parmesan\"] examples of entities that are similar as well?", "output": "yes"} -{"perplexity": 1.23614659258189, "input": "Answer the question by yes or no. Are [\"Ligue 1\", \"Bundesliga\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1320119721227202, "input": "Answer the question by yes or no. Are [\"Netflix\", \"Amazon Prime Video\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.3975065558414137, "input": "Answer the question by yes or no. Are [\"Primark\", \"Shein\"] examples of entities that are similar as well?", "output": "yes"} {"perplexity": 1.1959740216706212, "input": "Answer the question by yes or no. Are [\"Dominos' Pizza\", \"Pizza Hut\"] examples of entities that are similar as well?", "output": "yes"} diff --git a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl similarity index 94% rename from experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl rename to experiments/results/lm_qa_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl index 0f4b80279784c0a2873f9741c4638b9996004bd4..5f761f1cbae74767147caec72e8958594e721658 100644 --- a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_competitor__rival_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.competitor__rival_of.jsonl @@ -10,11 +10,9 @@ {"perplexity": 180.2914724997354, "input": "Answer the question by yes or no. Are Are [\"Dyson\", \"Dualit\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 125.40998726387159, "input": "Answer the question by yes or no. Are Are [\"Netflix\", \"Disney Plus\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 77.65347479647885, "input": "Answer the question by yes or no. Are Are [\"PyTorch\", \"TensorFlow\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 110.99625900735101, "input": "Answer the question by yes or no. Are Are [\"Dell\", \"HP\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 101.88800170026816, "input": "Answer the question by yes or no. Are Are [\"Sanpellegrino\", \"Volvic\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 74.80574420440865, "input": "Answer the question by yes or no. Are Are [\"Mikhail Khodorkovsky\", \"Hezbollah\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 82.99657985070665, "input": "Answer the question by yes or no. Are Are [\"British Airways\", \"Aer Lingus\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 103.97606698643365, "input": "Answer the question by yes or no. Are Are [\"Microsoft Teams\", \"Slack\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 88.01708613604201, "input": "Answer the question by yes or no. Are Are [\"Federal Reserve Board\", \"Bank of England\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 118.93559119255175, "input": "Answer the question by yes or no. Are Are [\"American Psycho\", \"Chihuahua\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 158.79447256175592, "input": "Answer the question by yes or no. Are Are [\"Mars\", \"Snickers\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -45,7 +43,6 @@ {"perplexity": 141.5000501805807, "input": "Answer the question by yes or no. Are Are [\"Nintendo\", \"Xbox\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 108.05229038156968, "input": "Answer the question by yes or no. Are Are [\"H&M\", \"Zalora\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 88.6989110087538, "input": "Answer the question by yes or no. Are Are [\"Serena Williams\", \"Andy Murray\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 102.77705836830197, "input": "Answer the question by yes or no. Are Are [\"Liverpool FC\", \"Manchester United\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 117.38756656430618, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"Samsung\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 94.34587082431456, "input": "Answer the question by yes or no. Are Are [\"Expedia\", \"Trivago\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 71.26338735809948, "input": "Answer the question by yes or no. Are Are [\"Heathrow Airport\", \"Gatwick Airport\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -54,7 +51,6 @@ {"perplexity": 67.18262295262414, "input": "Answer the question by yes or no. Are Are [\"Olympic Games\", \"Helicobacter pylori\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 80.97949977786271, "input": "Answer the question by yes or no. Are Are [\"BMW\", \"Mercedes-Benz\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 118.20725473059213, "input": "Answer the question by yes or no. Are Are [\"Blur\", \"Oasis\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 92.51880653211526, "input": "Answer the question by yes or no. Are Are [\"Israel\", \"Palestine\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 101.87430193755681, "input": "Answer the question by yes or no. Are Are [\"Toshiba\", \"LG\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 138.43433255545241, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"Rolex\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 155.1807355098238, "input": "Answer the question by yes or no. Are Are [\"Tesla\", \"Skoda\"] entities that are competitors or rivals as well?\n yes", "output": ""} @@ -76,7 +72,6 @@ {"perplexity": 92.93305777066276, "input": "Answer the question by yes or no. Are Are [\"Neoclassicism\", \"Romanticism\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 262.9003227962776, "input": "Answer the question by yes or no. Are Are [\"Royal Feast\", \"Fast X\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 96.70123621215362, "input": "Answer the question by yes or no. Are Are [\"Eminem\", \"MGK\"] entities that are competitors or rivals as well?\n yes", "output": ""} -{"perplexity": 124.28158276825545, "input": "Answer the question by yes or no. Are Are [\"Sprite\", \"7 Up\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 97.07341874845757, "input": "Answer the question by yes or no. Are Are [\"Katharine Hepburn\", \"Abrahamic religion\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 80.50363399514082, "input": "Answer the question by yes or no. Are Are [\"Martin Luther King Jr.\", \"Malcolm X\"] entities that are competitors or rivals as well?\n yes", "output": ""} {"perplexity": 126.8386155873875, "input": "Answer the question by yes or no. Are Are [\"Ligue 1\", \"Hayley Atwell\"] entities that are competitors or rivals as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.friend__ally_of.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl rename to experiments/results/lm_qa_zeroshot/opt-13b/ppl.friend__ally_of.jsonl index 42c0e4deac06c987d93f0ffe5da9abcb9343fce8..a300f3a4784755e3d7af55ab1a9e1143e95e829f 100644 --- a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_friend__ally_of.jsonl +++ b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.friend__ally_of.jsonl @@ -10,13 +10,11 @@ {"perplexity": 49.30056931191485, "input": "Answer the question by yes or no. Are Are [\"Pedro S\u00e1nchez\", \"Pablo Iglesias\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 126.91974703438822, "input": "Answer the question by yes or no. Are Are [\"Islamic State\", \"Denys Prokopenko\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 134.91725376272873, "input": "Answer the question by yes or no. Are Are [\"Brazil\", \"India\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 62.01445459431422, "input": "Answer the question by yes or no. Are Are [\"Extinction Rebellion\", \"Greta Thunberg\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 85.77837780271282, "input": "Answer the question by yes or no. Are Are [\"Sicily\", \"Calabria\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 111.60904108101131, "input": "Answer the question by yes or no. Are Are [\"Oman\", \"Iran\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 146.07899670100804, "input": "Answer the question by yes or no. Are Are [\"Sony\", \"ZEISS\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 161.68592020657087, "input": "Answer the question by yes or no. Are Are [\"FTX\", \"Alameda Research\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 100.91632094423161, "input": "Answer the question by yes or no. Are Are [\"UK\", \"Commonwealth\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 96.28910303323127, "input": "Answer the question by yes or no. Are Are [\"Australia\", \"New Zealand\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 74.11110285727172, "input": "Answer the question by yes or no. Are Are [\"Kylo Ren\", \"Rey\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 114.26443608759998, "input": "Answer the question by yes or no. Are Are [\"Anne Boleyn\", \"Columbia Pictures\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 109.08534588719252, "input": "Answer the question by yes or no. Are Are [\"KGB\", \"CIA\"] entities that are friends or allies as well?\n yes", "output": ""} @@ -48,9 +46,7 @@ {"perplexity": 98.84425572083119, "input": "Answer the question by yes or no. Are Are [\"Beatles\", \"Rolling Stones\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 115.33922833433341, "input": "Answer the question by yes or no. Are Are [\"Red Bull\", \"GoPro\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 114.03669589057198, "input": "Answer the question by yes or no. Are Are [\"HSBC\", \"BlackRock\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 134.682255165819, "input": "Answer the question by yes or no. Are Are [\"Elsa\", \"Anna\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 96.716869017389, "input": "Answer the question by yes or no. Are Are [\"Macbeth\", \"Banquo\"] entities that are friends or allies as well?\n yes", "output": ""} -{"perplexity": 132.06038715437361, "input": "Answer the question by yes or no. Are Are [\"Aznar\", \"Bush\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 129.9297479645153, "input": "Answer the question by yes or no. Are Are [\"Google\", \"Samsung\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 97.39639855674001, "input": "Answer the question by yes or no. Are Are [\"IMF\", \"The World Bank\"] entities that are friends or allies as well?\n yes", "output": ""} {"perplexity": 128.11095064382184, "input": "Answer the question by yes or no. Are Are [\"Nikon\", \"Tokina\"] entities that are friends or allies as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_influenced_by.jsonl b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.influenced_by.jsonl similarity index 96% rename from experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_influenced_by.jsonl rename to experiments/results/lm_qa_zeroshot/opt-13b/ppl.influenced_by.jsonl index 4f878982fbac15a23df6af40586bfd56673d82bc..303e7ed57d5c8d54d52c49f4aa0837342e698240 100644 --- a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_influenced_by.jsonl +++ b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.influenced_by.jsonl @@ -14,7 +14,6 @@ {"perplexity": 241.85156382535416, "input": "Answer the question by yes or no. Are Are [\"US\", \"NASA\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 215.21434464477736, "input": "Answer the question by yes or no. Are Are [\"Wales\", \"Westminster\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 180.99961626737874, "input": "Answer the question by yes or no. Are Are [\"Sierra Leone\", \"Pulp fiction\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 197.76761616707768, "input": "Answer the question by yes or no. Are Are [\"Ethereum\", \"Bitcoin\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 181.6561357081833, "input": "Answer the question by yes or no. Are Are [\"Theresa May\", \"David Cameron\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 190.87975172917285, "input": "Answer the question by yes or no. Are Are [\"Anna Delvey\", \"Bernie Madoff\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 109.3286874178324, "input": "Answer the question by yes or no. Are Are [\"Lord of the Rings\", \"Beowulf\"] what has influenced different entities as well?\n yes", "output": ""} @@ -74,8 +73,6 @@ {"perplexity": 184.30558588707024, "input": "Answer the question by yes or no. Are Are [\"Stephen King\", \"Arthur Machen\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 185.3305132207654, "input": "Answer the question by yes or no. Are Are [\"Bangladesh\", \"India\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 216.99363700394855, "input": "Answer the question by yes or no. Are Are [\"hamburger\", \"Germany\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 170.6101163334419, "input": "Answer the question by yes or no. Are Are [\"Plato\", \"Socrates\"] what has influenced different entities as well?\n yes", "output": ""} -{"perplexity": 159.85823872863847, "input": "Answer the question by yes or no. Are Are [\"Messi\", \"Maradona\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 209.3881368677191, "input": "Answer the question by yes or no. Are Are [\"Oasis\", \"Blur\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 111.1346968133227, "input": "Answer the question by yes or no. Are Are [\"Quentin Tarantino\", \"Sergio Leone\"] what has influenced different entities as well?\n yes", "output": ""} {"perplexity": 218.75394499909592, "input": "Answer the question by yes or no. Are Are [\"European Union\", \"Germany\"] what has influenced different entities as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_known_for.jsonl b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.known_for.jsonl similarity index 97% rename from experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_known_for.jsonl rename to experiments/results/lm_qa_zeroshot/opt-13b/ppl.known_for.jsonl index b9b083d054d6db87b19c6fc0a9ca06138981b8ae..424095ea46675243f6b2dc977fc2428f597bde01 100644 --- a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_known_for.jsonl +++ b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.known_for.jsonl @@ -1,5 +1,4 @@ {"perplexity": 115.6350013420843, "input": "Answer the question by yes or no. Are Are [\"Hawaii\", \"ukulele\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 89.91661766822861, "input": "Answer the question by yes or no. Are Are [\"Paris\", \"Eiffel Tower\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 151.22910930925065, "input": "Answer the question by yes or no. Are Are [\"Sweden\", \"pop\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 110.28077708113736, "input": "Answer the question by yes or no. Are Are [\"Memphis Depay\", \"Mendelian inheritance\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 139.83712114116398, "input": "Answer the question by yes or no. Are Are [\"France\", \"beaches\"] examples of what entities are known for as well?\n yes", "output": ""} @@ -73,7 +72,6 @@ {"perplexity": 146.18512115739827, "input": "Answer the question by yes or no. Are Are [\"France\", \"beer\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 92.34400620843309, "input": "Answer the question by yes or no. Are Are [\"Nintendo\", \"Super Mario Bros.\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 140.76180957115704, "input": "Answer the question by yes or no. Are Are [\"democracy\", \"North Korea\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 122.87823958756658, "input": "Answer the question by yes or no. Are Are [\"Apple\", \"iPhone\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 90.13933156503448, "input": "Answer the question by yes or no. Are Are [\"Harry Potter\", \"Bloomsbury\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 124.88609912091935, "input": "Answer the question by yes or no. Are Are [\"France\", \"mountains\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 163.13254132525128, "input": "Answer the question by yes or no. Are Are [\"UK\", \"rain\"] examples of what entities are known for as well?\n yes", "output": ""} @@ -89,7 +87,6 @@ {"perplexity": 124.72648721264966, "input": "Answer the question by yes or no. Are Are [\"Frank Abagnale Jr\", \"doctor\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 133.27193723739578, "input": "Answer the question by yes or no. Are Are [\"Meta\", \"Instagram\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 60.46433229085098, "input": "Answer the question by yes or no. Are Are [\"Jeff Goldblum\", \"Jurassic Park\"] examples of what entities are known for as well?\n yes", "output": ""} -{"perplexity": 64.58795109322553, "input": "Answer the question by yes or no. Are Are [\"Leonardo Da Vinci\", \"Mona Lisa\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 117.59541669642246, "input": "Answer the question by yes or no. Are Are [\"Neil Armstrong\", \"Korean War\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 103.6582523289896, "input": "Answer the question by yes or no. Are Are [\"France\", \"baguette\"] examples of what entities are known for as well?\n yes", "output": ""} {"perplexity": 75.80563905266105, "input": "Answer the question by yes or no. Are Are [\"Queen\", \"Bohemian Rhapsody\"] examples of what entities are known for as well?\n yes", "output": ""} diff --git a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_similar_to.jsonl b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.similar_to.jsonl similarity index 95% rename from experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_similar_to.jsonl rename to experiments/results/lm_qa_zeroshot/opt-13b/ppl.similar_to.jsonl index 5f08843045055e252e2b959ece87bc264a75fdc9..63f63106f793d5c5ee3c8441e7926db4c21798c5 100644 --- a/experiments/results/lm_qa_zeroshot/opt-13b/ppl.is_similar_to.jsonl +++ b/experiments/results/lm_qa_zeroshot/opt-13b/ppl.similar_to.jsonl @@ -49,9 +49,7 @@ {"perplexity": 97.84205287449822, "input": "Answer the question by yes or no. Are Are [\"Avatar\", \"Archimedes\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 115.46931698392953, "input": "Answer the question by yes or no. Are Are [\"shark\", \"Bush\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 135.46293791319002, "input": "Answer the question by yes or no. Are Are [\"Eva Braun\", \"Phil Jackson\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 52.52423193988287, "input": "Answer the question by yes or no. Are Are [\"Coca-Cola\", \"Pepsi\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 80.1711605855163, "input": "Answer the question by yes or no. Are Are [\"Joe Burrow\", \"Edward Scissorhands\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 90.37974784897978, "input": "Answer the question by yes or no. Are Are [\"Australia\", \"New Zealand\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 90.5593364435501, "input": "Answer the question by yes or no. Are Are [\"Edward I\", \"William the Conqueror\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 78.31765735269715, "input": "Answer the question by yes or no. Are Are [\"Frank Sinatra\", \"Ella Fitzgerald\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 111.14524295112767, "input": "Answer the question by yes or no. Are Are [\"New York\", \"York\"] examples of entities that are similar as well?\n yes", "output": ""} @@ -65,7 +63,6 @@ {"perplexity": 94.05121314973024, "input": "Answer the question by yes or no. Are Are [\"Batman\", \"Iron Man\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 48.84555062430155, "input": "Answer the question by yes or no. Are Are [\"Gisele B\u00fcndchen\", \"Orson Welles\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 76.82091372933095, "input": "Answer the question by yes or no. Are Are [\"Estonia\", \"Finland\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 75.41237181599722, "input": "Answer the question by yes or no. Are Are [\"The Avengers\", \"The Justice League\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 42.541697175629274, "input": "Answer the question by yes or no. Are Are [\"Nicolae Ceau\u0219escu\", \"Javier Hern\u00e1ndez\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 77.89170775990192, "input": "Answer the question by yes or no. Are Are [\"Adidas\", \"Nike\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 97.23305905394072, "input": "Answer the question by yes or no. Are Are [\"Java\", \"Javascript\"] examples of entities that are similar as well?\n yes", "output": ""} @@ -75,7 +72,6 @@ {"perplexity": 99.41568731340683, "input": "Answer the question by yes or no. Are Are [\"banana\", \"plantain\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 79.32253653513041, "input": "Answer the question by yes or no. Are Are [\"Firefox\", \"Chrome\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 63.10465029834729, "input": "Answer the question by yes or no. Are Are [\"Pecorino Romano\", \"Parmesan\"] examples of entities that are similar as well?\n yes", "output": ""} -{"perplexity": 64.8638414009165, "input": "Answer the question by yes or no. Are Are [\"Ligue 1\", \"Bundesliga\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 91.98785092943062, "input": "Answer the question by yes or no. Are Are [\"Netflix\", \"Amazon Prime Video\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 124.02542011997426, "input": "Answer the question by yes or no. Are Are [\"Primark\", \"Shein\"] examples of entities that are similar as well?\n yes", "output": ""} {"perplexity": 73.99080087748042, "input": "Answer the question by yes or no. Are Are [\"Dominos' Pizza\", \"Pizza Hut\"] examples of entities that are similar as well?\n yes", "output": ""} diff --git a/experiments/results/oracle.csv b/experiments/results/oracle.csv index cc8e415b8f2cf0c4d78c59b9162675780ebe3cf2..44b0794262ee5822d3ca9499f69798cb9353ed43 100644 --- a/experiments/results/oracle.csv +++ b/experiments/results/oracle.csv @@ -1,2 +1,2 @@ ,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Avg.\ of others,0.7743314787749431,0.7854235774817461,0.7150896845459409,0.8236406723889734,0.8064321816808586,0.8 +Avg.\ of others,0.7591762385946879,0.7796087768890074,0.7048431401393697,0.8202244450266286,0.8017445523356331,0.8 diff --git a/experiments/results/relbert/relbert.csv b/experiments/results/relbert/relbert.csv index f995a824abd7ceb57475c0ff5af80cc3753af7ba..258d16e9fc32fe74f726b18547d6a720898fc9bb 100644 --- a/experiments/results/relbert/relbert.csv +++ b/experiments/results/relbert/relbert.csv @@ -1,3 +1,3 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -RelBERT extsubscript{BASE},0.6397358257334682,0.247221457266615,0.3634006933792607,0.294899847766671,0.3618060075062887,0.38141276633046073 -RelBERT extsubscript{LARGE},0.6919495773981329,0.28492954165626794,0.26703663262615834,0.47745166898116004,0.5771558725958007,0.459704658651504 +RelBERT extsubscript{BASE},0.5771477448626464,0.15430716481426274,0.3038939729913812,0.2372234914540352,0.28052205268994185,0.3106188853624535 +RelBERT extsubscript{LARGE},0.6396562604483262,0.2014320718825106,0.1978462635306345,0.43589056905544393,0.5271853494153926,0.4004021028664616 diff --git a/experiments/results/word_embedding/fasttext.csv b/experiments/results/word_embedding/fasttext.csv index 847b00a0b86ee103793697658a9e9325461e2cc1..9294d713c619ef5727b5cdd5501c86364bccbbfa 100644 --- a/experiments/results/word_embedding/fasttext.csv +++ b/experiments/results/word_embedding/fasttext.csv @@ -1,2 +1,2 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -fastText extsubscript{pair},0.21892249256854993,0.35358509086278056,0.2021193060600365,0.21267802638876884,0.06702646906771584,0.21086627698957033 +fastText extsubscript{pair},0.07693746305924229,0.2760273946397371,0.12255758782618312,0.14902108492952354,-0.05171325986518229,0.11456605411790075 diff --git a/experiments/results/word_embedding/fasttext_zeroshot.csv b/experiments/results/word_embedding/fasttext_zeroshot.csv index 15db9d06843674e019feaff43cbce140e35e0884..275e9ae64251c7c616bea8cc233742e6da24e58a 100644 --- a/experiments/results/word_embedding/fasttext_zeroshot.csv +++ b/experiments/results/word_embedding/fasttext_zeroshot.csv @@ -1,2 +1,2 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -fastText extsubscript{word},0.2539925444717611,0.10194691310832062,0.07186424564285011,0.23811729660089043,0.20399088272021404,0.17398237650880727 +fastText extsubscript{word},0.2817554078088762,0.12401384192538907,0.03297052324517174,0.20184072287474225,0.20669956234983497,0.16945601164080284 diff --git a/experiments/results_validation/lm_lc/lm.csv b/experiments/results_validation/lm_lc/lm.csv index b8a7b692d3e4f70d877309203693a6cc1375d8e7..95331ec196bcb4c847a2c0eaee77d57080fd9687 100644 --- a/experiments/results_validation/lm_lc/lm.csv +++ b/experiments/results_validation/lm_lc/lm.csv @@ -1,5 +1,5 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-UL2,0.2907151720613708,0.12057302854307113,0.3154014155492828,0.7225421851405445,0.5348408731018605,0.39681453487922597 -Flan-T5 extsubscript{XXL},0.13283330316120076,0.11831228425788855,0.2835580034024802,0.6816006552375126,0.42862599548585717,0.3289860483089878 -OPT extsubscript{13B},0.18293043463913933,-0.07761888712460203,0.4647621820473807,0.6573390078875677,0.5596996742460314,0.3574224823391034 -GPT-3 extsubscript{davinci},0.35067992034557,0.27957870993424616,0.3555847689726289,0.6990387142702854,0.47985019178293675,0.4329464610611334 +Flan-UL2,0.2907151720613708,0.018461583049403076,0.20018664987220575,0.6559525658657038,0.45714396122331424,0.32449198641439947 +Flan-T5 extsubscript{XXL},0.13283330316120076,0.02725281307292835,0.16298382113489318,0.5978301866117808,0.3331876178916079,0.25081754837448217 +OPT extsubscript{13B},0.18293043463913933,-0.11956072831994373,0.41277424265684903,0.6050954840185211,0.48615502030094765,0.31347889065910267 +GPT-3 extsubscript{davinci},0.35067992034557,0.24263794864929758,0.2710491808004202,0.6787863577154594,0.39296798205157973,0.3872242779124654 diff --git a/experiments/results_validation/lm_qa/lm.csv b/experiments/results_validation/lm_qa/lm.csv index cc0738dc2af876a28c0ed1703e18377caa7a409a..706a4caa01cf0211923a3a902b5572d1955dc9fc 100644 --- a/experiments/results_validation/lm_qa/lm.csv +++ b/experiments/results_validation/lm_qa/lm.csv @@ -1,5 +1,5 @@ model,competitor/rival of,friend/ally of,influenced by,known for,similar to,average -Flan-UL2,0.6808655596319833,0.5832720255771066,0.29189794467902375,0.7422547736123747,0.6689277398795099,0.5934436086759997 -Flan-T5 extsubscript{XXL},0.7021188881377755,0.5945757470030195,0.49054018235669705,0.7824381270357208,0.80904098269211,0.6757427854450646 -OPT extsubscript{13B},-0.06148284317747006,0.031650419992556175,0.20394947303547373,0.6042666543095634,0.45951117266497865,0.24757897536502038 -GPT-3 extsubscript{davinci},0.3203180224801527,0.18839535709854865,0.19940041415735907,0.6831170081968841,0.4640309546911916,0.3710523513248273 +Flan-UL2,0.6808655596319833,0.5397815234444518,0.17272741913752265,0.6777484580859251,0.6136278556420641,0.5369501631883893 +Flan-T5 extsubscript{XXL},0.7021188881377755,0.5485727534679771,0.4048022079274249,0.7379466365989169,0.7771447340796342,0.6341170440423458 +OPT extsubscript{13B},-0.06148284317747006,-0.02725281307292835,0.14172506185642886,0.543859405875995,0.36923166098806154,0.1932160944940174 +GPT-3 extsubscript{davinci},0.3203180224801527,0.1380223113693468,0.0717483125648171,0.6434977703112917,0.3745063990021767,0.30961856314555697 diff --git a/experiments/results_validation/qualitative.csv b/experiments/results_validation/qualitative.csv index 4555a1b111d98f9b007d20910d4ab65d2f6f0801..0c9cfa24250e15d92a2296e188dabad9f27ebdc9 100644 --- a/experiments/results_validation/qualitative.csv +++ b/experiments/results_validation/qualitative.csv @@ -1,13 +1,21 @@ -,,top,bottom -"Flan-T5 extsubscript{XXL}",Ally,Darth Vader:Obi-Wan Kenobi,Maximus Decimus Meridius:Juba -,Inf,,Vape:cigarette -Flan-UL2,Ally,,Maximus Decimus Meridius:Juba -,Inf,Rihanna:Stevie Wonder, -,Know,Qualcomm:smartphones, -"OPT extsubscript{13B}",Rival,,"Wickes:ScrewFix, Russia:US" -,Ally,"Darth Vader:Obi-Wan Kenobi, Schindler's List:Baz Luhrmann",Microsoft:OpenAI -,Inf,Rihanna:Stevie Wonder,"UK:Winston Churchill, Vape:cigarette" -,Sim,Domino's:YO! Sushi, -"GPT-3 extsubscript{davinci}",Rival,,Wickes:ScrewFix -,Ally,Darth Vader:Obi-Wan Kenobi, -,Inf,Rihanna:Stevie Wonder,"Vape:cigarette, Liz Truss:Thatcher" \ No newline at end of file +prompt,model,relation,top,bottom +qa,Flan-T5 extsubscript{XXL},Rival,, +qa,Flan-T5 extsubscript{XXL},Ally,Darth Vader:Obi-Wan Kenobi,"Thomas Carlyle:Charles Dickens, Maximus Decimus Meridius:Juba" +qa,Flan-T5 extsubscript{XXL},Inf,,Vape:cigarette +qa,Flan-T5 extsubscript{XXL},Know,, +qa,Flan-T5 extsubscript{XXL},Sim,, +qa,Flan-UL2,Rival,, +qa,Flan-UL2,Ally,,"Owain Glyndwr:Charles VI of France, Maximus Decimus Meridius:Juba" +qa,Flan-UL2,Inf,Rihanna:Stevie Wonder, +qa,Flan-UL2,Know,Qualcomm:smartphones, +qa,Flan-UL2,Sim,, +lc,OPT extsubscript{13B},Rival,Betty White:Charli D'Amelio,Wickes:ScrewFix +lc,OPT extsubscript{13B},Ally,"Darth Vader:Obi-Wan Kenobi, Schindler's List:Baz Luhrmann","Thomas Carlyle:Charles Dickens, Microsoft:OpenAI" +lc,OPT extsubscript{13B},Inf,Rihanna:Stevie Wonder,"UK:Winston Churchill, Vape:cigarette" +lc,OPT extsubscript{13B},Know,, +lc,OPT extsubscript{13B},Sim,Domino's:YO! Sushi, +lc,GPT-3 extsubscript{davinci},Rival,,Wickes:ScrewFix +lc,GPT-3 extsubscript{davinci},Ally,Darth Vader:Obi-Wan Kenobi, +lc,GPT-3 extsubscript{davinci},Inf,Rihanna:Stevie Wonder,"Vape:cigarette, Liz Truss:Thatcher" +lc,GPT-3 extsubscript{davinci},Know,, +lc,GPT-3 extsubscript{davinci},Sim,, diff --git a/experiments/results_validation/qualitative.xlsx b/experiments/results_validation/qualitative.xlsx deleted file mode 100644 index 156de270b2cda78d516d1648c847817d7e6001e7..0000000000000000000000000000000000000000 Binary files a/experiments/results_validation/qualitative.xlsx and /dev/null differ