├── scripts └── evaluation │ ├── evaluate_coverage.sh │ └── evaluate_precision.sh ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── results ├── coverage │ ├── gpt-3.out │ ├── gpt-4.out │ ├── gpt-3.5.out │ ├── m-nta.gpt-3.out │ ├── m-nta.gpt-4.out │ └── m-nta.gpt-3.5.out └── precision │ ├── gpt-3.out │ ├── gpt-4.out │ ├── gpt-3.5.out │ ├── m-nta.gpt-4.out │ ├── m-nta.gpt-3.out │ └── m-nta.gpt-3.5.out ├── src └── evaluation │ ├── evaluate_precision.py │ └── evaluate_coverage.py ├── LICENSE.txt ├── README.md ├── LICENSE_Wikidata.txt └── data └── names └── gpt └── ja.gpt-4.json /scripts/evaluation/evaluate_coverage.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCORE_THRESHOLD=2 4 | SYSTEM=m-nta 5 | PREDICTIONS_DIR=data/names/m-nta/with_gpt-3.5 6 | REFERENCES_DIR=data/names/gold 7 | LOCALES=( ar de en es fr it ja ko ru zh ) 8 | 9 | for locale in ${LOCALES[@]}; do 10 | if [[ ! -f ${PREDICTIONS_DIR}/${locale}.${SYSTEM}.json ]]; then 11 | continue 12 | fi 13 | 14 | python src/evaluation/evaluate_coverage.py \ 15 | --references_path ${REFERENCES_DIR}/${locale}.json \ 16 | --predictions_path ${PREDICTIONS_DIR}/${locale}.${SYSTEM}.json \ 17 | --score_threshold ${SCORE_THRESHOLD} 18 | done -------------------------------------------------------------------------------- /scripts/evaluation/evaluate_precision.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCORE_THRESHOLD=1 4 | SYSTEM=m-nta 5 | PREDICTIONS_DIR=data/names/m-nta/with_gpt-3.5 6 | REFERENCES_DIR=data/names/gold 7 | LOCALES=( ar de en es fr it ja ko ru zh ) 8 | 9 | for locale in ${LOCALES[@]}; do 10 | if [[ ! -f ${PREDICTIONS_DIR}/${locale}.${SYSTEM}.json ]]; then 11 | continue 12 | fi 13 | 14 | python src/evaluation/evaluate_precision.py \ 15 | --references_path ${REFERENCES_DIR}/${locale}.json \ 16 | --predictions_path ${PREDICTIONS_DIR}/${locale}.${SYSTEM}.json \ 17 | --score_threshold ${SCORE_THRESHOLD} 18 | done -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guide 2 | 3 | Thanks for your interest in contributing. This project was released to accompany a research paper for purposes of reproducibility, and beyond its publication there are limited plans for future development of the repository. 4 | 5 | While we welcome new pull requests and issues please note that our response may be limited. Forks and out-of-tree improvements are strongly encouraged. 6 | 7 | ## Before you get started 8 | 9 | By submitting a pull request, you represent that you have the right to license your contribution to Apple and the community, and agree by submitting the patch that your contributions are licensed under the [LICENSE](LICENSE). 10 | 11 | We ask that all community members read and observe our [Code of Conduct](CODE_OF_CONDUCT.md). 12 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies within all project spaces, and it also applies when 49 | an individual is representing the project or its community in public spaces. 50 | Examples of representing a project or community include using an official 51 | project e-mail address, posting via an official social media account, or acting 52 | as an appointed representative at an online or offline event. Representation of 53 | a project may be further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the open source team at [opensource-conduct@group.apple.com](mailto:opensource-conduct@group.apple.com). All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, 71 | available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html) -------------------------------------------------------------------------------- /results/coverage/gpt-3.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-3.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 853 8 | --------------------------- 9 | Coverage - P = 24.3 10 | Coverage - R = 14.6 11 | Coverage - F1 = 18.2 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/gpt/de.gpt-3.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 932 21 | --------------------------- 22 | Coverage - P = 52.4 23 | Coverage - R = 43.4 24 | Coverage - F1 = 47.4 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/es.json... 31 | - Loading predictions from data/names/gpt/es.gpt-3.json... 32 | # of entities in the references: 999 33 | # of entities in the predictions: 938 34 | --------------------------- 35 | Coverage - P = 56.3 36 | Coverage - R = 38.0 37 | Coverage - F1 = 45.3 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/fr.json... 44 | - Loading predictions from data/names/gpt/fr.gpt-3.json... 45 | # of entities in the references: 997 46 | # of entities in the predictions: 936 47 | --------------------------- 48 | Coverage - P = 49.4 49 | Coverage - R = 41.9 50 | Coverage - F1 = 45.4 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/it.json... 57 | - Loading predictions from data/names/gpt/it.gpt-3.json... 58 | # of entities in the references: 995 59 | # of entities in the predictions: 937 60 | --------------------------- 61 | Coverage - P = 52.8 62 | Coverage - R = 46.4 63 | Coverage - F1 = 49.4 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/ja.json... 70 | - Loading predictions from data/names/gpt/ja.gpt-3.json... 71 | # of entities in the references: 997 72 | # of entities in the predictions: 814 73 | --------------------------- 74 | Coverage - P = 23.6 75 | Coverage - R = 19.5 76 | Coverage - F1 = 21.4 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ko.json... 83 | - Loading predictions from data/names/gpt/ko.gpt-3.json... 84 | # of entities in the references: 993 85 | # of entities in the predictions: 851 86 | --------------------------- 87 | Coverage - P = 32.0 88 | Coverage - R = 21.9 89 | Coverage - F1 = 26.0 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ru.json... 96 | - Loading predictions from data/names/gpt/ru.gpt-3.json... 97 | # of entities in the references: 999 98 | # of entities in the predictions: 903 99 | --------------------------- 100 | Coverage - P = 38.5 101 | Coverage - R = 27.9 102 | Coverage - F1 = 32.3 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/zh.json... 109 | - Loading predictions from data/names/gpt/zh.gpt-3.json... 110 | # of entities in the references: 974 111 | # of entities in the predictions: 883 112 | --------------------------- 113 | Coverage - P = 26.2 114 | Coverage - R = 19.1 115 | Coverage - F1 = 22.1 116 | =========================== 117 | 118 | -------------------------------------------------------------------------------- /results/coverage/gpt-4.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-4.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 853 8 | --------------------------- 9 | Coverage - P = 41.8 10 | Coverage - R = 23.2 11 | Coverage - F1 = 29.9 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/gpt/de.gpt-4.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 932 21 | --------------------------- 22 | Coverage - P = 60.2 23 | Coverage - R = 44.7 24 | Coverage - F1 = 51.3 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/es.json... 31 | - Loading predictions from data/names/gpt/es.gpt-4.json... 32 | # of entities in the references: 999 33 | # of entities in the predictions: 938 34 | --------------------------- 35 | Coverage - P = 65.1 36 | Coverage - R = 41.6 37 | Coverage - F1 = 50.7 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/fr.json... 44 | - Loading predictions from data/names/gpt/fr.gpt-4.json... 45 | # of entities in the references: 997 46 | # of entities in the predictions: 936 47 | --------------------------- 48 | Coverage - P = 59.5 49 | Coverage - R = 45.3 50 | Coverage - F1 = 51.4 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/it.json... 57 | - Loading predictions from data/names/gpt/it.gpt-4.json... 58 | # of entities in the references: 995 59 | # of entities in the predictions: 937 60 | --------------------------- 61 | Coverage - P = 61.1 62 | Coverage - R = 49.6 63 | Coverage - F1 = 54.7 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/ja.json... 70 | - Loading predictions from data/names/gpt/ja.gpt-4.json... 71 | # of entities in the references: 997 72 | # of entities in the predictions: 814 73 | --------------------------- 74 | Coverage - P = 42.4 75 | Coverage - R = 27.9 76 | Coverage - F1 = 33.7 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ko.json... 83 | - Loading predictions from data/names/gpt/ko.gpt-4.json... 84 | # of entities in the references: 993 85 | # of entities in the predictions: 851 86 | --------------------------- 87 | Coverage - P = 43.8 88 | Coverage - R = 28.6 89 | Coverage - F1 = 34.6 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ru.json... 96 | - Loading predictions from data/names/gpt/ru.gpt-4.json... 97 | # of entities in the references: 999 98 | # of entities in the predictions: 903 99 | --------------------------- 100 | Coverage - P = 49.3 101 | Coverage - R = 33.9 102 | Coverage - F1 = 40.2 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/zh.json... 109 | - Loading predictions from data/names/gpt/zh.gpt-4.json... 110 | # of entities in the references: 974 111 | # of entities in the predictions: 883 112 | --------------------------- 113 | Coverage - P = 40.6 114 | Coverage - R = 25.5 115 | Coverage - F1 = 31.3 116 | =========================== 117 | 118 | -------------------------------------------------------------------------------- /results/coverage/gpt-3.5.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-3.5.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 853 8 | --------------------------- 9 | Coverage - P = 37.8 10 | Coverage - R = 21.5 11 | Coverage - F1 = 27.4 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/gpt/de.gpt-3.5.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 932 21 | --------------------------- 22 | Coverage - P = 58.0 23 | Coverage - R = 44.8 24 | Coverage - F1 = 50.5 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/es.json... 31 | - Loading predictions from data/names/gpt/es.gpt-3.5.json... 32 | # of entities in the references: 999 33 | # of entities in the predictions: 938 34 | --------------------------- 35 | Coverage - P = 64.2 36 | Coverage - R = 41.8 37 | Coverage - F1 = 50.6 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/fr.json... 44 | - Loading predictions from data/names/gpt/fr.gpt-3.5.json... 45 | # of entities in the references: 997 46 | # of entities in the predictions: 936 47 | --------------------------- 48 | Coverage - P = 56.9 49 | Coverage - R = 45.3 50 | Coverage - F1 = 50.5 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/it.json... 57 | - Loading predictions from data/names/gpt/it.gpt-3.5.json... 58 | # of entities in the references: 995 59 | # of entities in the predictions: 937 60 | --------------------------- 61 | Coverage - P = 59.2 62 | Coverage - R = 49.1 63 | Coverage - F1 = 53.7 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/ja.json... 70 | - Loading predictions from data/names/gpt/ja.gpt-3.5.json... 71 | # of entities in the references: 997 72 | # of entities in the predictions: 814 73 | --------------------------- 74 | Coverage - P = 33.4 75 | Coverage - R = 25.5 76 | Coverage - F1 = 28.9 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ko.json... 83 | - Loading predictions from data/names/gpt/ko.gpt-3.5.json... 84 | # of entities in the references: 993 85 | # of entities in the predictions: 851 86 | --------------------------- 87 | Coverage - P = 39.3 88 | Coverage - R = 26.9 89 | Coverage - F1 = 31.9 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ru.json... 96 | - Loading predictions from data/names/gpt/ru.gpt-3.5.json... 97 | # of entities in the references: 999 98 | # of entities in the predictions: 903 99 | --------------------------- 100 | Coverage - P = 43.1 101 | Coverage - R = 32.2 102 | Coverage - F1 = 36.8 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/zh.json... 109 | - Loading predictions from data/names/gpt/zh.gpt-3.5.json... 110 | # of entities in the references: 974 111 | # of entities in the predictions: 883 112 | --------------------------- 113 | Coverage - P = 35.9 114 | Coverage - R = 24.7 115 | Coverage - F1 = 29.2 116 | =========================== 117 | 118 | -------------------------------------------------------------------------------- /results/coverage/m-nta.gpt-3.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-3/ar.m-nta.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 745 8 | --------------------------- 9 | Coverage - P = 68.4 10 | Coverage - R = 29.6 11 | Coverage - F1 = 41.3 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/m-nta/with_gpt-3/de.m-nta.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 866 21 | --------------------------- 22 | Coverage - P = 72.8 23 | Coverage - R = 47.5 24 | Coverage - F1 = 57.5 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/en.json... 31 | - Loading predictions from data/names/m-nta/with_gpt-3/en.m-nta.json... 32 | # of entities in the references: 1,000 33 | # of entities in the predictions: 527 34 | --------------------------- 35 | Coverage - P = 89.7 36 | Coverage - R = 26.8 37 | Coverage - F1 = 41.3 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/es.json... 44 | - Loading predictions from data/names/m-nta/with_gpt-3/es.m-nta.json... 45 | # of entities in the references: 999 46 | # of entities in the predictions: 886 47 | --------------------------- 48 | Coverage - P = 79.4 49 | Coverage - R = 42.5 50 | Coverage - F1 = 55.4 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/fr.json... 57 | - Loading predictions from data/names/m-nta/with_gpt-3/fr.m-nta.json... 58 | # of entities in the references: 997 59 | # of entities in the predictions: 878 60 | --------------------------- 61 | Coverage - P = 71.7 62 | Coverage - R = 47.5 63 | Coverage - F1 = 57.1 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/it.json... 70 | - Loading predictions from data/names/m-nta/with_gpt-3/it.m-nta.json... 71 | # of entities in the references: 995 72 | # of entities in the predictions: 885 73 | --------------------------- 74 | Coverage - P = 72.0 75 | Coverage - R = 53.3 76 | Coverage - F1 = 61.3 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ja.json... 83 | - Loading predictions from data/names/m-nta/with_gpt-3/ja.m-nta.json... 84 | # of entities in the references: 997 85 | # of entities in the predictions: 682 86 | --------------------------- 87 | Coverage - P = 49.7 88 | Coverage - R = 25.9 89 | Coverage - F1 = 34.0 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ko.json... 96 | - Loading predictions from data/names/m-nta/with_gpt-3/ko.m-nta.json... 97 | # of entities in the references: 993 98 | # of entities in the predictions: 797 99 | --------------------------- 100 | Coverage - P = 70.0 101 | Coverage - R = 38.9 102 | Coverage - F1 = 50.0 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/ru.json... 109 | - Loading predictions from data/names/m-nta/with_gpt-3/ru.m-nta.json... 110 | # of entities in the references: 999 111 | # of entities in the predictions: 803 112 | --------------------------- 113 | Coverage - P = 62.1 114 | Coverage - R = 34.2 115 | Coverage - F1 = 44.1 116 | =========================== 117 | 118 | =========================== 119 | Starting evaluation... 120 | --------------------------- 121 | - Loading references from data/names/gold/zh.json... 122 | - Loading predictions from data/names/m-nta/with_gpt-3/zh.m-nta.json... 123 | # of entities in the references: 974 124 | # of entities in the predictions: 739 125 | --------------------------- 126 | Coverage - P = 51.4 127 | Coverage - R = 26.2 128 | Coverage - F1 = 34.7 129 | =========================== 130 | 131 | -------------------------------------------------------------------------------- /results/coverage/m-nta.gpt-4.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-4/ar.m-nta.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 772 8 | --------------------------- 9 | Coverage - P = 68.2 10 | Coverage - R = 31.6 11 | Coverage - F1 = 43.2 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/m-nta/with_gpt-4/de.m-nta.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 861 21 | --------------------------- 22 | Coverage - P = 71.4 23 | Coverage - R = 47.6 24 | Coverage - F1 = 57.1 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/en.json... 31 | - Loading predictions from data/names/m-nta/with_gpt-4/en.m-nta.json... 32 | # of entities in the references: 1,000 33 | # of entities in the predictions: 527 34 | --------------------------- 35 | Coverage - P = 89.7 36 | Coverage - R = 26.8 37 | Coverage - F1 = 41.3 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/es.json... 44 | - Loading predictions from data/names/m-nta/with_gpt-4/es.m-nta.json... 45 | # of entities in the references: 999 46 | # of entities in the predictions: 886 47 | --------------------------- 48 | Coverage - P = 77.5 49 | Coverage - R = 43.6 50 | Coverage - F1 = 55.8 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/fr.json... 57 | - Loading predictions from data/names/m-nta/with_gpt-4/fr.m-nta.json... 58 | # of entities in the references: 997 59 | # of entities in the predictions: 877 60 | --------------------------- 61 | Coverage - P = 70.9 62 | Coverage - R = 48.1 63 | Coverage - F1 = 57.4 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/it.json... 70 | - Loading predictions from data/names/m-nta/with_gpt-4/it.m-nta.json... 71 | # of entities in the references: 995 72 | # of entities in the predictions: 885 73 | --------------------------- 74 | Coverage - P = 72.7 75 | Coverage - R = 53.5 76 | Coverage - F1 = 61.7 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ja.json... 83 | - Loading predictions from data/names/m-nta/with_gpt-4/ja.m-nta.json... 84 | # of entities in the references: 997 85 | # of entities in the predictions: 683 86 | --------------------------- 87 | Coverage - P = 50.0 88 | Coverage - R = 27.1 89 | Coverage - F1 = 35.2 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ko.json... 96 | - Loading predictions from data/names/m-nta/with_gpt-4/ko.m-nta.json... 97 | # of entities in the references: 993 98 | # of entities in the predictions: 809 99 | --------------------------- 100 | Coverage - P = 68.8 101 | Coverage - R = 40.8 102 | Coverage - F1 = 51.2 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/ru.json... 109 | - Loading predictions from data/names/m-nta/with_gpt-4/ru.m-nta.json... 110 | # of entities in the references: 999 111 | # of entities in the predictions: 816 112 | --------------------------- 113 | Coverage - P = 62.4 114 | Coverage - R = 35.6 115 | Coverage - F1 = 45.3 116 | =========================== 117 | 118 | =========================== 119 | Starting evaluation... 120 | --------------------------- 121 | - Loading references from data/names/gold/zh.json... 122 | - Loading predictions from data/names/m-nta/with_gpt-4/zh.m-nta.json... 123 | # of entities in the references: 974 124 | # of entities in the predictions: 748 125 | --------------------------- 126 | Coverage - P = 52.4 127 | Coverage - R = 28.4 128 | Coverage - F1 = 36.8 129 | =========================== 130 | 131 | -------------------------------------------------------------------------------- /results/coverage/m-nta.gpt-3.5.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ar.m-nta.json... 6 | # of entities in the references: 999 7 | # of entities in the predictions: 769 8 | --------------------------- 9 | Coverage - P = 68.3 10 | Coverage - R = 31.1 11 | Coverage - F1 = 42.7 12 | =========================== 13 | 14 | =========================== 15 | Starting evaluation... 16 | --------------------------- 17 | - Loading references from data/names/gold/de.json... 18 | - Loading predictions from data/names/m-nta/with_gpt-3.5/de.m-nta.json... 19 | # of entities in the references: 990 20 | # of entities in the predictions: 858 21 | --------------------------- 22 | Coverage - P = 72.7 23 | Coverage - R = 47.6 24 | Coverage - F1 = 57.5 25 | =========================== 26 | 27 | =========================== 28 | Starting evaluation... 29 | --------------------------- 30 | - Loading references from data/names/gold/en.json... 31 | - Loading predictions from data/names/m-nta/with_gpt-3.5/en.m-nta.json... 32 | # of entities in the references: 1,000 33 | # of entities in the predictions: 527 34 | --------------------------- 35 | Coverage - P = 89.7 36 | Coverage - R = 26.8 37 | Coverage - F1 = 41.3 38 | =========================== 39 | 40 | =========================== 41 | Starting evaluation... 42 | --------------------------- 43 | - Loading references from data/names/gold/es.json... 44 | - Loading predictions from data/names/m-nta/with_gpt-3.5/es.m-nta.json... 45 | # of entities in the references: 999 46 | # of entities in the predictions: 889 47 | --------------------------- 48 | Coverage - P = 77.2 49 | Coverage - R = 43.4 50 | Coverage - F1 = 55.6 51 | =========================== 52 | 53 | =========================== 54 | Starting evaluation... 55 | --------------------------- 56 | - Loading references from data/names/gold/fr.json... 57 | - Loading predictions from data/names/m-nta/with_gpt-3.5/fr.m-nta.json... 58 | # of entities in the references: 997 59 | # of entities in the predictions: 878 60 | --------------------------- 61 | Coverage - P = 70.7 62 | Coverage - R = 48.2 63 | Coverage - F1 = 57.3 64 | =========================== 65 | 66 | =========================== 67 | Starting evaluation... 68 | --------------------------- 69 | - Loading references from data/names/gold/it.json... 70 | - Loading predictions from data/names/m-nta/with_gpt-3.5/it.m-nta.json... 71 | # of entities in the references: 995 72 | # of entities in the predictions: 883 73 | --------------------------- 74 | Coverage - P = 72.9 75 | Coverage - R = 53.5 76 | Coverage - F1 = 61.7 77 | =========================== 78 | 79 | =========================== 80 | Starting evaluation... 81 | --------------------------- 82 | - Loading references from data/names/gold/ja.json... 83 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ja.m-nta.json... 84 | # of entities in the references: 997 85 | # of entities in the predictions: 686 86 | --------------------------- 87 | Coverage - P = 50.5 88 | Coverage - R = 27.0 89 | Coverage - F1 = 35.2 90 | =========================== 91 | 92 | =========================== 93 | Starting evaluation... 94 | --------------------------- 95 | - Loading references from data/names/gold/ko.json... 96 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ko.m-nta.json... 97 | # of entities in the references: 993 98 | # of entities in the predictions: 808 99 | --------------------------- 100 | Coverage - P = 68.7 101 | Coverage - R = 40.0 102 | Coverage - F1 = 50.6 103 | =========================== 104 | 105 | =========================== 106 | Starting evaluation... 107 | --------------------------- 108 | - Loading references from data/names/gold/ru.json... 109 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ru.m-nta.json... 110 | # of entities in the references: 999 111 | # of entities in the predictions: 811 112 | --------------------------- 113 | Coverage - P = 62.3 114 | Coverage - R = 34.9 115 | Coverage - F1 = 44.8 116 | =========================== 117 | 118 | =========================== 119 | Starting evaluation... 120 | --------------------------- 121 | - Loading references from data/names/gold/zh.json... 122 | - Loading predictions from data/names/m-nta/with_gpt-3.5/zh.m-nta.json... 123 | # of entities in the references: 974 124 | # of entities in the predictions: 749 125 | --------------------------- 126 | Coverage - P = 51.8 127 | Coverage - R = 27.7 128 | Coverage - F1 = 36.1 129 | =========================== 130 | 131 | -------------------------------------------------------------------------------- /results/precision/gpt-3.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-3.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 853 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 305 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 3,322 15 | --------------------------- 16 | Precision - P = 20.8 17 | Precision - R = 95.3 18 | Precision - F1 = 34.1 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/gpt/de.gpt-3.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 932 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 449 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 1,695 35 | --------------------------- 36 | Precision - P = 50.3 37 | Precision - R = 91.4 38 | Precision - F1 = 64.9 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/es.json... 45 | - Loading predictions from data/names/gpt/es.gpt-3.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 938 50 | --------------------------- 51 | Total incorrect names: 571 52 | Identified incorrect names: 512 53 | Total correct names: 3,749 54 | Correct names classified as incorrect: 2,302 55 | --------------------------- 56 | Precision - P = 45.3 57 | Precision - R = 89.7 58 | Precision - F1 = 60.2 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/fr.json... 65 | - Loading predictions from data/names/gpt/fr.gpt-3.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 936 70 | --------------------------- 71 | Total incorrect names: 533 72 | Identified incorrect names: 455 73 | Total correct names: 3,015 74 | Correct names classified as incorrect: 1,736 75 | --------------------------- 76 | Precision - P = 48.9 77 | Precision - R = 85.4 78 | Precision - F1 = 62.2 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/it.json... 85 | - Loading predictions from data/names/gpt/it.gpt-3.json... 86 | # of entities: 999 87 | # of entities with correct names: 999 88 | # of entities with incorrect names: 999 89 | # of entities in the predictions: 937 90 | --------------------------- 91 | Total incorrect names: 267 92 | Identified incorrect names: 221 93 | Total correct names: 2,889 94 | Correct names classified as incorrect: 1,539 95 | --------------------------- 96 | Precision - P = 49.8 97 | Precision - R = 82.8 98 | Precision - F1 = 62.2 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/ja.json... 105 | - Loading predictions from data/names/gpt/ja.gpt-3.json... 106 | # of entities: 1,000 107 | # of entities with correct names: 1,000 108 | # of entities with incorrect names: 1,000 109 | # of entities in the predictions: 814 110 | --------------------------- 111 | Total incorrect names: 507 112 | Identified incorrect names: 489 113 | Total correct names: 2,492 114 | Correct names classified as incorrect: 1,993 115 | --------------------------- 116 | Precision - P = 32.9 117 | Precision - R = 96.4 118 | Precision - F1 = 49.1 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ko.json... 125 | - Loading predictions from data/names/gpt/ko.gpt-3.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 851 130 | --------------------------- 131 | Total incorrect names: 330 132 | Identified incorrect names: 298 133 | Total correct names: 3,544 134 | Correct names classified as incorrect: 2,758 135 | --------------------------- 136 | Precision - P = 28.0 137 | Precision - R = 90.3 138 | Precision - F1 = 42.7 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ru.json... 145 | - Loading predictions from data/names/gpt/ru.gpt-3.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 903 150 | --------------------------- 151 | Total incorrect names: 614 152 | Identified incorrect names: 567 153 | Total correct names: 3,287 154 | Correct names classified as incorrect: 2,383 155 | --------------------------- 156 | Precision - P = 37.7 157 | Precision - R = 92.3 158 | Precision - F1 = 53.5 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/zh.json... 165 | - Loading predictions from data/names/gpt/zh.gpt-3.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 883 170 | --------------------------- 171 | Total incorrect names: 811 172 | Identified incorrect names: 779 173 | Total correct names: 3,277 174 | Correct names classified as incorrect: 2,645 175 | --------------------------- 176 | Precision - P = 34.5 177 | Precision - R = 96.1 178 | Precision - F1 = 50.8 179 | =========================== 180 | 181 | -------------------------------------------------------------------------------- /results/precision/gpt-4.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-4.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 853 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 298 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 2,977 15 | --------------------------- 16 | Precision - P = 28.8 17 | Precision - R = 93.1 18 | Precision - F1 = 44.0 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/gpt/de.gpt-4.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 932 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 452 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 1,654 35 | --------------------------- 36 | Precision - P = 51.6 37 | Precision - R = 92.1 38 | Precision - F1 = 66.1 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/es.json... 45 | - Loading predictions from data/names/gpt/es.gpt-4.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 938 50 | --------------------------- 51 | Total incorrect names: 571 52 | Identified incorrect names: 511 53 | Total correct names: 3,749 54 | Correct names classified as incorrect: 2,162 55 | --------------------------- 56 | Precision - P = 48.6 57 | Precision - R = 89.5 58 | Precision - F1 = 63.0 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/fr.json... 65 | - Loading predictions from data/names/gpt/fr.gpt-4.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 936 70 | --------------------------- 71 | Total incorrect names: 533 72 | Identified incorrect names: 444 73 | Total correct names: 3,015 74 | Correct names classified as incorrect: 1,633 75 | --------------------------- 76 | Precision - P = 51.5 77 | Precision - R = 83.3 78 | Precision - F1 = 63.6 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/it.json... 85 | - Loading predictions from data/names/gpt/it.gpt-4.json... 86 | # of entities: 999 87 | # of entities with correct names: 999 88 | # of entities with incorrect names: 999 89 | # of entities in the predictions: 937 90 | --------------------------- 91 | Total incorrect names: 267 92 | Identified incorrect names: 230 93 | Total correct names: 2,889 94 | Correct names classified as incorrect: 1,446 95 | --------------------------- 96 | Precision - P = 53.0 97 | Precision - R = 86.1 98 | Precision - F1 = 65.6 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/ja.json... 105 | - Loading predictions from data/names/gpt/ja.gpt-4.json... 106 | # of entities: 1,000 107 | # of entities with correct names: 1,000 108 | # of entities with incorrect names: 1,000 109 | # of entities in the predictions: 814 110 | --------------------------- 111 | Total incorrect names: 507 112 | Identified incorrect names: 486 113 | Total correct names: 2,492 114 | Correct names classified as incorrect: 1,783 115 | --------------------------- 116 | Precision - P = 39.8 117 | Precision - R = 95.9 118 | Precision - F1 = 56.3 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ko.json... 125 | - Loading predictions from data/names/gpt/ko.gpt-4.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 851 130 | --------------------------- 131 | Total incorrect names: 330 132 | Identified incorrect names: 293 133 | Total correct names: 3,544 134 | Correct names classified as incorrect: 2,529 135 | --------------------------- 136 | Precision - P = 33.8 137 | Precision - R = 88.8 138 | Precision - F1 = 48.9 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ru.json... 145 | - Loading predictions from data/names/gpt/ru.gpt-4.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 903 150 | --------------------------- 151 | Total incorrect names: 614 152 | Identified incorrect names: 565 153 | Total correct names: 3,287 154 | Correct names classified as incorrect: 2,180 155 | --------------------------- 156 | Precision - P = 42.9 157 | Precision - R = 92.0 158 | Precision - F1 = 58.5 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/zh.json... 165 | - Loading predictions from data/names/gpt/zh.gpt-4.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 883 170 | --------------------------- 171 | Total incorrect names: 811 172 | Identified incorrect names: 787 173 | Total correct names: 3,277 174 | Correct names classified as incorrect: 2,433 175 | --------------------------- 176 | Precision - P = 39.9 177 | Precision - R = 97.0 178 | Precision - F1 = 56.5 179 | =========================== 180 | 181 | -------------------------------------------------------------------------------- /results/precision/gpt-3.5.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/gpt/ar.gpt-3.5.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 853 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 299 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 3,049 15 | --------------------------- 16 | Precision - P = 27.1 17 | Precision - R = 93.4 18 | Precision - F1 = 42.1 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/gpt/de.gpt-3.5.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 932 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 451 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 1,647 35 | --------------------------- 36 | Precision - P = 51.8 37 | Precision - R = 91.9 38 | Precision - F1 = 66.2 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/es.json... 45 | - Loading predictions from data/names/gpt/es.gpt-3.5.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 938 50 | --------------------------- 51 | Total incorrect names: 571 52 | Identified incorrect names: 512 53 | Total correct names: 3,749 54 | Correct names classified as incorrect: 2,155 55 | --------------------------- 56 | Precision - P = 48.8 57 | Precision - R = 89.7 58 | Precision - F1 = 63.2 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/fr.json... 65 | - Loading predictions from data/names/gpt/fr.gpt-3.5.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 936 70 | --------------------------- 71 | Total incorrect names: 533 72 | Identified incorrect names: 439 73 | Total correct names: 3,015 74 | Correct names classified as incorrect: 1,631 75 | --------------------------- 76 | Precision - P = 51.4 77 | Precision - R = 82.4 78 | Precision - F1 = 63.3 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/it.json... 85 | - Loading predictions from data/names/gpt/it.gpt-3.5.json... 86 | # of entities: 999 87 | # of entities with correct names: 999 88 | # of entities with incorrect names: 999 89 | # of entities in the predictions: 937 90 | --------------------------- 91 | Total incorrect names: 267 92 | Identified incorrect names: 227 93 | Total correct names: 2,889 94 | Correct names classified as incorrect: 1,460 95 | --------------------------- 96 | Precision - P = 52.5 97 | Precision - R = 85.0 98 | Precision - F1 = 64.9 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/ja.json... 105 | - Loading predictions from data/names/gpt/ja.gpt-3.5.json... 106 | # of entities: 1,000 107 | # of entities with correct names: 1,000 108 | # of entities with incorrect names: 1,000 109 | # of entities in the predictions: 814 110 | --------------------------- 111 | Total incorrect names: 507 112 | Identified incorrect names: 488 113 | Total correct names: 2,492 114 | Correct names classified as incorrect: 1,843 115 | --------------------------- 116 | Precision - P = 37.9 117 | Precision - R = 96.3 118 | Precision - F1 = 54.4 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ko.json... 125 | - Loading predictions from data/names/gpt/ko.gpt-3.5.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 851 130 | --------------------------- 131 | Total incorrect names: 330 132 | Identified incorrect names: 294 133 | Total correct names: 3,544 134 | Correct names classified as incorrect: 2,591 135 | --------------------------- 136 | Precision - P = 32.2 137 | Precision - R = 89.1 138 | Precision - F1 = 47.3 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ru.json... 145 | - Loading predictions from data/names/gpt/ru.gpt-3.5.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 903 150 | --------------------------- 151 | Total incorrect names: 614 152 | Identified incorrect names: 554 153 | Total correct names: 3,287 154 | Correct names classified as incorrect: 2,246 155 | --------------------------- 156 | Precision - P = 40.9 157 | Precision - R = 90.2 158 | Precision - F1 = 56.3 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/zh.json... 165 | - Loading predictions from data/names/gpt/zh.gpt-3.5.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 883 170 | --------------------------- 171 | Total incorrect names: 811 172 | Identified incorrect names: 784 173 | Total correct names: 3,277 174 | Correct names classified as incorrect: 2,461 175 | --------------------------- 176 | Precision - P = 39.1 177 | Precision - R = 96.7 178 | Precision - F1 = 55.7 179 | =========================== 180 | 181 | -------------------------------------------------------------------------------- /src/evaluation/evaluate_precision.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | """Evaluate a set of translations against a set of references. 4 | 5 | Reads the references contained in --references_path and the 6 | translations contained in --predictions_path and performs an 7 | evaluation of the translation using a scorer specified by --scorer. 8 | 9 | Typical usage example: 10 | 11 | python src/evaluation/evaluate_translations.py \ 12 | --references_path references.json \ 13 | --predictions_path predictions.json 14 | 15 | """ 16 | 17 | import argparse 18 | import json 19 | from typing import Dict, List 20 | 21 | 22 | def normalize_value(value: str) -> str: 23 | value = value.lower() 24 | value = "".join([i for i in value if i.isalnum() or i == " "]) 25 | return value 26 | 27 | 28 | def read_file(input_path: str, field_name: str) -> Dict[str, List[str]]: 29 | data: Dict[int, List[str]] = {} 30 | 31 | with open(input_path) as f: 32 | for line in f: 33 | line = line.strip() 34 | if not line: 35 | continue 36 | 37 | line_data = json.loads(line) 38 | if field_name in line_data: 39 | data[line_data["wikidata_id"]] = [ 40 | normalize_value(v) for v in line_data[field_name] 41 | ] 42 | 43 | return data 44 | 45 | 46 | def read_predictions(input_path: str, threshold: int) -> Dict[str, List[str]]: 47 | data: Dict[int, List[str]] = {} 48 | 49 | with open(input_path) as f: 50 | for line in f: 51 | line = line.strip() 52 | if not line: 53 | continue 54 | 55 | line_data = json.loads(line) 56 | wikidata_id = line_data["wikidata_id"] 57 | values = line_data["values"] 58 | values = [normalize_value(v) for s, v, *_ in values if s >= threshold] 59 | values = set(values) 60 | 61 | if values: 62 | data[wikidata_id] = values 63 | 64 | return data 65 | 66 | 67 | if __name__ == "__main__": 68 | parser = argparse.ArgumentParser() 69 | 70 | parser.add_argument( 71 | "--references_path", 72 | type=str, 73 | required=True, 74 | help="Path to the JSONL file containing the references.", 75 | ) 76 | parser.add_argument( 77 | "--predictions_path", 78 | type=str, 79 | required=True, 80 | help="Path to the JSONL file containing the predictions.", 81 | ) 82 | parser.add_argument( 83 | "--wikidata_ids_path", 84 | type=str, 85 | required=False, 86 | help="Allows the evaluation to be performed only on the subset of entities specified in this .txt file.", 87 | ) 88 | parser.add_argument( 89 | "--print_pairwise_scores", 90 | action="store_true", 91 | help="If set, prints reference-prediction pairs.", 92 | ) 93 | parser.add_argument( 94 | "--quiet", 95 | action="store_true", 96 | help="Use this flag to reduce the verbosity of the output.", 97 | ) 98 | parser.add_argument( 99 | "--score_threshold", 100 | type=int, 101 | default=0, 102 | help="Minimum score for the predictions to be evaluated.", 103 | ) 104 | 105 | args = parser.parse_args() 106 | 107 | print("===========================") 108 | print("Starting evaluation...") 109 | print("---------------------------") 110 | 111 | # Load references. 112 | print(f"- Loading references from {args.references_path}...") 113 | references_correct = read_file(args.references_path, field_name="correct_values") 114 | references_incorrect = read_file( 115 | args.references_path, field_name="incorrect_values" 116 | ) 117 | 118 | # Load predictions. 119 | print(f"- Loading predictions from {args.predictions_path}...") 120 | predictions = read_predictions(args.predictions_path, args.score_threshold) 121 | 122 | # Read Wikidata IDs if provided. 123 | if args.wikidata_ids_path: 124 | wikidata_ids = set() 125 | 126 | with open(args.wikidata_ids_path) as f: 127 | for line in f: 128 | line = line.strip() 129 | if not line: 130 | continue 131 | 132 | wikidata_id = line.strip() 133 | wikidata_ids.add(wikidata_id) 134 | 135 | num_entities: int = 0 136 | num_incorrect_names: int = 0 137 | num_correct_names: int = 0 138 | num_true_incorrect: int = 0 139 | num_false_incorrect: int = 0 140 | 141 | all_ids = set(references_correct.keys()) 142 | all_ids.update(set(references_incorrect.keys())) 143 | all_ids.update(set(predictions.keys())) 144 | 145 | for entity_id in sorted(all_ids): 146 | if args.wikidata_ids_path and entity_id not in wikidata_ids: 147 | continue 148 | 149 | num_entities += 1 150 | instance_predictions = predictions.get(entity_id, []) 151 | 152 | if entity_id in references_incorrect: 153 | incorrect_names = references_incorrect[entity_id] 154 | num_incorrect_names += len(incorrect_names) 155 | 156 | for incorrect_name in incorrect_names: 157 | if incorrect_name not in instance_predictions: 158 | num_true_incorrect += 1 159 | 160 | if entity_id in references_correct: 161 | correct_names = references_correct[entity_id] 162 | num_correct_names += len(correct_names) 163 | 164 | for correct_name in correct_names: 165 | if correct_name not in instance_predictions: 166 | num_false_incorrect += 1 167 | 168 | recall = num_true_incorrect / num_incorrect_names 169 | precision = (num_correct_names - num_false_incorrect + num_true_incorrect) / ( 170 | num_correct_names + num_incorrect_names 171 | ) 172 | f1 = 2 * precision * recall / (precision + recall) 173 | 174 | if not args.quiet: 175 | print(f" # of entities: {len(all_ids):,}") 176 | print(f" # of entities with correct names: {len(references_correct):,}") 177 | print(f" # of entities with incorrect names: {len(references_incorrect):,}") 178 | print(f" # of entities in the predictions: {len(predictions):,}") 179 | print("---------------------------") 180 | print(f" Total incorrect names: {num_incorrect_names:,}") 181 | print(f" Identified incorrect names: {num_true_incorrect:,}") 182 | print(f" Total correct names: {num_correct_names:,}") 183 | print(f" Correct names classified as incorrect: {num_false_incorrect:,}") 184 | print("---------------------------") 185 | print(f" Precision - P = {100 * precision:0.1f}") 186 | print(f" Precision - R = {100 * recall:0.1f}") 187 | print(f" Precision - F1 = {100 * f1:0.1f}") 188 | print("===========================") 189 | print() 190 | 191 | if args.quiet: 192 | print(f"{100.*recall:0.1f} {100.*precision:0.1f} {100 * f1:0.1f}") 193 | -------------------------------------------------------------------------------- /results/precision/m-nta.gpt-4.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-4/ar.m-nta.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 869 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 282 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 1,464 15 | --------------------------- 16 | Precision - P = 64.3 17 | Precision - R = 88.1 18 | Precision - F1 = 74.4 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/m-nta/with_gpt-4/de.m-nta.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 939 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 409 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 881 35 | --------------------------- 36 | Precision - P = 72.5 37 | Precision - R = 83.3 38 | Precision - F1 = 77.5 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/en.json... 45 | - Loading predictions from data/names/m-nta/with_gpt-4/en.m-nta.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 776 50 | --------------------------- 51 | Total incorrect names: 219 52 | Identified incorrect names: 175 53 | Total correct names: 2,618 54 | Correct names classified as incorrect: 1,246 55 | --------------------------- 56 | Precision - P = 54.5 57 | Precision - R = 79.9 58 | Precision - F1 = 64.8 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/es.json... 65 | - Loading predictions from data/names/m-nta/with_gpt-4/es.m-nta.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 951 70 | --------------------------- 71 | Total incorrect names: 571 72 | Identified incorrect names: 447 73 | Total correct names: 3,749 74 | Correct names classified as incorrect: 1,083 75 | --------------------------- 76 | Precision - P = 72.1 77 | Precision - R = 78.3 78 | Precision - F1 = 75.0 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/fr.json... 85 | - Loading predictions from data/names/m-nta/with_gpt-4/fr.m-nta.json... 86 | # of entities: 1,000 87 | # of entities with correct names: 1,000 88 | # of entities with incorrect names: 1,000 89 | # of entities in the predictions: 946 90 | --------------------------- 91 | Total incorrect names: 533 92 | Identified incorrect names: 368 93 | Total correct names: 3,015 94 | Correct names classified as incorrect: 846 95 | --------------------------- 96 | Precision - P = 71.5 97 | Precision - R = 69.0 98 | Precision - F1 = 70.3 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/it.json... 105 | - Loading predictions from data/names/m-nta/with_gpt-4/it.m-nta.json... 106 | # of entities: 999 107 | # of entities with correct names: 999 108 | # of entities with incorrect names: 999 109 | # of entities in the predictions: 952 110 | --------------------------- 111 | Total incorrect names: 267 112 | Identified incorrect names: 193 113 | Total correct names: 2,889 114 | Correct names classified as incorrect: 585 115 | --------------------------- 116 | Precision - P = 79.1 117 | Precision - R = 72.3 118 | Precision - F1 = 75.5 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ja.json... 125 | - Loading predictions from data/names/m-nta/with_gpt-4/ja.m-nta.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 829 130 | --------------------------- 131 | Total incorrect names: 507 132 | Identified incorrect names: 465 133 | Total correct names: 2,492 134 | Correct names classified as incorrect: 1,341 135 | --------------------------- 136 | Precision - P = 53.9 137 | Precision - R = 91.7 138 | Precision - F1 = 67.9 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ko.json... 145 | - Loading predictions from data/names/m-nta/with_gpt-4/ko.m-nta.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 874 150 | --------------------------- 151 | Total incorrect names: 330 152 | Identified incorrect names: 268 153 | Total correct names: 3,544 154 | Correct names classified as incorrect: 989 155 | --------------------------- 156 | Precision - P = 72.9 157 | Precision - R = 81.2 158 | Precision - F1 = 76.8 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/ru.json... 165 | - Loading predictions from data/names/m-nta/with_gpt-4/ru.m-nta.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 923 170 | --------------------------- 171 | Total incorrect names: 614 172 | Identified incorrect names: 483 173 | Total correct names: 3,287 174 | Correct names classified as incorrect: 1,485 175 | --------------------------- 176 | Precision - P = 58.6 177 | Precision - R = 78.7 178 | Precision - F1 = 67.1 179 | =========================== 180 | 181 | =========================== 182 | Starting evaluation... 183 | --------------------------- 184 | - Loading references from data/names/gold/zh.json... 185 | - Loading predictions from data/names/m-nta/with_gpt-4/zh.m-nta.json... 186 | # of entities: 1,000 187 | # of entities with correct names: 1,000 188 | # of entities with incorrect names: 1,000 189 | # of entities in the predictions: 896 190 | --------------------------- 191 | Total incorrect names: 811 192 | Identified incorrect names: 752 193 | Total correct names: 3,277 194 | Correct names classified as incorrect: 1,622 195 | --------------------------- 196 | Precision - P = 58.9 197 | Precision - R = 92.7 198 | Precision - F1 = 72.0 199 | =========================== 200 | 201 | -------------------------------------------------------------------------------- /results/precision/m-nta.gpt-3.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-3/ar.m-nta.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 869 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 287 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 1,549 15 | --------------------------- 16 | Precision - P = 62.4 17 | Precision - R = 89.7 18 | Precision - F1 = 73.6 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/m-nta/with_gpt-3/de.m-nta.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 939 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 406 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 875 35 | --------------------------- 36 | Precision - P = 72.6 37 | Precision - R = 82.7 38 | Precision - F1 = 77.3 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/en.json... 45 | - Loading predictions from data/names/m-nta/with_gpt-3/en.m-nta.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 776 50 | --------------------------- 51 | Total incorrect names: 219 52 | Identified incorrect names: 175 53 | Total correct names: 2,618 54 | Correct names classified as incorrect: 1,246 55 | --------------------------- 56 | Precision - P = 54.5 57 | Precision - R = 79.9 58 | Precision - F1 = 64.8 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/es.json... 65 | - Loading predictions from data/names/m-nta/with_gpt-3/es.m-nta.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 951 70 | --------------------------- 71 | Total incorrect names: 571 72 | Identified incorrect names: 445 73 | Total correct names: 3,749 74 | Correct names classified as incorrect: 1,098 75 | --------------------------- 76 | Precision - P = 71.7 77 | Precision - R = 77.9 78 | Precision - F1 = 74.7 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/fr.json... 85 | - Loading predictions from data/names/m-nta/with_gpt-3/fr.m-nta.json... 86 | # of entities: 1,000 87 | # of entities with correct names: 1,000 88 | # of entities with incorrect names: 1,000 89 | # of entities in the predictions: 946 90 | --------------------------- 91 | Total incorrect names: 533 92 | Identified incorrect names: 366 93 | Total correct names: 3,015 94 | Correct names classified as incorrect: 858 95 | --------------------------- 96 | Precision - P = 71.1 97 | Precision - R = 68.7 98 | Precision - F1 = 69.9 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/it.json... 105 | - Loading predictions from data/names/m-nta/with_gpt-3/it.m-nta.json... 106 | # of entities: 999 107 | # of entities with correct names: 999 108 | # of entities with incorrect names: 999 109 | # of entities in the predictions: 952 110 | --------------------------- 111 | Total incorrect names: 267 112 | Identified incorrect names: 191 113 | Total correct names: 2,889 114 | Correct names classified as incorrect: 585 115 | --------------------------- 116 | Precision - P = 79.1 117 | Precision - R = 71.5 118 | Precision - F1 = 75.1 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ja.json... 125 | - Loading predictions from data/names/m-nta/with_gpt-3/ja.m-nta.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 829 130 | --------------------------- 131 | Total incorrect names: 507 132 | Identified incorrect names: 466 133 | Total correct names: 2,492 134 | Correct names classified as incorrect: 1,420 135 | --------------------------- 136 | Precision - P = 51.3 137 | Precision - R = 91.9 138 | Precision - F1 = 65.8 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ko.json... 145 | - Loading predictions from data/names/m-nta/with_gpt-3/ko.m-nta.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 874 150 | --------------------------- 151 | Total incorrect names: 330 152 | Identified incorrect names: 269 153 | Total correct names: 3,544 154 | Correct names classified as incorrect: 1,017 155 | --------------------------- 156 | Precision - P = 72.2 157 | Precision - R = 81.5 158 | Precision - F1 = 76.6 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/ru.json... 165 | - Loading predictions from data/names/m-nta/with_gpt-3/ru.m-nta.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 923 170 | --------------------------- 171 | Total incorrect names: 614 172 | Identified incorrect names: 483 173 | Total correct names: 3,287 174 | Correct names classified as incorrect: 1,522 175 | --------------------------- 176 | Precision - P = 57.6 177 | Precision - R = 78.7 178 | Precision - F1 = 66.5 179 | =========================== 180 | 181 | =========================== 182 | Starting evaluation... 183 | --------------------------- 184 | - Loading references from data/names/gold/zh.json... 185 | - Loading predictions from data/names/m-nta/with_gpt-3/zh.m-nta.json... 186 | # of entities: 1,000 187 | # of entities with correct names: 1,000 188 | # of entities with incorrect names: 1,000 189 | # of entities in the predictions: 896 190 | --------------------------- 191 | Total incorrect names: 811 192 | Identified incorrect names: 742 193 | Total correct names: 3,277 194 | Correct names classified as incorrect: 1,702 195 | --------------------------- 196 | Precision - P = 56.7 197 | Precision - R = 91.5 198 | Precision - F1 = 70.0 199 | =========================== 200 | 201 | -------------------------------------------------------------------------------- /results/precision/m-nta.gpt-3.5.out: -------------------------------------------------------------------------------- 1 | =========================== 2 | Starting evaluation... 3 | --------------------------- 4 | - Loading references from data/names/gold/ar.json... 5 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ar.m-nta.json... 6 | # of entities: 1,000 7 | # of entities with correct names: 1,000 8 | # of entities with incorrect names: 1,000 9 | # of entities in the predictions: 869 10 | --------------------------- 11 | Total incorrect names: 320 12 | Identified incorrect names: 283 13 | Total correct names: 3,893 14 | Correct names classified as incorrect: 1,474 15 | --------------------------- 16 | Precision - P = 64.1 17 | Precision - R = 88.4 18 | Precision - F1 = 74.4 19 | =========================== 20 | 21 | =========================== 22 | Starting evaluation... 23 | --------------------------- 24 | - Loading references from data/names/gold/de.json... 25 | - Loading predictions from data/names/m-nta/with_gpt-3.5/de.m-nta.json... 26 | # of entities: 1,000 27 | # of entities with correct names: 999 28 | # of entities with incorrect names: 999 29 | # of entities in the predictions: 939 30 | --------------------------- 31 | Total incorrect names: 491 32 | Identified incorrect names: 408 33 | Total correct names: 3,007 34 | Correct names classified as incorrect: 870 35 | --------------------------- 36 | Precision - P = 72.8 37 | Precision - R = 83.1 38 | Precision - F1 = 77.6 39 | =========================== 40 | 41 | =========================== 42 | Starting evaluation... 43 | --------------------------- 44 | - Loading references from data/names/gold/en.json... 45 | - Loading predictions from data/names/m-nta/with_gpt-3.5/en.m-nta.json... 46 | # of entities: 1,000 47 | # of entities with correct names: 1,000 48 | # of entities with incorrect names: 1,000 49 | # of entities in the predictions: 776 50 | --------------------------- 51 | Total incorrect names: 219 52 | Identified incorrect names: 175 53 | Total correct names: 2,618 54 | Correct names classified as incorrect: 1,246 55 | --------------------------- 56 | Precision - P = 54.5 57 | Precision - R = 79.9 58 | Precision - F1 = 64.8 59 | =========================== 60 | 61 | =========================== 62 | Starting evaluation... 63 | --------------------------- 64 | - Loading references from data/names/gold/es.json... 65 | - Loading predictions from data/names/m-nta/with_gpt-3.5/es.m-nta.json... 66 | # of entities: 1,000 67 | # of entities with correct names: 1,000 68 | # of entities with incorrect names: 1,000 69 | # of entities in the predictions: 951 70 | --------------------------- 71 | Total incorrect names: 571 72 | Identified incorrect names: 447 73 | Total correct names: 3,749 74 | Correct names classified as incorrect: 1,089 75 | --------------------------- 76 | Precision - P = 71.9 77 | Precision - R = 78.3 78 | Precision - F1 = 75.0 79 | =========================== 80 | 81 | =========================== 82 | Starting evaluation... 83 | --------------------------- 84 | - Loading references from data/names/gold/fr.json... 85 | - Loading predictions from data/names/m-nta/with_gpt-3.5/fr.m-nta.json... 86 | # of entities: 1,000 87 | # of entities with correct names: 1,000 88 | # of entities with incorrect names: 1,000 89 | # of entities in the predictions: 946 90 | --------------------------- 91 | Total incorrect names: 533 92 | Identified incorrect names: 366 93 | Total correct names: 3,015 94 | Correct names classified as incorrect: 846 95 | --------------------------- 96 | Precision - P = 71.4 97 | Precision - R = 68.7 98 | Precision - F1 = 70.0 99 | =========================== 100 | 101 | =========================== 102 | Starting evaluation... 103 | --------------------------- 104 | - Loading references from data/names/gold/it.json... 105 | - Loading predictions from data/names/m-nta/with_gpt-3.5/it.m-nta.json... 106 | # of entities: 999 107 | # of entities with correct names: 999 108 | # of entities with incorrect names: 999 109 | # of entities in the predictions: 952 110 | --------------------------- 111 | Total incorrect names: 267 112 | Identified incorrect names: 192 113 | Total correct names: 2,889 114 | Correct names classified as incorrect: 592 115 | --------------------------- 116 | Precision - P = 78.9 117 | Precision - R = 71.9 118 | Precision - F1 = 75.2 119 | =========================== 120 | 121 | =========================== 122 | Starting evaluation... 123 | --------------------------- 124 | - Loading references from data/names/gold/ja.json... 125 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ja.m-nta.json... 126 | # of entities: 1,000 127 | # of entities with correct names: 1,000 128 | # of entities with incorrect names: 1,000 129 | # of entities in the predictions: 829 130 | --------------------------- 131 | Total incorrect names: 507 132 | Identified incorrect names: 464 133 | Total correct names: 2,492 134 | Correct names classified as incorrect: 1,372 135 | --------------------------- 136 | Precision - P = 52.8 137 | Precision - R = 91.5 138 | Precision - F1 = 67.0 139 | =========================== 140 | 141 | =========================== 142 | Starting evaluation... 143 | --------------------------- 144 | - Loading references from data/names/gold/ko.json... 145 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ko.m-nta.json... 146 | # of entities: 1,000 147 | # of entities with correct names: 1,000 148 | # of entities with incorrect names: 1,000 149 | # of entities in the predictions: 874 150 | --------------------------- 151 | Total incorrect names: 330 152 | Identified incorrect names: 268 153 | Total correct names: 3,544 154 | Correct names classified as incorrect: 995 155 | --------------------------- 156 | Precision - P = 72.7 157 | Precision - R = 81.2 158 | Precision - F1 = 76.7 159 | =========================== 160 | 161 | =========================== 162 | Starting evaluation... 163 | --------------------------- 164 | - Loading references from data/names/gold/ru.json... 165 | - Loading predictions from data/names/m-nta/with_gpt-3.5/ru.m-nta.json... 166 | # of entities: 1,000 167 | # of entities with correct names: 1,000 168 | # of entities with incorrect names: 1,000 169 | # of entities in the predictions: 923 170 | --------------------------- 171 | Total incorrect names: 614 172 | Identified incorrect names: 480 173 | Total correct names: 3,287 174 | Correct names classified as incorrect: 1,488 175 | --------------------------- 176 | Precision - P = 58.4 177 | Precision - R = 78.2 178 | Precision - F1 = 66.9 179 | =========================== 180 | 181 | =========================== 182 | Starting evaluation... 183 | --------------------------- 184 | - Loading references from data/names/gold/zh.json... 185 | - Loading predictions from data/names/m-nta/with_gpt-3.5/zh.m-nta.json... 186 | # of entities: 1,000 187 | # of entities with correct names: 1,000 188 | # of entities with incorrect names: 1,000 189 | # of entities in the predictions: 896 190 | --------------------------- 191 | Total incorrect names: 811 192 | Identified incorrect names: 752 193 | Total correct names: 3,277 194 | Correct names classified as incorrect: 1,656 195 | --------------------------- 196 | Precision - P = 58.0 197 | Precision - R = 92.7 198 | Precision - F1 = 71.4 199 | =========================== 200 | 201 | -------------------------------------------------------------------------------- /src/evaluation/evaluate_coverage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | """Evaluate a set of translations against a set of references. 4 | 5 | Reads the references contained in --references_path and the 6 | translations contained in --predictions_path and performs an 7 | evaluation of the translation using a scorer specified by --scorer. 8 | 9 | Typical usage example: 10 | 11 | python src/evaluation/evaluate_translations.py \ 12 | --references_path references.json \ 13 | --predictions_path predictions.json 14 | 15 | """ 16 | 17 | import argparse 18 | import json 19 | from typing import Dict, List 20 | 21 | 22 | def normalize_value(value: str) -> str: 23 | value = value.lower() 24 | value = "".join([i for i in value if i.isalnum() or i == " "]) 25 | return value 26 | 27 | 28 | def read_references(input_path: str) -> Dict[str, List[str]]: 29 | data: Dict[int, List[str]] = {} 30 | 31 | with open(input_path) as f: 32 | for line in f: 33 | line = line.strip() 34 | if not line: 35 | continue 36 | 37 | line_data = json.loads(line) 38 | wikidata_id = line_data["wikidata_id"] 39 | values = line_data["correct_values"] 40 | values = [normalize_value(v) for v in values] 41 | values = set(values) 42 | 43 | if values: 44 | data[wikidata_id] = values 45 | 46 | return data 47 | 48 | 49 | def read_predictions(input_path: str, threshold: int) -> Dict[str, List[str]]: 50 | data: Dict[int, List[str]] = {} 51 | 52 | with open(input_path) as f: 53 | for line in f: 54 | line = line.strip() 55 | if not line: 56 | continue 57 | 58 | line_data = json.loads(line) 59 | wikidata_id = line_data["wikidata_id"] 60 | values = line_data["values"] 61 | values = [normalize_value(v) for s, v, *_ in values if s >= threshold] 62 | values = set(values) 63 | 64 | if values: 65 | data[wikidata_id] = values 66 | 67 | return data 68 | 69 | 70 | def compute_micro_f1( 71 | precision_scores: List[List[float]], 72 | recall_scores: List[List[float]], 73 | ): 74 | precision_num = sum([sum(scores) for scores in precision_scores]) 75 | precision_den = sum([len(scores) for scores in precision_scores]) 76 | precision = precision_num / precision_den 77 | 78 | recall_num = sum([sum(scores) for scores in recall_scores]) 79 | recall_den = sum([len(scores) for scores in recall_scores]) 80 | recall = recall_num / recall_den 81 | 82 | f1 = 2 * precision * recall / (precision + recall) 83 | 84 | return precision, recall, f1 85 | 86 | 87 | def compute_macro_f1( 88 | precision_scores: List[List[float]], 89 | recall_scores: List[List[float]], 90 | ): 91 | precision_scores = [sum(scores) / len(scores) for scores in precision_scores] 92 | recall_scores = [sum(scores) / len(scores) for scores in recall_scores] 93 | 94 | precision = sum(precision_scores) / len(precision_scores) 95 | recall = sum(recall_scores) / len(recall_scores) 96 | 97 | f1 = 2 * precision * recall / (precision + recall) 98 | 99 | return precision, recall, f1 100 | 101 | 102 | if __name__ == "__main__": 103 | parser = argparse.ArgumentParser() 104 | 105 | parser.add_argument( 106 | "--references_path", 107 | type=str, 108 | required=True, 109 | help="Path to the JSONL file containing the references.", 110 | ) 111 | parser.add_argument( 112 | "--predictions_path", 113 | type=str, 114 | required=True, 115 | help="Path to the JSONL file containing the predictions.", 116 | ) 117 | parser.add_argument( 118 | "--wikidata_ids_path", 119 | type=str, 120 | required=False, 121 | help="Allows the evaluation to be performed only on the subset of entities specified in this .txt file.", 122 | ) 123 | parser.add_argument( 124 | "--print_pairwise_scores", 125 | action="store_true", 126 | help="If set, prints reference-prediction pairs.", 127 | ) 128 | parser.add_argument( 129 | "--quiet", 130 | action="store_true", 131 | help="Use this flag to reduce the verbosity of the output.", 132 | ) 133 | parser.add_argument( 134 | "--score_threshold", 135 | type=int, 136 | default=0, 137 | help="Minimum score for the predictions to be evaluated.", 138 | ) 139 | 140 | args = parser.parse_args() 141 | 142 | print("===========================") 143 | print("Starting evaluation...") 144 | print("---------------------------") 145 | 146 | # Load references. 147 | print(f"- Loading references from {args.references_path}...") 148 | references = read_references(args.references_path) 149 | 150 | # Load predictions. 151 | print(f"- Loading predictions from {args.predictions_path}...") 152 | predictions = read_predictions(args.predictions_path, args.score_threshold) 153 | 154 | # Read Wikidata IDs if provided. 155 | if args.wikidata_ids_path: 156 | wikidata_ids = set() 157 | 158 | with open(args.wikidata_ids_path) as f: 159 | for line in f: 160 | line = line.strip() 161 | if not line: 162 | continue 163 | 164 | wikidata_id = line.strip() 165 | wikidata_ids.add(wikidata_id) 166 | 167 | precision_scores = [] 168 | recall_scores = [] 169 | 170 | # Compute precision scores for all instances in the predictions. 171 | for id, instance_predictions in predictions.items(): 172 | if args.wikidata_ids_path and id not in wikidata_ids: 173 | continue 174 | 175 | if id not in references: 176 | continue 177 | 178 | instance_references = references[id] 179 | instance_scores = [] 180 | 181 | for prediction in instance_predictions: 182 | if prediction in instance_references: 183 | score = 1.0 184 | else: 185 | score = 0.0 186 | instance_scores.append(score) 187 | 188 | precision_scores.append(instance_scores) 189 | 190 | # If arg.print_pairwise_scores is set, print the scores for each entity. 191 | if args.print_pairwise_scores: 192 | print(id) 193 | print(" Gold:", instance_references) 194 | print(" Pred:", instance_predictions) 195 | _score = sum(instance_scores) / len(instance_scores) 196 | print(f" Precision: {_score}") 197 | print() 198 | 199 | # Compute recall scores for all instances in the references. 200 | for id, instance_references in references.items(): 201 | if args.wikidata_ids_path and id not in wikidata_ids: 202 | continue 203 | 204 | instance_predictions = predictions.get(id, []) 205 | 206 | instance_scores = [] 207 | for reference in instance_references: 208 | if reference in instance_predictions: 209 | score = 1.0 210 | else: 211 | score = 0.0 212 | instance_scores.append(score) 213 | 214 | recall_scores.append(instance_scores) 215 | 216 | # If arg.print_pairwise_scores is set, print the scores for each entity. 217 | if args.print_pairwise_scores: 218 | print(id) 219 | print(" Gold:", instance_references) 220 | print(" Pred:", instance_predictions) 221 | _score = sum(instance_scores) / len(instance_scores) 222 | print(f" Recall: {_score}") 223 | print() 224 | 225 | if not args.quiet: 226 | print(f" # of entities in the references: {len(references):,}") 227 | print(f" # of entities in the predictions: {len(predictions):,}") 228 | print("---------------------------") 229 | 230 | precision, recall, f1 = compute_micro_f1(precision_scores, recall_scores) 231 | 232 | if not args.quiet: 233 | print(f" Coverage - P = {100.*precision:0.1f}") 234 | print(f" Coverage - R = {100.*recall:0.1f}") 235 | print(f" Coverage - F1 = {100.*f1:0.1f}") 236 | print("===========================") 237 | print() 238 | 239 | if args.quiet: 240 | print(f"{100.*precision:0.2f} {100.*recall:0.2f} {100.*f1:0.2f}") 241 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. 177 | 178 | END OF TERMS AND CONDITIONS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MKGE: Multilingual Knowledge Graph Enhancement 2 | 3 | [**Task Description**](#task-description) | 4 | [**WikiKGE-10**](#wikikge-10) | 5 | [**Evaluation**](#evaluation) | 6 | [**Paper**](https://arxiv.org/abs/2311.15781) | 7 | [**Citation**](#citation) | 8 | [**License**](#license) 9 | 10 | Recent work in Natural Language Processing and Computer Vision has been leveraging textual information -- e.g., entity names and descriptions -- available in knowledge graphs to ground neural models to high-quality structured data. 11 | However, when it comes to non-English languages, both quantity and quality of textual information are comparatively scarcer. 12 | To address this issue, we introduce the task of automatic **Multilingual Knowledge Graph Enhancement (MKGE)** and perform a thorough investigation on bridging the gap in quantity and quality of textual information between English and non-English languages. 13 | As part of our effort toward building better multilingual knowledge graphs, we also introduce **WikiKGE-10**, the first human-curated benchmark to evaluate MKGE approaches in 10 languages. 14 | 15 | Please refer to our EMNLP 2023 paper for more details, [Increasing Coverage and Precision of Textual Information in Multilingual Knowledge Graphs](https://arxiv.org/abs/2311.15781). 16 | 17 | 18 | ## Task Description 19 | The aim of MKGE is to evaluate automatic approaches in two subtasks: 20 | * Increasing **coverage** of locale-specific facts in multilingual knowledge graphs; 21 | * Increasing **precision** of locale-specific facts in multilingual knowledge graphs. 22 | 23 | More specifically, we use *Wikidata* as our reference multilingual knoweldge graph, and we focus our study on *entity names*, which may or may not be represented in different ways across different languages. 24 | 25 | 26 | ### MKGE - Coverage 27 | Suppose we want to add support to Wikidata for entity names (or other types of textual information, e.g., entity descriptions) in a new target language `l_t`. 28 | *Coverage* measures the ability of an automatic approach to provide at least a valid entity name in `l_t` for each entity of interest in Wikidata. 29 | 30 | In other words, measuring *Coverage* is equivalent to answering the following question: How effective is an automatic approach in converting the entity names from a source language `l_s` to a target language `l_t`? 31 | For example, how can we use the English entity names to create valid Japanese entity names with the same quantity and quality of the English ones? 32 | 33 | ### MKGE - Precision 34 | It is well-known that the quality of the information in Wikidata is not perfect. 35 | *Precision* measures the ability of an automatic approach to identify incorrect entity names (or other types of textual information, e.g., entity descriptions) for an entity of interest in a target language `l_t`. 36 | 37 | In other words, measuring *Precision* is equivalent to answering the following question: How effective is an automatic approach in recognizing noisy, incomplete, or outdated information in a target language `l_t`? 38 | 39 | 40 | ## WikiKGE-10 41 | WikiKGE-10 is a benchmark for evaluating automatic approaches for increasing both **coverage** and **precision** of entity names in Wikidata for 10 languages. 42 | 43 | WikiKGE-10 includes around 1000 entities in each of the following 10 languages: 44 | * `ar` - Arabic 45 | * `de` - German 46 | * `en` - English 47 | * `es` - Spanish 48 | * `fr` - French 49 | * `it` - Italian 50 | * `ja` - Japanese 51 | * `ko` - Korean 52 | * `ru` - Russian 53 | * `zh` - Simplified Chinese 54 | 55 | ### Dataset organization 56 | The data is organized in the following way: 57 | ``` 58 | data 59 | └── names 60 | ├── gold 61 | │ ├── ar.json 62 | │ ├── de.json 63 | ... ... 64 | ├── m-nta 65 | │ ├── with_gpt-3 66 | │ │ ├── ar.m-nta.json 67 | │ │ ├── de.m-nta.json 68 | ... ... ... 69 | │ ├── with_gpt-3.5 70 | │ │ ├── ar.m-nta.json 71 | │ │ ├── de.m-nta.json 72 | ... ... ... 73 | │ └── with_gpt-4 74 | │ ├── ar.m-nta.json 75 | │ ├── de.m-nta.json 76 | ... ... ... 77 | └── gpt 78 | │ ├── ar.gpt-3.json 79 | │ ├── de.gpt-3.json 80 | ... ... 81 | 82 | └── wikidata 83 | ├── ar.json 84 | ├── de.json 85 | ... 86 | └── zh.json 87 | ``` 88 | Where: 89 | * `data/names/gold/` contains the human-curated data. 90 | * `data/names/m-nta/` contains the predictions from M-NTA. 91 | * `data/names/gpt/` contains the predictions from GPT-3 and GPT-3.5 (May 2023), and also GPT-4 (September 2023). 92 | * `data/names/wikidata/` contains the data from Wikidata (May 2023). 93 | 94 | 95 | ### Human-curated data in WikiKGE-10 96 | Here are a few examples in `data/names/gold/it.json`: 97 | ```json 98 | { 99 | "wikidata_id": "Q48324", 100 | "correct_values": ["morale", "moralità", "Moralismo"], 101 | "incorrect_values": ["giudizio morale", "moralita'", "legge morale"] 102 | } 103 | ``` 104 | ```json 105 | { 106 | "wikidata_id": "Q166844", 107 | "correct_values": ["Thomas N'Kono", "N'Kono"], 108 | "incorrect_values": ["Thomas Nkono"] 109 | } 110 | 111 | ``` 112 | 113 | Where: 114 | * `wikidata_id` is the QID of the entity in Wikidata. 115 | * `correct_values` is a list of entity names that have been rated as valid by our human annotators. 116 | * `incorrect_values` is a list of entity names that are in Wikidata but have been rated as invalid by our human annotators. 117 | 118 | 119 | ### M-NTA predictions in WikiKGE-10 120 | We also include the entity names predicted by M-NTA, our automatic system for MKGE, to reproduces the results of our experiments. 121 | 122 | Here are a few examples of the predictions found in `data/names/m-nta/no_gpt/it.json`: 123 | ```json 124 | { 125 | "wikidata_id": "Q48324", 126 | "values": [ 127 | [1, "Egenetica", false], 128 | [1, "Immorale", false], 129 | [1, "Immoralità", false], 130 | [1, "Morali", false], 131 | [1, "Moralismo", false], 132 | [1, "Moralità pubblica", false], 133 | [1, "Moralmente", false], 134 | [1, "Parenesi", false], 135 | [1, "Pubblica moralità", false], 136 | [1, "Regola morale", false], 137 | [1, "Teoria dei costumi", false], 138 | [4, "Morale", true], 139 | [4, "Moralità", true] 140 | ] 141 | } 142 | ``` 143 | ```json 144 | { 145 | "wikidata_id": "Q166844", 146 | "values": [ 147 | [1, "Thomas 'Tommy' N'Kono", false], 148 | [1, "Thomas Nucono", true], 149 | [1, "Tommy N'Kono", false], 150 | [3, "N'Kono", false], 151 | [3, "Nkono", false], 152 | [6, "Thomas N'Kono", true], 153 | [6, "Thomas NKono", false], 154 | [6, "Thomas Nkono", false] 155 | ] 156 | } 157 | ``` 158 | Where: 159 | * `wikidata_id` is the QID of the entity in Wikidata. 160 | * `values` is a list of predictions from M-NTA: 161 | * `value[0]` is the confidence score from M-NTA 162 | * `value[1]` is the prediction from M-NTA 163 | * `value[2]` is whether the prediction comes from a Wikidata primary name. 164 | 165 | 166 | ## Evaluation 167 | To evaluate the **coverage** of a system, you can run the following command: 168 | ```bash 169 | python src/evaluation/evaluate_coverage.py \ 170 | --references_path data/names/gold/es.json \ 171 | --predictions_path data/names/m-nta/es.json \ 172 | --score_threshold 2 173 | ``` 174 | You will see the following output: 175 | ``` 176 | =========================== 177 | Starting evaluation... 178 | --------------------------- 179 | - Loading references from data/names/gold/es.json... 180 | - Loading predictions from data/names/m-nta/with_gpt-3.5/es.m-nta.json... 181 | # of entities in the references: 1000 182 | # of entities in the predictions: 889 183 | --------------------------- 184 | Coverage - P = 77.2 185 | Coverage - R = 43.4 186 | Coverage - F1 = 55.6 187 | =========================== 188 | ``` 189 | 190 | To evaluate the **precision** of a system, you can run the following command: 191 | ```bash 192 | python src/evaluation/evaluate_precision.py \ 193 | --references_path data/names/gold/es.json \ 194 | --predictions_path data/names/m-nta/es.json \ 195 | --score_threshold 1 196 | ``` 197 | You will see the following output: 198 | ``` 199 | =========================== 200 | Starting evaluation... 201 | --------------------------- 202 | - Loading references from data/names/gold/es.json... 203 | - Loading predictions from data/names/m-nta/with_gpt-3.5/es.m-nta.json... 204 | # of entities: 1,000 205 | # of entities with correct names: 1,000 206 | # of entities with incorrect names: 1,000 207 | # of entities in the predictions: 951 208 | --------------------------- 209 | Total incorrect names: 571 210 | Identified incorrect names: 447 211 | Total correct names: 3,749 212 | Correct names classified as incorrect: 1,089 213 | --------------------------- 214 | Precision - P = 71.9 215 | Precision - R = 78.3 216 | Precision - F1 = 75.0 217 | =========================== 218 | ``` 219 | 220 | ### Results 221 | The main results from the paper can be found in `results/coverage` and `results/precision`. 222 | 223 | ## Citation 224 | Please cite our work if you found WikiKGE-10, our [paper](), or these resources useful. 225 | 226 | ```bibtex 227 | @inproceedings{conia-etal-2023-increasing, 228 | title = "Increasing Coverage and Precision of Textual Information in Multilingual Knowledge Graphs", 229 | author = "Conia, Simone and 230 | Li, Min and 231 | Lee, Daniel and 232 | Minhas, Umar Farooq and 233 | Ilyas, Ihab and 234 | Li, Yunyao", 235 | booktitle = "Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023)", 236 | month = dec, 237 | year = "2023", 238 | address = "Singapore", 239 | publisher = "Association for Computational Linguistics", 240 | } 241 | ``` 242 | 243 | ## License 244 | The code in this repository is licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0), see the [LICENSE.txt](LICENSE.txt) file. 245 | 246 | WikiKGE-10 is licensed under [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en), see the [LICENSE_Wikidata.txt](LICENSE_Wikidata.txt) file. 247 | 248 | ## Acknowledgements 249 | This work is part of one of the projects I carried out during my internship at Apple. 250 | I must truly thank Min Li and Yunyao Li for their incredible mentorship and for everything they taught me. 251 | I would also like to thank Umar Farooq Minhas, Saloni Potdar, and Ihab Ilyas for their valuable feedback. 252 | My gratitude also goes to Behrang Mohit for his insightful comments on the paper. 253 | Besides his technical contributions, I would like to thank Daniel Lee for making this project more fun, and Farima Fatahi Bayat, Ronak Pradeep, and Revanth Gangi Reddy for making this internship a unique experience. 254 | -------------------------------------------------------------------------------- /LICENSE_Wikidata.txt: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | including for purposes of Section 3(b); and 307 | 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | -------------------------------------------------------------------------------- /data/names/gpt/ja.gpt-4.json: -------------------------------------------------------------------------------- 1 | {"wikidata_id": "Q1000043", "values": [[1, "若島津健", true]]} 2 | {"wikidata_id": "Q1000658", "values": [[1, "保障に関するブダペスト覚書", true], [1, "ブダペスト覚書", false]]} 3 | {"wikidata_id": "Q1005361", "values": [[1, "マリと三匹の子犬の物語", true], [1, "マリと三匹の子犬の物語", false]]} 4 | {"wikidata_id": "Q1007", "values": [[1, "ギニアビサウ", true], [1, "GBS", false], [1, "🇬🇼", false], [1, "gw", false], [1, "ギニアビサウ共和国", false]]} 5 | {"wikidata_id": "Q1011157", "values": [[1, "白馬", true]]} 6 | {"wikidata_id": "Q101228962", "values": [[1, "吉田雪子", true]]} 7 | {"wikidata_id": "Q1012807", "values": [[1, "ラムタラ", true]]} 8 | {"wikidata_id": "Q102071", "values": [[1, "トーヴェ・ヤンソン", true], [1, "トーヴェ・マリカ・ヤンソン", false], [1, "トーヴェ・M・ヤンソン", false]]} 9 | {"wikidata_id": "Q10277669", "values": [[1, "エトセトラ", true]]} 10 | {"wikidata_id": "Q102818101", "values": [[1, "スパイク・カーライル", true]]} 11 | {"wikidata_id": "Q10323262", "values": [[1, "坂本真", true]]} 12 | {"wikidata_id": "Q103246", "values": [[1, "シーベルト", true], [1, "Sv", false]]} 13 | {"wikidata_id": "Q1033847", "values": [[1, "末田正男", true]]} 14 | {"wikidata_id": "Q1035", "values": [[1, "チャールズ・ダーウィン", true], [1, "チャールズ・R・ダーウィン", false], [1, "チャールズ・ロバート・ダーウィン", false], [1, "ダーウィン", false]]} 15 | {"wikidata_id": "Q1036267", "values": [[1, "内浦湾", true], [1, "ヴォルケーノ湾", false], [1, "船達湾", false], [1, "胆振湾", false], [1, "噴火湾", false]]} 16 | {"wikidata_id": "Q103767", "values": [[1, "チャーリー・パーカー", true], [1, "バード", false], [1, "チャールズ・クリストファー・パーカー・ジュニア", false], [1, "チャーリー・パーカー・ジュニア", false], [1, "チャールズ・パーカー・ジュニア", false], [1, "ヤードバード", false]]} 17 | {"wikidata_id": "Q104081", "values": [[1, "ミッキー・ルーニー", true], [1, "ジョセフ・ユール・ジュニア", false]]} 18 | {"wikidata_id": "Q1040991", "values": [[1, "相葉さき", true], [1, "相葉さき", false]]} 19 | {"wikidata_id": "Q1050085", "values": [[1, "マコ", true], [1, "櫻井真子", false], [1, "桜井真子", false]]} 20 | {"wikidata_id": "Q105226167", "values": [[1, "死神公爵と彼のメイド", true]]} 21 | {"wikidata_id": "Q1054613", "values": [[1, "小西真奈美", true]]} 22 | {"wikidata_id": "Q10556350", "values": [[1, "マリアノ・ディアス", true], [1, "マリアノ・ディアス・メヒア", false]]} 23 | {"wikidata_id": "Q1058728", "values": [[1, "ハサリウス・アダンソニ", true]]} 24 | {"wikidata_id": "Q1059", "values": [[1, "免疫システム", true]]} 25 | {"wikidata_id": "Q1059492", "values": [[1, "レキシントン級航空母艦", true], [1, "レキシントン級", false], [1, "レキシントン", false]]} 26 | {"wikidata_id": "Q1060610", "values": [[1, "カナリアクラブ", true], [1, "カナリアクラブ", false]]} 27 | {"wikidata_id": "Q106182", "values": [[1, "X-メン", true]]} 28 | {"wikidata_id": "Q1062340", "values": [[1, "セグメンテーション違反", true], [1, "セグフォルト", false], [1, "アクセス違反", false]]} 29 | {"wikidata_id": "Q106497550", "values": [[1, "2021年5月の死去者", true]]} 30 | {"wikidata_id": "Q1065105", "values": [[1, "ホウ・イー", true], [1, "イー", false]]} 31 | {"wikidata_id": "Q10666486", "values": [[1, "セッションミュージシャン", true], [1, "バッキングミュージシャン", false], [1, "スタジオミュージシャン", false]]} 32 | {"wikidata_id": "Q1067359", "values": [[1, "大垣城", true]]} 33 | {"wikidata_id": "Q107040798", "values": [[1, "ロスト・シティ", true]]} 34 | {"wikidata_id": "Q1071525", "values": [[1, "佐竹 義信", true]]} 35 | {"wikidata_id": "Q1073008", "values": [[1, "八丁堀駅", true]]} 36 | {"wikidata_id": "Q1073668", "values": [[1, "竹内の宿禰", true], [1, "竹内の宿禰", false]]} 37 | {"wikidata_id": "Q10783669", "values": [[1, "関東サッカーリーグ", true]]} 38 | {"wikidata_id": "Q1082927", "values": [[1, "前田利政", true]]} 39 | {"wikidata_id": "Q10855296", "values": [[1, "小本正弘", true], [1, "小本正弘", false], [1, "小本正弘", false]]} 40 | {"wikidata_id": "Q108559256", "values": [[1, "ライル、ライル、クロコダイル", true]]} 41 | {"wikidata_id": "Q108776592", "values": [[1, "前川右京", true]]} 42 | {"wikidata_id": "Q1088", "values": [[1, "青", true], [1, "青色", false], [1, "ブルーX11青色", false], [1, "ブルー(RGB)(X11ブルー)", false], [1, "青の色", false], [1, "ブルー(RGB)", false], [1, "X11ブルー", false]]} 43 | {"wikidata_id": "Q10899318", "values": [[1, "劇団イヌカレー", true]]} 44 | {"wikidata_id": "Q10931187", "values": [[1, "「境界線上のホライゾン」のキャラクターリスト", true]]} 45 | {"wikidata_id": "Q109359002", "values": [[1, "ヘヴン・バーンズ・レッド", true]]} 46 | {"wikidata_id": "Q109359711", "values": [[1, "NIJの仕様", true], [1, "English: Bullet proof vent standards\nJapanese: 防弾ベントの基準", false]]} 47 | {"wikidata_id": "Q109512122", "values": [[1, "Lv999の山田くんに恋をする!", true], [1, "山田くんとLv999の恋をする", false], [1, "山田くんとLv999の恋をする", false]]} 48 | {"wikidata_id": "Q109536021", "values": [[1, "民主主義のためのサミット", true]]} 49 | {"wikidata_id": "Q109594910", "values": [[1, "山船光太郎", true]]} 50 | {"wikidata_id": "Q110291516", "values": [[1, "大隊戦術グループ", true], [1, "BTG", false]]} 51 | {"wikidata_id": "Q1106104", "values": [[1, "B-サイド", true]]} 52 | {"wikidata_id": "Q11065315", "values": [[1, "武仁親王、竹宮", true], [1, "竹宮武仁親王", false], [1, "竹宮武仁親王", false], [1, "武仁親王", false], [1, "竹宮", false], [1, "武仁親王", false], [1, "竹宮武仁親王", false], [1, "竹宮武仁親王", false]]} 53 | {"wikidata_id": "Q11068401", "values": [[1, "朝倉高景", true]]} 54 | {"wikidata_id": "Q11072", "values": [[1, "健忘症", true], [1, "健忘症候群", false], [1, "健忘症患者", false], [1, "コルサコフ症候群", false], [1, "健忘症候群", false]]} 55 | {"wikidata_id": "Q11110848", "values": [[1, "田口千地姫命", true]]} 56 | {"wikidata_id": "Q111113756", "values": [[1, "野口智也", true]]} 57 | {"wikidata_id": "Q111472815", "values": [[1, "ポタジェ", true]]} 58 | {"wikidata_id": "Q1119", "values": [[1, "ハフニウム", true], [1, "72Hf", false], [1, "Hf", false], [1, "元素72", false]]} 59 | {"wikidata_id": "Q112115773", "values": [[1, "熊田直樹", true]]} 60 | {"wikidata_id": "Q11229595", "values": [[1, "ラブ・ウォーズ", true]]} 61 | {"wikidata_id": "Q11237288", "values": [[1, "ワン", true]]} 62 | {"wikidata_id": "Q11242437", "values": [[1, "三上健生", true]]} 63 | {"wikidata_id": "Q11248197", "values": [[1, "佐渡鉱山", true], [1, "相川鉱山", false]]} 64 | {"wikidata_id": "Q11253086", "values": [[1, "ボイジャー", true]]} 65 | {"wikidata_id": "Q1125331", "values": [[1, "日本の島の一覧", true]]} 66 | {"wikidata_id": "Q11255707", "values": [[1, "角替和枝", true]]} 67 | {"wikidata_id": "Q11258480", "values": [[1, "山本文男", true]]} 68 | {"wikidata_id": "Q11258634", "values": [[1, "ありがとう", true], [1, "ありがとう", false]]} 69 | {"wikidata_id": "Q11267605", "values": [[1, "さかなクン", true], [1, "さかなくん", false], [1, "宮沢正行", false]]} 70 | {"wikidata_id": "Q11273540", "values": [[1, "トロサーモン", true]]} 71 | {"wikidata_id": "Q11274528", "values": [[1, "小月ゆりあ", true], [1, "奈良ゆりあ", false], [1, "香月ゆりあ", false], [1, "小篤ゆりあ", false]]} 72 | {"wikidata_id": "Q11280608", "values": [[1, "やわらか戦車", true], [1, "やわらかタンク", false]]} 73 | {"wikidata_id": "Q11287895", "values": [[1, "イージス艦", true]]} 74 | {"wikidata_id": "Q11308308", "values": [[1, "シリコンウェハー", true]]} 75 | {"wikidata_id": "Q11310655", "values": [[1, "ジョニー大倉", true], [1, "ジョニー大倉", false]]} 76 | {"wikidata_id": "Q1131340", "values": [[1, "日本国道2号", true], [1, "国道2号", false]]} 77 | {"wikidata_id": "Q11315936", "values": [[1, "ブラシカ・ジュンケア・バリエティ・インテグリフォリア", true], [1, "高菜", false]]} 78 | {"wikidata_id": "Q11316944", "values": [[1, "ダイバーシティ東京プラザ", true], [1, "ダイバーシティ東京", false], [1, "ダイバーシティ東京プラザ", false]]} 79 | {"wikidata_id": "Q11317274", "values": [[1, "ダブルキャスト", true]]} 80 | {"wikidata_id": "Q11317501", "values": [[1, "ダンス・イン・ザ・ムード", true]]} 81 | {"wikidata_id": "Q11317504", "values": [[1, "ダンスパートナー", true]]} 82 | {"wikidata_id": "Q11318572", "values": [[1, "チンピラ", true]]} 83 | {"wikidata_id": "Q11331875", "values": [[1, "ファイナルファンタジーIII", true], [1, "ファイナルファンタジーIII:3Dリメイク", false], [1, "ファイナルファンタジーIII 3Dリメイク", false], [1, "ファイナルファンタジーIII(3Dリメイク)", false]]} 84 | {"wikidata_id": "Q1133204", "values": [[1, "ストリートファイターII:ザ・ワールド・ウォリアー", true], [1, "SF 2", false], [1, "ストリートファイター2", false], [1, "SF2", false], [1, "ストリートファイターII", false], [1, "SFII", false]]} 85 | {"wikidata_id": "Q11333393", "values": [[1, "グロイオペルティス", true]]} 86 | {"wikidata_id": "Q11340139", "values": [[1, "田津郎真志子", true]]} 87 | {"wikidata_id": "Q11343266", "values": [[1, "ムータン", true], [1, "ムーミンリュー", false]]} 88 | {"wikidata_id": "Q11346599", "values": [[1, "レインミア青森", true]]} 89 | {"wikidata_id": "Q113499131", "values": [[1, "久しぶりのリップグロス", true]]} 90 | {"wikidata_id": "Q11352314", "values": [[1, "市ノ瀬渉", true]]} 91 | {"wikidata_id": "Q11355047", "values": [[1, "三宅恵介", true]]} 92 | {"wikidata_id": "Q11360648", "values": [[1, "下北自動車道", true]]} 93 | {"wikidata_id": "Q11360852", "values": [[1, "清下島", true]]} 94 | {"wikidata_id": "Q11364138", "values": [[1, "中山大障害", true]]} 95 | {"wikidata_id": "Q11365718", "values": [[1, "中村桃子", true]]} 96 | {"wikidata_id": "Q11381857", "values": [[1, "住吉神社", true]]} 97 | {"wikidata_id": "Q11383564", "values": [[1, "佐藤篤弘", true], [1, "佐藤篤弘", false], [1, "佐藤篤弘", false]]} 98 | {"wikidata_id": "Q11384230", "values": [[1, "佐藤渚", true], [1, "佐藤渚", false], [1, "柏木渚", false], [1, "ナギ", false], [1, "ナギパン", false], [1, "なぎちゃん", false], [1, "佐藤渚", false]]} 99 | {"wikidata_id": "Q11384426", "values": [[1, "佐藤ガジロウ", true], [1, "佐藤ガジロウ", false], [1, "佐藤ガジロウ", false]]} 100 | {"wikidata_id": "Q11387894", "values": [[1, "元木大介", true]]} 101 | {"wikidata_id": "Q11391410", "values": [[1, "八木弘志", true]]} 102 | {"wikidata_id": "Q11391922", "values": [[1, "公共政策学校", true]]} 103 | {"wikidata_id": "Q1139446", "values": [[1, "山下洋輔", true], [1, "山下洋輔", false], [1, "山下洋輔", false]]} 104 | {"wikidata_id": "Q1140436", "values": [[1, "日本の航空母艦龍驤", true], [1, "龍驤", false], [1, "龍驤", false]]} 105 | {"wikidata_id": "Q11405833", "values": [[1, "ちさ", true], [1, "前川ちさ", false]]} 106 | {"wikidata_id": "Q1140619", "values": [[1, "札幌時計台", true], [1, "旧札幌農学校演習場", false]]} 107 | {"wikidata_id": "Q11409002", "values": [[1, "博物館動物園駅", true]]} 108 | {"wikidata_id": "Q11409685", "values": [[1, "原沢久善", true]]} 109 | {"wikidata_id": "Q1141804", "values": [[1, "森山直太朗", true], [1, "森山直太朗", false], [1, "森山直太朗", false]]} 110 | {"wikidata_id": "Q11421757", "values": [[1, "国鉄DD16形", true]]} 111 | {"wikidata_id": "Q1142211", "values": [[1, "永田町駅", true]]} 112 | {"wikidata_id": "Q11422772", "values": [[1, "そのマリ", true]]} 113 | {"wikidata_id": "Q11424788", "values": [[1, "坂上忍", true]]} 114 | {"wikidata_id": "Q11427810", "values": [[1, "堀込高樹", true]]} 115 | {"wikidata_id": "Q11429946", "values": [[1, "夏恵子", true]]} 116 | {"wikidata_id": "Q11437372", "values": [[1, "大津 美子", true]]} 117 | {"wikidata_id": "Q1144130", "values": [[1, "宇都宮線", true]]} 118 | {"wikidata_id": "Q1144590", "values": [[1, "プロジェクトA", true]]} 119 | {"wikidata_id": "Q11446683", "values": [[1, "恋する五人の女性たち", true], [1, "恋する女性たち", false]]} 120 | {"wikidata_id": "Q11448571", "values": [[1, "東邦学園", true]]} 121 | {"wikidata_id": "Q11451430", "values": [[1, "安藤はるか", true]]} 122 | {"wikidata_id": "Q11451654", "values": [[1, "安野希世乃", true], [1, "安野希世乃", false]]} 123 | {"wikidata_id": "Q11454819", "values": [[1, "宮本大輔", true]]} 124 | {"wikidata_id": "Q11462728", "values": [[1, "小沢幹男", true]]} 125 | {"wikidata_id": "Q11465064", "values": [[1, "尾上松也二世", true]]} 126 | {"wikidata_id": "Q11465417", "values": [[1, "小花希衣", true]]} 127 | {"wikidata_id": "Q11466967", "values": [[1, "山口昇", true]]} 128 | {"wikidata_id": "Q11471869", "values": [[1, "岐阜第一高等学校", true]]} 129 | {"wikidata_id": "Q11473386", "values": [[1, "アミン岡田", true]]} 130 | {"wikidata_id": "Q11474110", "values": [[1, "岩佐亮佑", true], [1, "岩佐亮佑", false], [1, "岩佐亮佑", false]]} 131 | {"wikidata_id": "Q11477913", "values": [[1, "川俣陽俊", true]]} 132 | {"wikidata_id": "Q11479565", "values": [[1, "工藤 敏樹", true], [1, "工藤 敏樹", false], [1, "工藤 敏樹", false]]} 133 | {"wikidata_id": "Q1147974", "values": [[1, "高橋信", true], [1, "高橋信", false]]} 134 | {"wikidata_id": "Q11485370", "values": [[1, "光川ひかる", true], [1, "上島ひかる", false]]} 135 | {"wikidata_id": "Q11489535", "values": [[1, "徳光敏夫", true]]} 136 | {"wikidata_id": "Q11492219", "values": [[1, "常松ゆうり", true], [1, "ユリ・ツネマツ", false]]} 137 | {"wikidata_id": "Q11496300", "values": [[1, "戸塚純貴", true]]} 138 | {"wikidata_id": "Q11500386", "values": [[1, "斎藤龍二", true], [1, "斎藤龍二", false], [1, "斎藤龍二", false]]} 139 | {"wikidata_id": "Q11500392", "values": [[1, "斎藤雪乃", true], [1, "斎藤雪乃", false], [1, "斎藤雪乃", false]]} 140 | {"wikidata_id": "Q11508331", "values": [[1, "日本橋小伝馬町", true]]} 141 | {"wikidata_id": "Q1151791", "values": [[1, "根室本線", true]]} 142 | {"wikidata_id": "Q11520348", "values": [[1, "本徳院", true], [1, "コン", false]]} 143 | {"wikidata_id": "Q11522349", "values": [[1, "杉谷充", true]]} 144 | {"wikidata_id": "Q11526949", "values": [[1, "東急8090系", true], [1, "東急8590系", false]]} 145 | {"wikidata_id": "Q11531551", "values": [[1, "光浩松永", true]]} 146 | {"wikidata_id": "Q11534163", "values": [[1, "柳原陽一郎", true], [1, "柳原陽一郎", false], [1, "柳原陽一郎", false]]} 147 | {"wikidata_id": "Q11535033", "values": [[1, "柿澤 未途", true]]} 148 | {"wikidata_id": "Q11540878", "values": [[1, "杉山女学園中学校・高等学校", true], [1, "杉山女学園高等学校", false], [1, "杉山女学園中学校", false], [1, "杉山女学園中高一貫教育学校", false], [1, "杉山女学園高等学校", false]]} 149 | {"wikidata_id": "Q1154115", "values": [[1, "プラット&ホイットニー F100", true], [1, "プラット&ホイットニー JTF22", false], [1, "JTF22", false], [1, "F100", false]]} 150 | {"wikidata_id": "Q11549141", "values": [[1, "水谷八重子I", true]]} 151 | {"wikidata_id": "Q11550418", "values": [[1, "長野", true], [1, "長野和希", false]]} 152 | {"wikidata_id": "Q115529718", "values": [[1, "上羽彩", true]]} 153 | {"wikidata_id": "Q11560037", "values": [[1, "新新院", true]]} 154 | {"wikidata_id": "Q115623", "values": [[1, "コルト・ドラグーン・リボルバー", true]]} 155 | {"wikidata_id": "Q11570199", "values": [[1, "牛田智治", true]]} 156 | {"wikidata_id": "Q11573", "values": [[1, "メートル", true], [1, "メートル", false], [1, "m", false], [1, "メートル", false], [1, "メートル", false], [1, "メートル", false]]} 157 | {"wikidata_id": "Q11574557", "values": [[1, "植方圭一", true]]} 158 | {"wikidata_id": "Q1157716", "values": [[1, "大和証券グループ", true]]} 159 | {"wikidata_id": "Q11592017", "values": [[1, "福山大学", true], [1, "福山大学", false]]} 160 | {"wikidata_id": "Q11594282", "values": [[1, "福田 雄一", true], [1, "福田 雄一", false], [1, "福田 雄一", false]]} 161 | {"wikidata_id": "Q11598235", "values": [[1, "立見里歌", true]]} 162 | {"wikidata_id": "Q11598551", "values": [[1, "ボートレーサーのリスト", true]]} 163 | {"wikidata_id": "Q1160186", "values": [[1, "彼女が死を迎える", true]]} 164 | {"wikidata_id": "Q11603651", "values": [[1, "篠塚勝", true]]} 165 | {"wikidata_id": "Q11607008", "values": [[1, "二番目の妻", true]]} 166 | {"wikidata_id": "Q116105035", "values": [[1, "神々の山嶺", true]]} 167 | {"wikidata_id": "Q1161663", "values": [[1, "ストレイ・キャッツ", true]]} 168 | {"wikidata_id": "Q11624931", "values": [[1, "藤田麻衣子", true]]} 169 | {"wikidata_id": "Q11635149", "values": [[1, "贖罪のソナタ", true]]} 170 | {"wikidata_id": "Q11637", "values": [[1, "ジュディ・ガーランド", true], [1, "フランシス・エセル・ガム", false], [1, "フランシス・ガム", false]]} 171 | {"wikidata_id": "Q11638061", "values": [[1, "ジニル・ピョン", true]]} 172 | {"wikidata_id": "Q11641621", "values": [[1, "青木道伝", true], [1, "青木道伝", false], [1, "青木道伝", false]]} 173 | {"wikidata_id": "Q11647722", "values": [[1, "金田美香", true]]} 174 | {"wikidata_id": "Q11648339", "values": [[1, "ばふうれいれいしゃ", true], [1, "ばふうれいれいしゃ", false], [1, "ばふれいれいしゃ", false]]} 175 | {"wikidata_id": "Q11648357", "values": [[1, "鈴之助", true]]} 176 | {"wikidata_id": "Q11649686", "values": [[1, "鉄道唱歌", true], [1, "鉄道賛歌", false]]} 177 | {"wikidata_id": "Q1165384", "values": [[1, "講道館", true]]} 178 | {"wikidata_id": "Q11655759", "values": [[1, "関川浩一", true], [1, "コーチとして", false], [1, "関川浩一", false], [1, "関川浩一", false]]} 179 | {"wikidata_id": "Q11661605", "values": [[1, "カレン青木", true]]} 180 | {"wikidata_id": "Q11667089", "values": [[1, "東京ブラックアウト", true], [1, "首都消失", false]]} 181 | {"wikidata_id": "Q11671235", "values": [[1, "高橋信清", true], [1, "高橋信清", false]]} 182 | {"wikidata_id": "Q11672823", "values": [[1, "高見太一", true]]} 183 | {"wikidata_id": "Q116926868", "values": [[1, "アイドルマスターミリオンライブ!", true], [1, "アイドルマスター: ミリオンライブ!", false]]} 184 | {"wikidata_id": "Q118701", "values": [[1, "陽の土の龍", true], [1, "戊辰", false], [1, "土のえ辰", false], [1, "戊辰", false], [1, "戊辰", false], [1, "無辰", false]]} 185 | {"wikidata_id": "Q1187952", "values": [[1, "ノブレス・オブリージュ", true]]} 186 | {"wikidata_id": "Q11895", "values": [[1, "ガンズ・アンド・ローゼズ", true], [1, "G N' R", false], [1, "GNR", false], [1, "ガンズ・アンド・ローゼズ", false]]} 187 | {"wikidata_id": "Q1191183", "values": [[1, "豊臣秀長", true]]} 188 | {"wikidata_id": "Q11917765", "values": [[1, "財産権", true], [1, "物権", false], [1, "財産所有権", false]]} 189 | {"wikidata_id": "Q1192498", "values": [[1, "杉山恒一", true]]} 190 | {"wikidata_id": "Q1195814", "values": [[1, "佐賀大学", true], [1, "佐賀大学", false]]} 191 | {"wikidata_id": "Q1197711", "values": [[1, "沙悟浄", true], [1, "サンディ", false]]} 192 | {"wikidata_id": "Q1200", "values": [[1, "ラインラント=プファルツ", true], [1, "RP", false], [1, "ラインラント=プファルツ", false]]} 193 | {"wikidata_id": "Q12019559", "values": [[1, "フリー!", true], [1, "フリー!-ダイブ・トゥ・ザ・フューチャー", false], [1, "フリー!-エターナル・サマー", false], [1, "フリー!-岩鳶高校水泳部", false]]} 194 | {"wikidata_id": "Q1203589", "values": [[1, "南知多", true]]} 195 | {"wikidata_id": "Q1203760", "values": [[1, "下北山", true]]} 196 | {"wikidata_id": "Q1204099", "values": [[1, "小諸", true]]} 197 | {"wikidata_id": "Q1206519", "values": [[1, "塊魂", true]]} 198 | {"wikidata_id": "Q1208322", "values": [[1, "ケビン・ユーキリス", true], [1, "ケビン・エドマンド・ユーキリス", false]]} 199 | {"wikidata_id": "Q120843", "values": [[1, "第二次チェチェン戦争", true], [1, "第二のチェチェン", false], [1, "チェチェン戦争", false]]} 200 | {"wikidata_id": "Q1209150", "values": [[1, "脳梗塞", true], [1, "脳梗塞", false], [1, "CVA - 脳梗塞", false], [1, "脳梗塞", false], [1, "脳、梗塞", false], [1, "脳虚血", false], [1, "梗塞、脳", false], [1, "特定不能の脳梗塞(疾患)", false], [1, "特定不能の脳梗塞", false]]} 201 | {"wikidata_id": "Q1209783", "values": [[1, "宿場", true], [1, "宿駅", false]]} 202 | {"wikidata_id": "Q1223", "values": [[1, "ワシントン", true], [1, "常緑州", false], [1, "WA", false], [1, "ワシントン州", false], [1, "ワシ.", false], [1, "ワシントン州", false], [1, "常緑州", false], [1, "ワシントン(州)", false], [1, "US-WA", false]]} 203 | {"wikidata_id": "Q1223440", "values": [[1, "リュウ", true], [1, "リュウ・ホシ", false]]} 204 | {"wikidata_id": "Q1240552", "values": [[1, "丹羽文雄", true]]} 205 | {"wikidata_id": "Q1241113", "values": [[1, "鏑木清方", true], [1, "鏑木健一", false], [1, "蕪木清方", false], [1, "鏑木健一", false], [1, "蕪木健一", false], [1, "健一", false], [1, "清方蕪木", false], [1, "鏑木清方", false], [1, "蕪木健一", false]]} 206 | {"wikidata_id": "Q1247373", "values": [[1, "ハロウ・スクール", true], [1, "ハロウ", false]]} 207 | {"wikidata_id": "Q12615198", "values": [[1, "ジョン・ソミン", true], [1, "ジョン・ソミン", false], [1, "ジョン・ソミン", false]]} 208 | {"wikidata_id": "Q126331", "values": [[1, "京阪中之島線", true]]} 209 | {"wikidata_id": "Q127293", "values": [[1, "カカオトーク", true], [1, "カトーク", false]]} 210 | {"wikidata_id": "Q127296", "values": [[1, "韓国の国旗", true], [1, "大韓民国の国旗", false], [1, "太極旗", false], [1, "太極旗", false], [1, "韓国の旗", false], [1, "韓国の旗", false], [1, "韓国の国旗", false], [1, "🇰🇷", false]]} 211 | {"wikidata_id": "Q127430", "values": [[1, "キングコングの逃亡", true]]} 212 | {"wikidata_id": "Q1290", "values": [[1, "ブレーズ・パスカル", true], [1, "パスカル", false], [1, "パスカル・ブレーズ", false], [1, "デットンヴィル", false], [1, "アモス・デットンヴィル", false], [1, "ルイ・ド・モンタルト", false]]} 213 | {"wikidata_id": "Q129778", "values": [[1, "闇の心", true], [1, "闇の心", false]]} 214 | {"wikidata_id": "Q12981895", "values": [[1, "防馬鹿設計", true], [1, "防馬鹿化", false], [1, "防ばか設計", false], [1, "間違いない", false], [1, "誤用防止", false], [1, "防馬鹿化された", false], [1, "誤用防止", false], [1, "防ばか化", false], [1, "防馬鹿", false], [1, "防ばか化の試み", false], [1, "防馬鹿化の試み", false], [1, "防馬鹿化された", false], [1, "防ばか化の試み", false], [1, "誤用防止された", false], [1, "防馬鹿化された", false], [1, "間違いない化", false], [1, "防馬鹿な設計", false], [1, "防馬鹿化の試み", false], [1, "防ばか化された", false], [1, "誤用防止の試み", false], [1, "防ばか化された", false], [1, "誤用防止の試み", false]]} 215 | {"wikidata_id": "Q1304023", "values": [[1, "ドラえもん: のび太のねじ巻き都市冒険記", true]]} 216 | {"wikidata_id": "Q130710", "values": [[1, "月刊少年サンデー", true], [1, "ゲット・ザ・サン", false], [1, "月刊少年サンデー", false]]} 217 | {"wikidata_id": "Q131297", "values": [[1, "ルワンダ虐殺", true], [1, "ツチ族に対する虐殺", false], [1, "ルワンダの大虐殺", false], [1, "ツチ族への大虐殺", false]]} 218 | {"wikidata_id": "Q1317755", "values": [[1, "コルト ディテクティブ スペシャル", true]]} 219 | {"wikidata_id": "Q13233", "values": [[1, "アイスクリーム", true], [1, "クリームアイス", false], [1, "アイスドクリーム", false]]} 220 | {"wikidata_id": "Q1323799", "values": [[1, "エルアル1862便", true], [1, "ビルマー災害", false]]} 221 | {"wikidata_id": "Q1323839", "values": [[1, "五日市線", true]]} 222 | {"wikidata_id": "Q1330164", "values": [[1, "アメリカ合衆国ナショナル野球チーム", true], [1, "チームUSA", false], [1, "USAベースボール", false]]} 223 | {"wikidata_id": "Q1332798", "values": [[1, "黒羽 快斗", true], [1, "怪盗キッド", false]]} 224 | {"wikidata_id": "Q133654", "values": [[1, "羊たちの沈黙", true], [1, "羊たちの沈黙", false]]} 225 | {"wikidata_id": "Q133993", "values": [[1, "陰茎勃起", true], [1, "勃起", false], [1, "GO:0043084", false]]} 226 | {"wikidata_id": "Q134102", "values": [[1, "フランコフォニー国際機関", true], [1, "OIF", false], [1, "ラ・フランコフォニーの国際機関", false], [1, "フランコフォニー", false], [1, "ラ・フランコフォニー", false]]} 227 | {"wikidata_id": "Q13423122", "values": [[1, "七夕節", true], [1, "七夕の夜", false], [1, "七巧節", false], [1, "七夕節", false], [1, "七巧節", false], [1, "カササギ祭り", false]]} 228 | {"wikidata_id": "Q1345889", "values": [[1, "有田川", true]]} 229 | {"wikidata_id": "Q1351288", "values": [[1, "USSイントレピッド", true], [1, "ぼろぼろ", false], [1, "ドライI", false], [1, "ファイティングI", false], [1, "ザ・ファイティングI", false], [1, "ザ・タフオールドレディ", false], [1, "CV-11", false], [1, "イントレピッド", false]]} 230 | {"wikidata_id": "Q135236", "values": [[1, "オーズ・電王・オールライダー: レッツゴー仮面ライダー", true]]} 231 | {"wikidata_id": "Q1395324", "values": [[1, "家族経営のビジネス", true]]} 232 | {"wikidata_id": "Q14001", "values": [[1, "マルウェア", true], [1, "悪意のあるソフトウェア", false], [1, "バッドウェア", false]]} 233 | {"wikidata_id": "Q1420239", "values": [[1, "テンプル大学", true], [1, "TU", false]]} 234 | {"wikidata_id": "Q14293115", "values": [[1, "2015年 フォーミュラワン世界選手権", true], [1, "2015年 FIA フォーミュラワン選手権", false], [1, "2015年 フォーミュラワン選手権", false], [1, "2015年 フォーミュラワン シーズン", false], [1, "2015年 FIA フォーミュラワン世界選手権", false]]} 235 | {"wikidata_id": "Q143083", "values": [[1, "左幸子", true], [1, "左幸子", false]]} 236 | {"wikidata_id": "Q1434", "values": [[1, "コモドゥス", true], [1, "マルクス・アウレリウス・ガイウス・アントニヌス", false], [1, "カエサル・マルクス・アウレリウス・コモドゥス・アントニヌス・アウグストゥス", false], [1, "ローマの皇帝コモドゥス", false], [1, "ルキウス・アウレリウス・コモドゥス・アントニヌス", false], [1, "ルキウス・アエリウス・アウレリウス・ガイウス・アウグストゥス", false], [1, "ローマの皇帝コモドゥス", false], [1, "ルキウス・アエリウス・アウレリウス・コモドゥス", false]]} 237 | {"wikidata_id": "Q1442972", "values": [[1, "サーベル・ダンス", true]]} 238 | {"wikidata_id": "Q14566553", "values": [[1, "フィフティ・シェイズ・オブ・グレイ", true]]} 239 | {"wikidata_id": "Q14650496", "values": [[1, "ワイルド・スピード スカイミッション", true], [1, "ワイルド・スピード セブン", false], [1, "ワイルド・スピード 7", false]]} 240 | {"wikidata_id": "Q1474387", "values": [[1, "モンド映画", true], [1, "ショックメンタリー", false]]} 241 | {"wikidata_id": "Q148330", "values": [[1, "座頭市", true], [1, "座頭市", false]]} 242 | {"wikidata_id": "Q148378", "values": [[1, "座頭市", true], [1, "座頭市", false]]} 243 | {"wikidata_id": "Q1507", "values": [[1, "パタゴニア", true], [1, "テラ・マゼランニカ", false], [1, "マゼランニカ", false]]} 244 | {"wikidata_id": "Q151055", "values": [[1, "デニソヴァ人類", true], [1, "デニソヴァ人", false]]} 245 | {"wikidata_id": "Q15106769", "values": [[1, "熊川哲也", true]]} 246 | {"wikidata_id": "Q1511784", "values": [[1, "マンガアーティストのリスト", true]]} 247 | {"wikidata_id": "Q15154975", "values": [[1, "ナイトクローラー", true]]} 248 | {"wikidata_id": "Q151973", "values": [[1, "リチャード・バートン", true], [1, "リチャード・ウォルター・ジェンキンス・ジュニア", false], [1, "リチャード・ウォルター・ジェンキンス", false], [1, "リチャード・ジェンキンス", false]]} 249 | {"wikidata_id": "Q152005", "values": [[1, "分水界", true], [1, "分割", false], [1, "水分け", false], [1, "流域", false], [1, "分割範囲", false], [1, "水分け", false], [1, "尾根", false], [1, "地域の高地", false]]} 250 | {"wikidata_id": "Q152036", "values": [[1, "ロレム・イプサム", true], [1, "ロレム・イプサム", false], [1, "リプサム", false]]} 251 | {"wikidata_id": "Q152144", "values": [[1, "イソヒヨドリ", true], [1, "モンティコラ・ソリタリウス", false], [1, "イソヒヨドリ", false]]} 252 | {"wikidata_id": "Q1525793", "values": [[1, "赤髪の白雪姫", true]]} 253 | {"wikidata_id": "Q1532082", "values": [[1, "バリアブル・ファイター", true]]} 254 | {"wikidata_id": "Q154168", "values": [[1, "乾杯", true]]} 255 | {"wikidata_id": "Q156435", "values": [[1, "デア・フライシュッツ", true]]} 256 | {"wikidata_id": "Q157044", "values": [[1, "アワーズ", true], [1, "時間", false]]} 257 | {"wikidata_id": "Q15734", "values": [[1, "泉", true]]} 258 | {"wikidata_id": "Q157466", "values": [[1, "ブルンベア", true], [1, "パンツァーIVに搭載されたStuH 43", false], [1, "パンツァーIVに搭載された150L12 StuH", false], [1, "Sd.Kfz. 166", false], [1, "シュトルムパンツァーIV", false], [1, "シュトルムパンツァー43", false], [1, "パンツァーIVに搭載された150mm StuH", false]]} 259 | {"wikidata_id": "Q15751203", "values": [[1, "アイスバイン", true]]} 260 | {"wikidata_id": "Q15915040", "values": [[1, "アンドリュー・ロバートソン", true], [1, "ロバートソン", false], [1, "ロボ", false], [1, "アンディ・ロバートソン", false], [1, "アンドリュー・ヘンリー・ロバートソン", false]]} 261 | {"wikidata_id": "Q159324", "values": [[1, "チャエノメレス・スペキオサ", true], [1, "C. スペキオサ", false]]} 262 | {"wikidata_id": "Q159774", "values": [[1, "カプチーノ", true]]} 263 | {"wikidata_id": "Q15986685", "values": [[1, "トム-H@ck", true]]} 264 | {"wikidata_id": "Q160117", "values": [[1, "ブローカー", true]]} 265 | {"wikidata_id": "Q161441", "values": [[1, "シプリペディウム・ヤポニクム", true]]} 266 | {"wikidata_id": "Q161731", "values": [[1, "チェブラーシカ", true], [1, "トップル", false]]} 267 | {"wikidata_id": "Q161816", "values": [[1, "ケロシア・アルゲンティア", true], [1, "シルバースパイクコクスコーム", false], [1, "C.アルゲンティア", false], [1, "フサケイトウ", false]]} 268 | {"wikidata_id": "Q16223822", "values": [[1, "森住祐介", true]]} 269 | {"wikidata_id": "Q162284", "values": [[1, "キエフの戦い(1941)", true], [1, "キエフ防衛作戦", false], [1, "キエフの初戦", false], [1, "キエフ戦略防衛作戦", false]]} 270 | {"wikidata_id": "Q162331", "values": [[1, "四百回のビンタ", true], [1, "レ・キャトル・サン・クー", false], [1, "四百回のビンタ", false]]} 271 | {"wikidata_id": "Q1651", "values": [[1, "ヨハン・ブレイク", true]]} 272 | {"wikidata_id": "Q1658025", "values": [[1, "飯地浩介", true], [1, "飯地浩介", false], [1, "飯地浩介", false]]} 273 | {"wikidata_id": "Q166317", "values": [[1, "パウロ・ディバラ", true], [1, "パウロ・エクセキエル・ディバラ", false]]} 274 | {"wikidata_id": "Q167198", "values": [[1, "アミン", true], [1, "アミン類", false]]} 275 | {"wikidata_id": "Q167286", "values": [[1, "ドルニエ Do 335", true], [1, "アロー戦闘機", false], [1, "Pfeil航空機", false], [1, "Do 335", false], [1, "アロー航空機", false], [1, "Pfeil戦闘機", false]]} 276 | {"wikidata_id": "Q17005165", "values": [[1, "ブラックナイト衛星陰謀論", true]]} 277 | {"wikidata_id": "Q170831", "values": [[1, "エナガ", true], [1, "アエギタロス・コーダトゥス", false]]} 278 | {"wikidata_id": "Q17190152", "values": [[1, "もう映画泥棒はいらない", true], [1, "もう映画ドロボウはいらない", false], [1, "もう映画ドロボーはいらない", false]]} 279 | {"wikidata_id": "Q17192464", "values": [[1, "アンガールズ", true], [1, "アンガールズ", false]]} 280 | {"wikidata_id": "Q1720711", "values": [[1, "反転乳首", true], [1, "反転した乳首", false], [1, "反転した乳首", false], [1, "反転した乳首", false]]} 281 | {"wikidata_id": "Q17218672", "values": [[1, "メンタイぴりり", true]]} 282 | {"wikidata_id": "Q17221184", "values": [[1, "前田彩里", true]]} 283 | {"wikidata_id": "Q17232714", "values": [[1, "白井聡", true], [1, "白井聡", false]]} 284 | {"wikidata_id": "Q17239974", "values": [[1, "かんじき", true]]} 285 | {"wikidata_id": "Q172809", "values": [[1, "テンピンボウリング", true], [1, "ボウリング", false], [1, "テンピン", false], [1, "ビッグボールボウリング", false], [1, "テンピン", false], [1, "テンピンボウリング", false]]} 286 | {"wikidata_id": "Q1748200", "values": [[1, "長門型戦艦", true], [1, "長門", false]]} 287 | {"wikidata_id": "Q175111", "values": [[1, "絞首刑", true], [1, "絞首刑による死", false], [1, "首吊り自殺", false], [1, "絞首刑にされた", false], [1, "絞首刑による殺人", false], [1, "偶発的な絞首", false], [1, "首を絞められて死ぬまで絞首刑にされた", false]]} 288 | {"wikidata_id": "Q175561", "values": [[1, "マイクロエレクトロメカニカルシステム", true], [1, "マイクロエレクトリカルメカニカルシステム", false], [1, "マイクロエレクトリカルメカニカルシステム", false], [1, "MEMS", false], [1, "マイクロエレクトロメカニカルシステム", false]]} 289 | {"wikidata_id": "Q17610859", "values": [[1, "カスパー・ユンカー", true]]} 290 | {"wikidata_id": "Q17685751", "values": [[1, "CHiCO", true]]} 291 | {"wikidata_id": "Q1770792", "values": [[1, "システマ", true]]} 292 | {"wikidata_id": "Q177570", "values": [[1, "線形マルトデキストリン", true], [1, "マルトデキストリン", false]]} 293 | {"wikidata_id": "Q178674", "values": [[1, "ナノメートル", true], [1, "nm", false], [1, "ナノメーター", false]]} 294 | {"wikidata_id": "Q178692", "values": [[1, "クレーン", true]]} 295 | {"wikidata_id": "Q1798592", "values": [[1, "クラウド・ストライフ", true], [1, "クラウド", false]]} 296 | {"wikidata_id": "Q180004", "values": [[1, "ファーギー", true], [1, "ステイシー・アン・ファーガソン", false], [1, "ステイシー・ファーガソン", false], [1, "ファーギー・デュアメル", false]]} 297 | {"wikidata_id": "Q180393", "values": [[1, "二シチリア王国", true], [1, "デュエ・シチリエ", false], [1, "レグノ・デッレ・デュエ・シチリエ", false], [1, "二つのシチリアの王国", false], [1, "二つのシチリア", false]]} 298 | {"wikidata_id": "Q18159034", "values": [[1, "アンドリュー・ベラスケス", true]]} 299 | {"wikidata_id": "Q181642", "values": [[1, "スズキ", true], [1, "スズキ織機株式会社", false], [1, "スズキ株式会社", false], [1, "スズキ自動車株式会社", false]]} 300 | {"wikidata_id": "Q181912", "values": [[1, "KLM", true], [1, "KLM航空", false], [1, "オランダ王立航空会社 (KLM)", false], [1, "オランダ王立航空会社N.V.", false], [1, "K.L.M. ロイヤルダッチ航空", false], [1, "KL", false], [1, "オランダ王立航空会社", false], [1, "KLMロイヤルダッチ航空", false]]} 301 | {"wikidata_id": "Q18240", "values": [[1, "食肉植物", true], [1, "食虫植物", false]]} 302 | {"wikidata_id": "Q182473", "values": [[1, "インターコンチネンタルカップ", true], [1, "トヨタ欧州/南米カップ", false], [1, "欧州/南米カップ", false], [1, "トヨタカップ", false]]} 303 | {"wikidata_id": "Q182687", "values": [[1, "手相術", true], [1, "手振り術", false], [1, "手の分析", false], [1, "占手術", false], [1, "占手術", false], [1, "線読み", false], [1, "手相読み", false], [1, "手相学", false], [1, "手形学", false]]} 304 | {"wikidata_id": "Q18392315", "values": [[1, "ドイツ風フライドポテト", true], [1, "ドイツ風揚げポテト", false], [1, "ブラットカルトフェルン", false]]} 305 | {"wikidata_id": "Q185020", "values": [[1, "ヒストグラム", true]]} 306 | {"wikidata_id": "Q1852945", "values": [[1, "症候群のリスト", true]]} 307 | {"wikidata_id": "Q18551518", "values": [[1, "ファン・ヒチャン", true], [1, "ファン・フイチャン", false], [1, "ファン・ヒーチャン", false], [1, "エイチ・シー・ファン", false], [1, "ヒーチャン・ファン", false], [1, "ファン・ヒチャン", false]]} 308 | {"wikidata_id": "Q185867", "values": [[1, "フィルム・ノワール", true]]} 309 | {"wikidata_id": "Q186356", "values": [[1, "ニューディール", true], [1, "ニューディール", false], [1, "ニューディール、1933-1939年", false]]} 310 | {"wikidata_id": "Q186961", "values": [[1, "フランス革命のタイムライン", true], [1, "フランス革命タイムライン", false], [1, "フランス革命のタイムライン", false]]} 311 | {"wikidata_id": "Q188295", "values": [[1, "フェルマーの小定理", true]]} 312 | {"wikidata_id": "Q188792", "values": [[1, "デビッド・シュワイマー", true], [1, "デビッド・ローレンス・シュワイマー", false]]} 313 | {"wikidata_id": "Q188886", "values": [[1, "ステーションワゴン", true], [1, "ビーチワゴン", false], [1, "ワゴン", false], [1, "エステート", false], [1, "エステートワゴン", false]]} 314 | {"wikidata_id": "Q188903", "values": [[1, "孟子", true], [1, "孟子", false], [1, "孟軻", false], [1, "孟軻", false], [1, "孟子", false], [1, "孟子", false], [1, "孟子", false]]} 315 | {"wikidata_id": "Q189389", "values": [[1, "動脈瘤", true], [1, "動脈瘤", false]]} 316 | {"wikidata_id": "Q189512", "values": [[1, "曽国藩", true], [1, "文正", false], [1, "楊徳陽神面面無目止士", false], [1, "伯瀚", false], [1, "弟生", false], [1, "曽子成", false], [1, "刁全", false], [1, "秋鵲斎", false]]} 317 | {"wikidata_id": "Q190701", "values": [[1, "バネハゼ", true], [1, "コレンボラ", false], [1, "バネハゼたち", false]]} 318 | {"wikidata_id": "Q1907935", "values": [[1, "マスティフ", true], [1, "マスティフ型", false]]} 319 | {"wikidata_id": "Q192165", "values": [[1, "ダニー・グローバー", true], [1, "ダニエル・レバーン・グローバー", false], [1, "ダニー・レバーン・グローバー", false]]} 320 | {"wikidata_id": "Q192943", "values": [[1, "キャサリン・パー", true], [1, "キャサリン・パー", false], [1, "キャサリン・パー", false], [1, "キャサリン・パー", false]]} 321 | {"wikidata_id": "Q193320", "values": [[1, "高周波活動オーロラ研究プログラム", true], [1, "HAARP", false]]} 322 | {"wikidata_id": "Q193470", "values": [[1, "ガスタービン", true], [1, "燃焼タービン", false], [1, "タービンエンジン", false]]} 323 | {"wikidata_id": "Q193482", "values": [[1, "ネーブ・キャンベル", true], [1, "ネーブ・アドリアンヌ・キャンベル", false]]} 324 | {"wikidata_id": "Q193910", "values": [[1, "オイラーの定理", true], [1, "フェルマー-オイラーの定理", false], [1, "オイラーのオイラー関数の定理", false]]} 325 | {"wikidata_id": "Q194455", "values": [[1, "スホーイSu-57", true], [1, "スホーイPAK FA", false], [1, "PAK FA", false], [1, "スホーイ57", false], [1, "Su57", false], [1, "T-50航空機", false], [1, "Su-57", false], [1, "フェロン", false], [1, "スホーイT-50", false]]} 326 | {"wikidata_id": "Q19458", "values": [[1, "バーンリーF.C.", true], [1, "バーンリー", false], [1, "BFC", false], [1, "バーンリーFC", false], [1, "ザ・クラレッツ", false], [1, "バーンリー・フットボール・クラブ", false]]} 327 | {"wikidata_id": "Q19707", "values": [[1, "エクウス・アフリカーヌス・アシナス", true], [1, "ロバ", false], [1, "🫏", false], [1, "ロバ", false]]} 328 | {"wikidata_id": "Q19827042", "values": [[1, "弓と矢", true], [1, "弓&矢", false], [1, "矢と弓", false]]} 329 | {"wikidata_id": "Q19949", "values": [[1, "バイオハザードのキャラクターリスト", true]]} 330 | {"wikidata_id": "Q19953724", "values": [[1, "ウルトラ HD ブルーレイ", true], [1, "4K ブルーレイディスク", false]]} 331 | {"wikidata_id": "Q199801", "values": [[1, "シンディ・クロフォード", true], [1, "シンシア・アン・クロフォード", false]]} 332 | {"wikidata_id": "Q20040395", "values": [[1, "佐々木由紀江", true]]} 333 | {"wikidata_id": "Q200534", "values": [[1, "ティルダ・スウィントン", true], [1, "キャサリン・マチルダ \"ティルダ\" スウィントン", false], [1, "キャサリン・マチルダ スウィントン", false]]} 334 | {"wikidata_id": "Q201339", "values": [[1, "公開鍵暗号", true], [1, "非対称暗号", false]]} 335 | {"wikidata_id": "Q201580", "values": [[1, "松本清張", true], [1, "松本清張", false], [1, "松本清張", false], [1, "松本清張", false], [1, "松本清張", false]]} 336 | {"wikidata_id": "Q2016382", "values": [[1, "お歯黒", true], [1, "日本の歯黒づけ", false]]} 337 | {"wikidata_id": "Q2017254", "values": [[1, "小田原攻め", true]]} 338 | {"wikidata_id": "Q201766", "values": [[1, "ブーゲンビル島", true], [1, "ブーゲンビル", false]]} 339 | {"wikidata_id": "Q202384", "values": [[1, "国会", true], [1, "日本の国会", false], [1, "国会/議会", false]]} 340 | {"wikidata_id": "Q202391", "values": [[1, "競歩", true], [1, "歩行競争", false], [1, "競争歩行", false]]} 341 | {"wikidata_id": "Q202698", "values": [[1, "イエスタデイ", true]]} 342 | {"wikidata_id": "Q203268", "values": [[1, "マイケル・C・ホール", true], [1, "マイケル・カーライル・ホール", false], [1, "ウィリアム・カーライル・ホール", false], [1, "ウィリアム・ホール", false]]} 343 | {"wikidata_id": "Q203690", "values": [[1, "ブライアン・エプスタイン", true], [1, "ブライアン・サミュエル・エプスタイン", false]]} 344 | {"wikidata_id": "Q2044577", "values": [[1, "山中亮輔", true]]} 345 | {"wikidata_id": "Q204933", "values": [[1, "斬首", true], [1, "斬首刑", false], [1, "首斬り", false]]} 346 | {"wikidata_id": "Q2063089", "values": [[1, "土蜘蛛", true]]} 347 | {"wikidata_id": "Q207264", "values": [[1, "フェルマー数", true]]} 348 | {"wikidata_id": "Q208132", "values": [[1, "にせシャチ", true], [1, "Pseudorca crassidens", false]]} 349 | {"wikidata_id": "Q20899062", "values": [[1, "むつ", true], [1, "無痛", false]]} 350 | {"wikidata_id": "Q2109422", "values": [[1, "有頂天ホテル", true], [1, "有頂天ホテル", false]]} 351 | {"wikidata_id": "Q2113595", "values": [[1, "菱田春草", true], [1, "菱田春草", false], [1, "菱田美緒二", false], [1, "菱田春草", false], [1, "菱田春草", false], [1, "菱田春草", false]]} 352 | {"wikidata_id": "Q211778", "values": [[1, "湖水地方", true], [1, "湖地方", false], [1, "レイクランド", false]]} 353 | {"wikidata_id": "Q212533", "values": [[1, "グレイトフル・デッド", true], [1, "ザ・デッド", false], [1, "ザ・グレイトフル・デッド", false]]} 354 | {"wikidata_id": "Q2126", "values": [[1, "ニュートリノ", true]]} 355 | {"wikidata_id": "Q214196", "values": [[1, "砲艦", true], [1, "砲艦船", false]]} 356 | {"wikidata_id": "Q215", "values": [[1, "スロベニア", true], [1, "スロベニア", false], [1, "svn", false], [1, "スロベニア共和国", false], [1, "スロベニア共和国", false], [1, "slo", false], [1, "🇸🇮", false], [1, "SLO", false], [1, "si", false]]} 357 | {"wikidata_id": "Q216920", "values": [[1, "世俗主義", true], [1, "ライシテ(フランス)", false]]} 358 | {"wikidata_id": "Q217734", "values": [[1, "福井謙一", true]]} 359 | {"wikidata_id": "Q218652", "values": [[1, "五行", true], [1, "五行", false], [1, "五つの要素", false], [1, "五つの要素", false]]} 360 | {"wikidata_id": "Q219623", "values": [[1, "鉄拳", true], [1, "アイアン・フィスト", false]]} 361 | {"wikidata_id": "Q219717", "values": [[1, "クリス・タッカー", true], [1, "クリストファー・タッカー", false]]} 362 | {"wikidata_id": "Q220932", "values": [[1, "ダーメスチダエ", true]]} 363 | {"wikidata_id": "Q22126182", "values": [[1, "唐田えりか", true]]} 364 | {"wikidata_id": "Q222824", "values": [[1, "2S7 ピオン", true]]} 365 | {"wikidata_id": "Q224081", "values": [[1, "ジョヴァンニ・リビシ", true], [1, "ヴォンニ・リビシ", false], [1, "アントニーノ・ジョヴァンニ・リビシ", false]]} 366 | {"wikidata_id": "Q2276066", "values": [[1, "荒川美穂", true]]} 367 | {"wikidata_id": "Q229214", "values": [[1, "エリザベス・ウッドヴィル", true], [1, "エリザベス、イングランド王妃未亡人", false], [1, "エリザベス、イングランドの女王", false], [1, "エリザベス、グレイ夫人", false], [1, "クイーン・エリザベス", false], [1, "エリザベス・ワイデヴィル", false], [1, "エリザベス・ウィドヴィル", false], [1, "グレイ夫人", false], [1, "ウィドヴィル", false], [1, "エリザベス・ワイドヴィル", false]]} 368 | {"wikidata_id": "Q229487", "values": [[1, "アリソン・ジャニー", true], [1, "アリソン・ブルックス・ジャニー", false]]} 369 | {"wikidata_id": "Q2300236", "values": [[1, "水陸両用戦闘艦", true], [1, "水陸両用戦闘船", false], [1, "上陸プラットフォーム水陸両用", false]]} 370 | {"wikidata_id": "Q2310134", "values": [[1, "大阪難波駅", true], [1, "近鉄難波駅", false], [1, "難波駅", false], [1, "大阪難波駅", false]]} 371 | {"wikidata_id": "Q231218", "values": [[1, "自生説", true], [1, "生命の起源", false], [1, "生命発生", false]]} 372 | {"wikidata_id": "Q2324", "values": [[1, "2月9日", true], [1, "2月9日", false], [1, "2月9日", false], [1, "2月9日", false], [1, "2月9日", false]]} 373 | {"wikidata_id": "Q232660", "values": [[1, "種村有菜", true]]} 374 | {"wikidata_id": "Q234712", "values": [[1, "ローリ・ロフリン", true], [1, "ローリ・アン・ロフリン", false]]} 375 | {"wikidata_id": "Q2348046", "values": [[1, "烈火の炎", true]]} 376 | {"wikidata_id": "Q2351055", "values": [[1, "太陽の精霊", true]]} 377 | {"wikidata_id": "Q23664", "values": [[1, "真空フラスコ", true], [1, "サーモス", false]]} 378 | {"wikidata_id": "Q23666199", "values": [[1, "住友不動産六本木グランドタワー", true], [1, "六本木グランドタワー", false]]} 379 | {"wikidata_id": "Q237361", "values": [[1, "中原麻衣", true], [1, "中原麻衣", false]]} 380 | {"wikidata_id": "Q2382024", "values": [[1, "ストレンジレット", true]]} 381 | {"wikidata_id": "Q2384582", "values": [[1, "真光屋", true]]} 382 | {"wikidata_id": "Q23948536", "values": [[1, "横井ゆはな", true]]} 383 | {"wikidata_id": "Q240314", "values": [[1, "交響曲第5番", true], [1, "ホ短調、作品64、交響曲第5番", false]]} 384 | {"wikidata_id": "Q24067079", "values": [[1, "量子放射線科学技術研究所", true], [1, "QST", false]]} 385 | {"wikidata_id": "Q2411213", "values": [[1, "森下能幸", true]]} 386 | {"wikidata_id": "Q2412759", "values": [[1, "機動戦士ガンダムAGE", true]]} 387 | {"wikidata_id": "Q241482", "values": [[1, "50回目のファースト・キス", true]]} 388 | {"wikidata_id": "Q24236916", "values": [[1, "菅野保", true], [1, "菅野保", false]]} 389 | {"wikidata_id": "Q243643", "values": [[1, "シャーロック・ホームズ:シャドウ ゲーム", true]]} 390 | {"wikidata_id": "Q24574641", "values": [[1, "エレナ・オブ・アバロール", true]]} 391 | {"wikidata_id": "Q2463351", "values": [[1, "浅野 哲也", true]]} 392 | {"wikidata_id": "Q2465843", "values": [[1, "小谷 喜哉", true], [1, "喜哉", false]]} 393 | {"wikidata_id": "Q24864550", "values": [[1, "武富礼", true]]} 394 | {"wikidata_id": "Q24867647", "values": [[1, "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", true], [1, "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", false]]} 395 | {"wikidata_id": "Q24874284", "values": [[1, "エース", true]]} 396 | {"wikidata_id": "Q2492971", "values": [[1, "スプラッシュ・マウンテン", true]]} 397 | {"wikidata_id": "Q25021298", "values": [[1, "Google Pixel", true], [1, "Google Pixel電話", false], [1, "ピクセル", false], [1, "ピクセル電話", false]]} 398 | {"wikidata_id": "Q250905", "values": [[1, "シーラE.", true], [1, "シーラ・エスコヴェド", false], [1, "シーラ・セシリア・エスコヴェド", false]]} 399 | {"wikidata_id": "Q254164", "values": [[1, "大村湾", true]]} 400 | {"wikidata_id": "Q255528", "values": [[1, "MOSテクノロジー6502", true], [1, "6502マイクロプロセッサ", false], [1, "6502(マイクロプロセッサ)", false], [1, "ロックウェル6502マイクロプロセッサ", false], [1, "MOS 6502", false], [1, "MOSテクノロジー6502マイクロプロセッサ", false], [1, "6502", false]]} 401 | {"wikidata_id": "Q2563377", "values": [[1, "ラブ・ピストルズ", true], [1, "セックス・ピストルズ", false]]} 402 | {"wikidata_id": "Q2593075", "values": [[1, "箱根湯本駅", true]]} 403 | {"wikidata_id": "Q2605029", "values": [[1, "オードトワレ", true]]} 404 | {"wikidata_id": "Q261103", "values": [[1, "善良なサマリア人のたとえ話", true], [1, "善良なサマリア人", false], [1, "善良なサマリア人", false], [1, "善良なサマリア人(たとえ話)", false]]} 405 | {"wikidata_id": "Q262244", "values": [[1, "浄土宗", true], [1, "阿弥陀仏教", false]]} 406 | {"wikidata_id": "Q26372", "values": [[1, "北野武", true], [1, "北野武", false], [1, "ビートたけし", false]]} 407 | {"wikidata_id": "Q264221", "values": [[1, "ALF", true]]} 408 | {"wikidata_id": "Q265061", "values": [[1, "萩尾望都", true]]} 409 | {"wikidata_id": "Q26833946", "values": [[1, "iPhone 7 Plus", true], [1, "Apple iPhone 7 Plus", false]]} 410 | {"wikidata_id": "Q2696609", "values": [[1, "スクールランドハイム", true]]} 411 | {"wikidata_id": "Q2704292", "values": [[1, "日本の駆逐艦吹雪", true], [1, "吹雪", false]]} 412 | {"wikidata_id": "Q270470", "values": [[1, "ピーターパン", true]]} 413 | {"wikidata_id": "Q2712866", "values": [[1, "フェニックスのイッキ", true], [1, "フェニックスのイッキ", false]]} 414 | {"wikidata_id": "Q271937", "values": [[1, "ロフォフォラ・ウィリアムシー", true], [1, "ペヨーテ", false], [1, "ペヨーテ", false]]} 415 | {"wikidata_id": "Q2719745", "values": [[1, "To Love-Ruのキャラクター一覧", true]]} 416 | {"wikidata_id": "Q272329", "values": [[1, "ウム・ジョンファ", true], [1, "ウム・ジョンファ", false], [1, "オム・ジョンファ", false], [1, "ジョンファ・オム", false]]} 417 | {"wikidata_id": "Q272969", "values": [[1, "連邦情報局", true], [1, "ドイツの情報機関", false], [1, "BND", false], [1, "連邦情報機関", false]]} 418 | {"wikidata_id": "Q274151", "values": [[1, "フライドエッグ", true]]} 419 | {"wikidata_id": "Q2745015", "values": [[1, "大統領専用車", true], [1, "リムジンワン", false], [1, "キャデラックワン", false], [1, "ザ・ビースト", false], [1, "ファーストカー", false], [1, "ステージコーチ", false]]} 420 | {"wikidata_id": "Q27469826", "values": [[1, "キム・イェリム", true], [1, "キム・イェリム", false], [1, "キム・イェリム", false]]} 421 | {"wikidata_id": "Q275620", "values": [[1, "アノナ・スクワモサ", true], [1, "A. スクワモサ", false], [1, "カスタードアップル", false], [1, "シュガーアップル", false], [1, "スイートソップ", false]]} 422 | {"wikidata_id": "Q276015", "values": [[1, "論語", true], [1, "孔子の論語", false]]} 423 | {"wikidata_id": "Q276186", "values": [[1, "アキ・カウリスマキ", true], [1, "アキ・オラヴィ・カウリスマキ", false]]} 424 | {"wikidata_id": "Q276407", "values": [[1, "オペラ座の怪人", true], [1, "オペラ座の怪人", false]]} 425 | {"wikidata_id": "Q27732581", "values": [[1, "補中益気湯", true], [1, "補中益気湯", false], [1, "補中益気湯", false], [1, "補中益気湯", false], [1, "補中益気湯", false]]} 426 | {"wikidata_id": "Q27952198", "values": [[1, "ゴ・ウソク", true], [1, "ウソク・ゴ", false]]} 427 | {"wikidata_id": "Q279973", "values": [[1, "エイミー山田", true], [1, "エイミ山田", false]]} 428 | {"wikidata_id": "Q28069108", "values": [[1, "石井一成", true]]} 429 | {"wikidata_id": "Q2813884", "values": [[1, "茅野権兵衛", true]]} 430 | {"wikidata_id": "Q28312052", "values": [[1, "ゼノブレイド2", true], [1, "XC2", false], [1, "ゼノブレイド2", false]]} 431 | {"wikidata_id": "Q2833226", "values": [[1, "アレクサンダー・ヴォルグ・ザンギエフ", true], [1, "アレクサンダー・ヴォルグ・ザンギエフ", false], [1, "ヴォルグ・ザンギエフ", false], [1, "赤い狼", false], [1, "アレクサンダー・ヴォルク・ザンギエフ", false]]} 432 | {"wikidata_id": "Q284099", "values": [[1, "マジックナンバー", true], [1, "フォーマットシグネチャ", false], [1, "ファイル形式識別パターン", false], [1, "ファイルシグネチャ", false], [1, "ファイル形式シグネチャ", false]]} 433 | {"wikidata_id": "Q2847", "values": [[1, "9月14日", true], [1, "9月14日", false], [1, "9月14日", false], [1, "9月14日", false], [1, "9月14日", false]]} 434 | {"wikidata_id": "Q285029", "values": [[1, "ヘルメティア・イルセンス", true], [1, "クロアシナガバエ", false]]} 435 | {"wikidata_id": "Q2853", "values": [[1, "9月10日", true], [1, "9月10日", false], [1, "9月10日", false], [1, "9月10日", false], [1, "9月10日", false]]} 436 | {"wikidata_id": "Q28537", "values": [[1, "ヴァンパイア・ダイアリーズ", true], [1, "ヴァンパイア・ダイアリーズ", false]]} 437 | {"wikidata_id": "Q285801", "values": [[1, "エンタープライズ", true], [1, "CVN-80", false], [1, "PCUエンタープライズ", false], [1, "USSエンタープライズ", false]]} 438 | {"wikidata_id": "Q2866", "values": [[1, "アレクサンダー・ルカシェンコ", true], [1, "アレクサンダー・グリゴリエヴィッチ・ルカシェンコ", false], [1, "アリャクサンドル・リゴラヴィッチ・ルカシェンカ", false], [1, "アリャクサンドル・ルカシェンカ", false]]} 439 | {"wikidata_id": "Q2867557", "values": [[1, "メジャーリーグベースボールプレーヤーズアソシエーション", true], [1, "MLBPA", false]]} 440 | {"wikidata_id": "Q28730", "values": [[1, "サウル", true], [1, "シャウル", false]]} 441 | {"wikidata_id": "Q28741579", "values": [[1, "リー・ジェノ", true], [1, "ジェノ", false], [1, "リー・ジェノ", false]]} 442 | {"wikidata_id": "Q28827", "values": [[1, "Ø", true], [1, "ø", false]]} 443 | {"wikidata_id": "Q28845729", "values": [[1, "Ryzen", true], [1, "AMD Ryzen", false], [1, "AMD RYZEN", false], [1, "RYZEN", false]]} 444 | {"wikidata_id": "Q290147", "values": [[1, "アンアン", true], [1, "アンアン", false], [1, "アンアン", false], [1, "アンアン", false]]} 445 | {"wikidata_id": "Q2927984", "values": [[1, "ゴンザガ・ブルドッグス", true], [1, "ザグス", false], [1, "ゴンザガ大学の陸上競技", false]]} 446 | {"wikidata_id": "Q2969458", "values": [[1, "加納城", true]]} 447 | {"wikidata_id": "Q29859", "values": [[1, "渡り廊下走り隊7", true]]} 448 | {"wikidata_id": "Q3001082", "values": [[1, "南朝", true], [1, "吉野朝廷", false], [1, "南朝", false]]} 449 | {"wikidata_id": "Q30311678", "values": [[1, "加計学園問題", true]]} 450 | {"wikidata_id": "Q3032351", "values": [[1, "装甲師団", true], [1, "戦車師団", false], [1, "装甲師団", false]]} 451 | {"wikidata_id": "Q3034548", "values": [[1, "館林藩", true]]} 452 | {"wikidata_id": "Q3071089", "values": [[1, "凌雲閣", true]]} 453 | {"wikidata_id": "Q3076920", "values": [[1, "広隆寺", true], [1, "八岡寺", false], [1, "太秦寺", false]]} 454 | {"wikidata_id": "Q3082613", "values": [[1, "函館市交通局", true]]} 455 | {"wikidata_id": "Q308879", "values": [[1, "スモールフォワード", true]]} 456 | {"wikidata_id": "Q3109328", "values": [[1, "シャズナ", true], [1, "レイチェル", false]]} 457 | {"wikidata_id": "Q3123", "values": [[1, "イオ", true], [1, "イオ(月)", false], [1, "木星I", false]]} 458 | {"wikidata_id": "Q3130609", "values": [[1, "渡辺崋山", true], [1, "渡辺貞安", false], [1, "善楽堂", false], [1, "詩暗渡辺", false], [1, "貞安", false], [1, "愚海道", false], [1, "渡辺貞安", false], [1, "昇渡辺", false], [1, "渡辺崋山", false], [1, "崋山", false], [1, "昇", false]]} 459 | {"wikidata_id": "Q313542", "values": [[1, "青島ビール", true], [1, "青島ビール株式会社", false], [1, "青島ビール社有限公司", false]]} 460 | {"wikidata_id": "Q313992", "values": [[1, "デビッド・リー・ロス", true], [1, "DLR", false], [1, "デビッド・ラ・ロタ", false], [1, "ダイヤモンド・デイブ", false]]} 461 | {"wikidata_id": "Q315484", "values": [[1, "パク・チャヌク", true], [1, "パク・チャヌク", false], [1, "チャヌク・パク", false]]} 462 | {"wikidata_id": "Q317343", "values": [[1, "チウェテル・エジオフォー", true], [1, "チウェテル・ウメアディ・エジオフォー", false]]} 463 | {"wikidata_id": "Q3211549", "values": [[1, "八犬伝 -東方八犬異聞-", true], [1, "八犬伝:東方八犬異聞", false]]} 464 | {"wikidata_id": "Q3242685", "values": [[1, "豆豉", true], [1, "塩漬けの黒豆", false], [1, "発酵黒大豆", false], [1, "中国の発酵黒豆", false], [1, "トチ", false]]} 465 | {"wikidata_id": "Q3247778", "values": [[1, "渡辺進", true]]} 466 | {"wikidata_id": "Q3259077", "values": [[1, "さぎ", true]]} 467 | {"wikidata_id": "Q3266435", "values": [[1, "シェラ", true]]} 468 | {"wikidata_id": "Q327115", "values": [[1, "コーンフレーク", true], [1, "コーンフレーク", false]]} 469 | {"wikidata_id": "Q328615", "values": [[1, "沖縄", true]]} 470 | {"wikidata_id": "Q329821", "values": [[1, "大逆罪", true]]} 471 | {"wikidata_id": "Q3355", "values": [[1, "アメリア・イアハート", true], [1, "アメリア・メアリー・イアハート", false], [1, "アメリア・イアハート・プットナム", false], [1, "レディ・リンディ", false]]} 472 | {"wikidata_id": "Q3371986", "values": [[1, "ジョーダン・ピール", true], [1, "ジョーダン・ハワース・ピール", false]]} 473 | {"wikidata_id": "Q3391085", "values": [[1, "犬とハサミ", true], [1, "犬と鋏は使いよう", false], [1, "犬ハサ", false]]} 474 | {"wikidata_id": "Q3395430", "values": [[1, "ポロニウム210", true], [1, "ポロニウム Po-210", false], [1, "210Po", false], [1, "Po-210", false]]} 475 | {"wikidata_id": "Q347395", "values": [[1, "ルイス・グズマン", true], [1, "ルイス・グズマン", false]]} 476 | {"wikidata_id": "Q3513969", "values": [[1, "山田 太一", true]]} 477 | {"wikidata_id": "Q3541667", "values": [[1, "宮本常一", true]]} 478 | {"wikidata_id": "Q3543682", "values": [[1, "大槻真希", true], [1, "大槻真希", false]]} 479 | {"wikidata_id": "Q3543709", "values": [[1, "伊藤蘭", true]]} 480 | {"wikidata_id": "Q3543894", "values": [[1, "ポリゴン・ピクチャーズ", true], [1, "ポリゴン・ピクチャーズ株式会社", false]]} 481 | {"wikidata_id": "Q3545487", "values": [[1, "日方章子", true], [1, "日方章子", false]]} 482 | {"wikidata_id": "Q3547706", "values": [[1, "宇宙船サジタリウス", true], [1, "宇宙船サジタリウス", false]]} 483 | {"wikidata_id": "Q3567503", "values": [[1, "ウェスタンリバーレイルロード", true], [1, "WRR", false]]} 484 | {"wikidata_id": "Q359480", "values": [[1, "岸田文雄", true], [1, "文雄岸田", false], [1, "KISHIDA文雄", false]]} 485 | {"wikidata_id": "Q35989", "values": [[1, "マイバッハ", true]]} 486 | {"wikidata_id": "Q361", "values": [[1, "第一次世界大戦", true], [1, "すべての戦争を終わらせる戦争", false], [1, "第一次世界大戦", false], [1, "第一次世界大戦", false], [1, "大戦", false], [1, "第1次世界大戦", false], [1, "第一次世界大戦", false], [1, "WW I", false], [1, "WWI", false], [1, "WW 1", false], [1, "第1次世界大戦", false], [1, "世界大戦", false], [1, "世界大戦1", false], [1, "世界大戦, 1914-1918", false], [1, "大戦", false], [1, "WW1", false]]} 487 | {"wikidata_id": "Q36101", "values": [[1, "コアラ", true], [1, "クーラ", false], [1, "コアラたち", false], [1, "コアラ", false], [1, "コアラベア", false], [1, "ファスコラクトス・シネレウス", false]]} 488 | {"wikidata_id": "Q3612482", "values": [[1, "アレン・ウォーカー", true]]} 489 | {"wikidata_id": "Q363271", "values": [[1, "デビッド・ワーナー", true], [1, "デビッド・ハタースリー・ワーナー", false]]} 490 | {"wikidata_id": "Q3646616", "values": [[1, "元ユネスコ世界遺産サイト", true]]} 491 | {"wikidata_id": "Q36477", "values": [[1, "経度", true], [1, "経度の角度", false]]} 492 | {"wikidata_id": "Q373083", "values": [[1, "北條重時", true], [1, "北條重時", false]]} 493 | {"wikidata_id": "Q37577", "values": [[1, "ジョン・カルヴァン", true], [1, "カルヴァン", false], [1, "ジャン・コーヴァン", false]]} 494 | {"wikidata_id": "Q3780403", "values": [[1, "高高度核爆発", true], [1, "高高度核爆発", false]]} 495 | {"wikidata_id": "Q3782890", "values": [[1, "ハンマーセッション!", true]]} 496 | {"wikidata_id": "Q380613", "values": [[1, "ローリー・マキロイ", true], [1, "ローズ", false], [1, "ウィーマック", false]]} 497 | {"wikidata_id": "Q3840840", "values": [[1, "天使の策略 - 夢のかけらは殺人の香り", true], [1, "ルパン三世 - 天使の策略 - 夢のかけらは殺人の香り", false]]} 498 | {"wikidata_id": "Q385236", "values": [[1, "大川周明", true], [1, "大川周明", false], [1, "大川周明", false], [1, "大川周明", false]]} 499 | {"wikidata_id": "Q3861", "values": [[1, "ドーハ", true]]} 500 | {"wikidata_id": "Q38668310", "values": [[1, "日本第一党", true]]} 501 | {"wikidata_id": "Q3874799", "values": [[1, "ヴォロディミール・ゼレンスキー", true], [1, "ヴォロディミール・ゼレンスキー", false], [1, "ウクライナ大統領ヴォロディミール・ゼレンスキー", false], [1, "ヴォロディミール・ゼレンスキー", false], [1, "ゼレンスキー大統領", false], [1, "ウクライナ大統領ヴォロディミール・オレクサンドロヴィチ・ゼレンスキー", false], [1, "ヴォロディミール・オレクサンドロヴィチ・ゼレンスキー", false], [1, "ヴォロディミール・ゼレンスキー", false]]} 502 | {"wikidata_id": "Q390417", "values": [[1, "るつぼ", true]]} 503 | {"wikidata_id": "Q3909814", "values": [[1, "咲-Saki-キャラクターリスト", true]]} 504 | {"wikidata_id": "Q39427", "values": [[1, "シュールレアリズム", true]]} 505 | {"wikidata_id": "Q3959606", "values": [[1, "園崎 詩音", true], [1, "園崎 詩音", false]]} 506 | {"wikidata_id": "Q3980256", "values": [[1, "マイクロマン", true]]} 507 | {"wikidata_id": "Q3982616", "values": [[1, "手締め", true]]} 508 | {"wikidata_id": "Q398925", "values": [[1, "AW609", true], [1, "AW 609", false], [1, "ベル/アグスタ BA609", false], [1, "レオナルド AW609", false], [1, "BA609", false], [1, "アグスタウェストランド AW609", false], [1, "アグスタウェストランド AW 609", false]]} 509 | {"wikidata_id": "Q399755", "values": [[1, "松平直則", true]]} 510 | {"wikidata_id": "Q39978", "values": [[1, "ノストラダムス", true], [1, "ミシェル・ド・ノストラダム", false], [1, "ミシェル・ノストラダムス", false]]} 511 | {"wikidata_id": "Q40039849", "values": [[1, "神谷麗子", true]]} 512 | {"wikidata_id": "Q4004629", "values": [[1, "逆説的脱衣行動", true]]} 513 | {"wikidata_id": "Q401", "values": [[1, "楔形文字", true], [1, "楔形文字のスクリプト", false], [1, "楔形文字の書き方", false], [1, "スメロ・アッカド楔形文字", false], [1, "矢頭文字", false]]} 514 | {"wikidata_id": "Q40607", "values": [[1, "南京錠", true]]} 515 | {"wikidata_id": "Q40867", "values": [[1, "毒", true], [1, "毒物", false]]} 516 | {"wikidata_id": "Q41053", "values": [[1, "ヒズボラ", true], [1, "レバノンのヒズボラ", false], [1, "レバノンのヒズブッラ", false]]} 517 | {"wikidata_id": "Q4207068", "values": [[1, "穂波 修子", true], [1, "穂波 修子", false], [1, "穂波 修子", false]]} 518 | {"wikidata_id": "Q420726", "values": [[1, "分岐鎖アミノ酸", true], [1, "分岐鎖アミノ酸", false], [1, "BCAA", false], [1, "分岐鎖のアミノ酸", false], [1, "分岐鎖アミノ酸", false]]} 519 | {"wikidata_id": "Q4207306", "values": [[1, "辺見じゅん", true]]} 520 | {"wikidata_id": "Q423652", "values": [[1, "ブラック・ラグーン", true], [1, "ブラック・ラグーン ロベルタの血の軌跡", false], [1, "ブラック・ラグーン", false], [1, "ブラック・ラグーン ザ・セカンド・バラージ", false], [1, "スロッターマニアV: ブラック・ラグーン", false]]} 521 | {"wikidata_id": "Q423762", "values": [[1, "パクリタキセル", true], [1, "オンゾル", false], [1, "ジェネタキセル", false], [1, "サイクロパックス", false], [1, "パクリタキセル", false], [1, "タキソールA", false], [1, "エベタキセル", false], [1, "ユータキサン", false], [1, "アンザタックス", false], [1, "タキソール", false], [1, "PAX", false], [1, "リポパック", false], [1, "プラキセル", false], [1, "5β,20-エポキシ-1,2-α,4,7β,10β,13α-ヘキサヒドロキシタックス-11-エン-9-ワン 4,10-ジアセテート 2-ベンゾエート 13-エステル with (2R,3S)-N-ベンゾイル-3-フェニルイソセリン", false], [1, "タキサルビン", false], [1, "カプソール", false], [1, "ジェネクソール", false], [1, "BMS-181339-01", false], [1, "インタキセル", false], [1, "ミトタキス", false]]} 522 | {"wikidata_id": "Q42392", "values": [[1, "甘粛", true], [1, "甘粛", false]]} 523 | {"wikidata_id": "Q425265", "values": [[1, "統計的有意義性", true]]} 524 | {"wikidata_id": "Q4261773", "values": [[1, "国別ミサイル一覧", true]]} 525 | {"wikidata_id": "Q427448", "values": [[1, "コレクターユイ", true]]} 526 | {"wikidata_id": "Q42757690", "values": [[1, "偽造文書", true], [1, "偽文書", false], [1, "偽の文書", false]]} 527 | {"wikidata_id": "Q42786", "values": [[1, "オードリー・ヘップバーン", true], [1, "エッダ・ヴァン・ヘムストラ", false], [1, "エッダ・キャスリーン・ラストン", false], [1, "オードリー・キャスリーン・ラストン", false], [1, "オードリー・キャスリーン・ヘップバーン-ラストン", false]]} 528 | {"wikidata_id": "Q428104", "values": [[1, "レ・ラリーズ・デニュデ", true], [1, "レ・ラリーズ・デニュデス", false]]} 529 | {"wikidata_id": "Q429942", "values": [[1, "タンザナイト", true], [1, "タンジェロフィット", false]]} 530 | {"wikidata_id": "Q43423", "values": [[1, "イソップ", true], [1, "イソップ", false], [1, "イソップ", false], [1, "イソップ", false], [1, "イソップ", false], [1, "イソップ", false]]} 531 | {"wikidata_id": "Q43431597", "values": [[1, "バニラ", true]]} 532 | {"wikidata_id": "Q43450", "values": [[1, "体操", true]]} 533 | {"wikidata_id": "Q43514", "values": [[1, "相対性理論", true]]} 534 | {"wikidata_id": "Q4362598", "values": [[1, "ピコ", true]]} 535 | {"wikidata_id": "Q439675", "values": [[1, "徳川 家慶", true]]} 536 | {"wikidata_id": "Q441491", "values": [[1, "小泉又次郎", true], [1, "小泉又次郎", false], [1, "小泉又次郎", false]]} 537 | {"wikidata_id": "Q4468223", "values": [[1, "ウー・レイ", true]]} 538 | {"wikidata_id": "Q44914", "values": [[1, "数独", true], [1, "数独", false], [1, "数字の場所", false], [1, "数独", false], [1, "数独", false], [1, "ゴドク", false], [1, "数独イオン", false], [1, "オイラーの箱", false], [1, "数独", false], [1, "ナンプレ", false], [1, "数独", false], [1, "数独", false], [1, "偽数独", false], [1, "ワードク", false], [1, "ヘキサ数独", false], [1, "数独", false], [1, "数独者", false]]} 539 | {"wikidata_id": "Q455351", "values": [[1, "足利 義勝", true]]} 540 | {"wikidata_id": "Q455462", "values": [[1, "アントワネ・グリーズマン", true]]} 541 | {"wikidata_id": "Q456609", "values": [[1, "キム・オクビン", true], [1, "キム・オクビン", false]]} 542 | {"wikidata_id": "Q4581198", "values": [[1, "1983年日本海地震", true], [1, "1983年の日本海地震", false], [1, "1983-日本海-地震", false]]} 543 | {"wikidata_id": "Q458312", "values": [[1, "渡辺恵美", true]]} 544 | {"wikidata_id": "Q458321", "values": [[1, "大韓航空902便", true], [1, "KAL902便", false], [1, "KE902便", false]]} 545 | {"wikidata_id": "Q46347", "values": [[1, "パトリック・ヴィエラ", true]]} 546 | {"wikidata_id": "Q463559", "values": [[1, "遊☆戯☆王のキャラクター一覧", true]]} 547 | {"wikidata_id": "Q463940", "values": [[1, "中山 慶子", true]]} 548 | {"wikidata_id": "Q464601", "values": [[1, "キム・ヒーソン", true], [1, "キム・ヒーソン", false]]} 549 | {"wikidata_id": "Q465774", "values": [[1, "金羊毛騎士団", true]]} 550 | {"wikidata_id": "Q468478", "values": [[1, "スペースオペラ", true], [1, "スペースオペラズ", false]]} 551 | {"wikidata_id": "Q471885", "values": [[1, "光厳", true], [1, "光厳", false], [1, "光厳天皇", false], [1, "光厳天皇", false], [1, "光厳", false]]} 552 | {"wikidata_id": "Q47465132", "values": [[1, "BG パーソナル・ボディガード", true]]} 553 | {"wikidata_id": "Q47470228", "values": [[1, "横沢明", true]]} 554 | {"wikidata_id": "Q477191", "values": [[1, "キス・アンド・クライ", true], [1, "キス・アンド・クライ・エリア", false], [1, "キス・アンド・クライ", false]]} 555 | {"wikidata_id": "Q481711", "values": [[1, "アムールコルクノキ", true], [1, "P. amurense", false]]} 556 | {"wikidata_id": "Q4833767", "values": [[1, "B.B.クイーンズ", true]]} 557 | {"wikidata_id": "Q483978", "values": [[1, "ペンテコステ派", true], [1, "クラシカルペンテコステ派", false], [1, "ペンテコステ派は、神が肉体となって現れ、父であると同時に息子であるイエスと一体であると信じています。彼らは、聖書が教える神の多元性を信じていません。", false], [1, "神が父であり、子であり、聖霊であることを否定します。", false]]} 558 | {"wikidata_id": "Q4857136", "values": [[1, "播州赤穂駅", true]]} 559 | {"wikidata_id": "Q486554", "values": [[1, "パラサイトシングル", true]]} 560 | {"wikidata_id": "Q487728", "values": [[1, "イ・カン王子", true]]} 561 | {"wikidata_id": "Q4886992", "values": [[1, "ベンド・オア", true]]} 562 | {"wikidata_id": "Q48968805", "values": [[1, "おっぱいスラッシュ", true], [1, "ぴー スラッシュ", false], [1, "パイスラ", false], [1, "π/", false], [1, "パイスラッシュ", false], [1, "パイスラッシュ", false], [1, "πスラッシュ", false]]} 563 | {"wikidata_id": "Q492596", "values": [[1, "千葉期", true], [1, "中期更新世", false], [1, "イオニア期", false]]} 564 | {"wikidata_id": "Q494097", "values": [[1, "イ・ソジン", true], [1, "イ・ソジン", false], [1, "イ・ソジン", false], [1, "イ・ソジン", false], [1, "イ・ソジン", false], [1, "イ・ソチン", false]]} 565 | {"wikidata_id": "Q494333", "values": [[1, "キム・ミンジョン", true], [1, "キム・ミンジョン‎", false], [1, "キム・ミンジョン", false]]} 566 | {"wikidata_id": "Q494725", "values": [[1, "ユン・ウンヘ", true]]} 567 | {"wikidata_id": "Q495", "values": [[1, "トリノ", true], [1, "トリノ", false], [1, "イタリア、トリノ", false]]} 568 | {"wikidata_id": "Q4962908", "values": [[1, "ブライアンズ・タイム", true]]} 569 | {"wikidata_id": "Q4966605", "values": [[1, "ヘルプ:新しいページの作成開始", true]]} 570 | {"wikidata_id": "Q496733", "values": [[1, "日本野球殿堂", true]]} 571 | {"wikidata_id": "Q4972114", "values": [[1, "放送信号侵入", true]]} 572 | {"wikidata_id": "Q499633", "values": [[1, "タイムマシン", true], [1, "タイムマシン", false]]} 573 | {"wikidata_id": "Q50604", "values": [[1, "ヒョンジン・リュ", true], [1, "ヒョンジン・リュ", false], [1, "リュ・ヒョンジン", false]]} 574 | {"wikidata_id": "Q5069956", "values": [[1, "チャンピオン・カーニバル", true], [1, "CC", false]]} 575 | {"wikidata_id": "Q512599", "values": [[1, "不動産鑑定", true], [1, "土地評価", false], [1, "財産鑑定", false], [1, "土地鑑定", false], [1, "財産評価", false]]} 576 | {"wikidata_id": "Q51379", "values": [[1, "比例性", true], [1, "線形性", false], [1, "に比例する", false]]} 577 | {"wikidata_id": "Q51547", "values": [[1, "ビリー・ワイルダー", true], [1, "サミュエル・ワイルダー", false]]} 578 | {"wikidata_id": "Q5162259", "values": [[1, "コナー・マクレガー", true], [1, "コナー・アンソニー・マクレガー", false], [1, "コンホール・アントイン・マク・グレゴール", false], [1, "ミスティック・マック", false], [1, "ザ・ノトーリアス", false]]} 579 | {"wikidata_id": "Q51788", "values": [[1, "アールツーディーツー", true], [1, "アールツーディーツー", false], [1, "アートゥーデトゥー", false], [1, "アートゥー", false], [1, "アールツー", false]]} 580 | {"wikidata_id": "Q5189833", "values": [[1, "クルード", true]]} 581 | {"wikidata_id": "Q522246", "values": [[1, "中松義郎", true], [1, "中松義郎博士", false]]} 582 | {"wikidata_id": "Q5224997", "values": [[1, "ツインエンジェルズ", true]]} 583 | {"wikidata_id": "Q526979", "values": [[1, "ウィーゼルAWC", true]]} 584 | {"wikidata_id": "Q5317476", "values": [[1, "オランダ人の妻", true]]} 585 | {"wikidata_id": "Q5360589", "values": [[1, "日照雨", true], [1, "悪魔が杖で妻を打っている", false], [1, "液体の陽光", false], [1, "日照雨", false], [1, "悪魔が妻にキスをしている", false], [1, "悪魔が妻を打っている", false]]} 586 | {"wikidata_id": "Q54094", "values": [[1, "サミ・ケディラ", true]]} 587 | {"wikidata_id": "Q5431296", "values": [[1, "忠実な象", true]]} 588 | {"wikidata_id": "Q54779334", "values": [[1, "正田文子", true], [1, "正田文子", false], [1, "正田文子", false], [1, "副島文子", false]]} 589 | {"wikidata_id": "Q54894945", "values": [[1, "ボス・レベル", true]]} 590 | {"wikidata_id": "Q549567", "values": [[1, "檀君", true]]} 591 | {"wikidata_id": "Q5507446", "values": [[1, "藤本やえ", true], [1, "藤本やえ", false], [1, "やえ", false]]} 592 | {"wikidata_id": "Q5507535", "values": [[1, "藤原成子", true], [1, "美福門院", false], [1, "美福門院", false]]} 593 | {"wikidata_id": "Q5533323", "values": [[1, "元気寿司", true], [1, "元気寿司株式会社", false], [1, "元気寿司", false]]} 594 | {"wikidata_id": "Q55430", "values": [[1, "張芸謀", true]]} 595 | {"wikidata_id": "Q55432", "values": [[1, "ジョン・ウー", true], [1, "吴宇森", false]]} 596 | {"wikidata_id": "Q5544750", "values": [[1, "ジョージ・スプリンガー", true], [1, "ジョージ・チェルストン・スプリンガー", false], [1, "ジョージ・チェルストン・スプリンガー3世", false]]} 597 | {"wikidata_id": "Q55521267", "values": [[1, "タケシ", true]]} 598 | {"wikidata_id": "Q55647759", "values": [[1, "ダウントン・アビー", true], [1, "ダウントン・アビー ザ・ムービー", false], [1, "ダウントン・アビー:ザ・ムービー", false]]} 599 | {"wikidata_id": "Q5591180", "values": [[1, "グレース・フルトン", true], [1, "グレース・キャロライン・フルトン", false], [1, "グレース・キャロライン・カレー", false]]} 600 | {"wikidata_id": "Q5597", "values": [[1, "ラファエロ", true], [1, "ラファエレ・サンツィオ", false], [1, "ラファエロ、1483-1520", false], [1, "サンティ・ラファエロ", false], [1, "ラファエロ・サンツィオ・ダ・ウルビーノ", false]]} 601 | {"wikidata_id": "Q5639969", "values": [[1, "石井一", true]]} 602 | {"wikidata_id": "Q5649307", "values": [[1, "飯能駅", true]]} 603 | {"wikidata_id": "Q5685", "values": [[1, "アントン・チェーホフ", true], [1, "アントン・パヴロヴィチ・チェーホフ", false], [1, "アントーン・パーヴロヴィチ・チェーホフ", false], [1, "チェーホフ", false], [1, "アントーン・パーヴロヴィチ・チェーホフ", false]]} 604 | {"wikidata_id": "Q57176", "values": [[1, "フェルディナンド・シェルナー", true], [1, "フェルディナンド・シェルナー", false]]} 605 | {"wikidata_id": "Q57244", "values": [[1, "ポール・ヒンデミット", true]]} 606 | {"wikidata_id": "Q577093", "values": [[1, "クレヨンしんちゃん アクション仮面VSヒモ神", true]]} 607 | {"wikidata_id": "Q5801919", "values": [[1, "性犯罪", true], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false], [1, "性的な犯罪", false]]} 608 | {"wikidata_id": "Q58139773", "values": [[1, "松木達哉", true], [1, "松木達哉", false]]} 609 | {"wikidata_id": "Q581450", "values": [[1, "堕天使", true]]} 610 | {"wikidata_id": "Q58326", "values": [[1, "フランス第二共和政", true], [1, "フランスの第二共和政", false], [1, "第二共和政", false]]} 611 | {"wikidata_id": "Q5878184", "values": [[1, "北国銀行", true], [1, "北国銀行株式会社", false]]} 612 | {"wikidata_id": "Q58803", "values": [[1, "太陽電池", true], [1, "光電変換セル", false]]} 613 | {"wikidata_id": "Q59136130", "values": [[1, "高木拓也", true]]} 614 | {"wikidata_id": "Q59205608", "values": [[1, "アントニー・マテウス・ドス・サントス", true], [1, "アントニー", false]]} 615 | {"wikidata_id": "Q5965720", "values": [[1, "修理", true], [1, "近藤修理", false]]} 616 | {"wikidata_id": "Q5975489", "values": [[1, "結城公也", true]]} 617 | {"wikidata_id": "Q5977565", "values": [[1, "小桜一家", true]]} 618 | {"wikidata_id": "Q60228383", "values": [[1, "オメガパフューム", true]]} 619 | {"wikidata_id": "Q602507", "values": [[1, "肉弾戦", true], [1, "近接戦闘", false]]} 620 | {"wikidata_id": "Q60452494", "values": [[1, "ターボサザエ", true]]} 621 | {"wikidata_id": "Q60528603", "values": [[1, "汚染", true]]} 622 | {"wikidata_id": "Q60627544", "values": [[1, "アマハラ", true]]} 623 | {"wikidata_id": "Q60741406", "values": [[1, "トレッドストーン", true]]} 624 | {"wikidata_id": "Q60987314", "values": [[1, "夏木ゆい", true]]} 625 | {"wikidata_id": "Q60997044", "values": [[1, "ノート", true], [1, "ノート・ドットコム", false], [1, "ケーキス", false]]} 626 | {"wikidata_id": "Q6125185", "values": [[1, "ともだちコレクション", true]]} 627 | {"wikidata_id": "Q6130295", "values": [[1, "トヨタマフィメイア", true]]} 628 | {"wikidata_id": "Q6134579", "values": [[1, "日本のグラビアアイドルのリスト", true]]} 629 | {"wikidata_id": "Q6135786", "values": [[1, "本田智子", true]]} 630 | {"wikidata_id": "Q6147845", "values": [[1, "東郷 和彦", true], [1, "東郷 和彦", false], [1, "東郷 和彦", false], [1, "東郷 和彦", false], [1, "東郷 和彦", false], [1, "東郷 和彦", false]]} 631 | {"wikidata_id": "Q6156517", "values": [[1, "日本航空電子工業", true], [1, "日本航空電子工業", false], [1, "JAE", false]]} 632 | {"wikidata_id": "Q6157781", "values": [[1, "日本郵便生命保険", true]]} 633 | {"wikidata_id": "Q61693947", "values": [[1, "レイチェル・ゼグラー", true], [1, "レイチェル・アン・ゼグラー", false]]} 634 | {"wikidata_id": "Q618637", "values": [[1, "RAH-66 コマンチ", true], [1, "RAH66", false], [1, "ボーイング-シコルスキー RAH-66 コマンチ", false], [1, "コマンチ ヘリコプター", false], [1, "ボーイング–シコルスキー RAH-66 コマンチ", false]]} 635 | {"wikidata_id": "Q61951885", "values": [[1, "ヒットマンズ・ワイフのボディガード", true], [1, "ヒットマンズ・ワイフのボディガード", false]]} 636 | {"wikidata_id": "Q619942", "values": [[1, "レイ トレーシング", true], [1, "RT", false]]} 637 | {"wikidata_id": "Q625758", "values": [[1, "チョルイン王妃", true], [1, "チョリン王妃", false]]} 638 | {"wikidata_id": "Q63142036", "values": [[1, "カフ", true]]} 639 | {"wikidata_id": "Q634011", "values": [[1, "藤井寺", true], [1, "藤井寺堂明寺", false], [1, "藤井寺", false]]} 640 | {"wikidata_id": "Q63436", "values": [[1, "中区", true]]} 641 | {"wikidata_id": "Q636653", "values": [[1, "ダナイ・グリラ", true], [1, "ダナイ・ジェケサイ・グリラ", false]]} 642 | {"wikidata_id": "Q6371143", "values": [[1, "かりゆし58", true]]} 643 | {"wikidata_id": "Q6374313", "values": [[1, "大洗鹿島線", true], [1, "鹿島臨海鉄道大洗鹿島線", false]]} 644 | {"wikidata_id": "Q6379524", "values": [[1, "河井寛次郎", true], [1, "河井寛次郎", false], [1, "河井寛次郎", false], [1, "河井寛次郎", false]]} 645 | {"wikidata_id": "Q6380669", "values": [[1, "白石加代子", true], [1, "白石加代子", false], [1, "白石加代子", false], [1, "白石加代子", false]]} 646 | {"wikidata_id": "Q6381525", "values": [[1, "大竹 一樹", true]]} 647 | {"wikidata_id": "Q64004113", "values": [[1, "風間弘樹", true]]} 648 | {"wikidata_id": "Q6433139", "values": [[1, "武幸四郎", true]]} 649 | {"wikidata_id": "Q643608", "values": [[1, "いすゞ・ベレット", true]]} 650 | {"wikidata_id": "Q6453093", "values": [[1, "京都記念", true]]} 651 | {"wikidata_id": "Q64747727", "values": [[1, "江川勇樹", true], [1, "江川勇樹", false]]} 652 | {"wikidata_id": "Q64783604", "values": [[1, "花川 与曽田", true]]} 653 | {"wikidata_id": "Q647855", "values": [[1, "ヘヴィーレイン", true], [1, "ヘヴィーレイン:オリガミキラー", false]]} 654 | {"wikidata_id": "Q6499967", "values": [[1, "農業革命", true]]} 655 | {"wikidata_id": "Q65032858", "values": [[1, "ライラ・イセ", true], [1, "レイラ・イセ", false]]} 656 | {"wikidata_id": "Q6507", "values": [[1, "フィネガンズ・ウェイク", true]]} 657 | {"wikidata_id": "Q65095763", "values": [[1, "山口航輝", true], [1, "山口航輝", false], [1, "山口航輝", false], [1, "山口航輝", false], [1, "山口航輝", false], [1, "山口航輝", false]]} 658 | {"wikidata_id": "Q652277", "values": [[1, "最高地点別の国々の一覧", true], [1, "オリサバ山", false]]} 659 | {"wikidata_id": "Q65231576", "values": [[1, "スパイ×ファミリー", true], [1, "SxF", false], [1, "スパイ×ファミリー", false], [1, "S×F", false], [1, "スパイ×ファミリー", false], [1, "スパイファミリー", false], [1, "スパイファミリー", false]]} 660 | {"wikidata_id": "Q65261718", "values": [[1, "セオボク", true], [1, "セオボク", false]]} 661 | {"wikidata_id": "Q6526437", "values": [[1, "岩瀬忠成", true]]} 662 | {"wikidata_id": "Q653319", "values": [[1, "三十三間堂", true], [1, "蓮華王院", false]]} 663 | {"wikidata_id": "Q653478", "values": [[1, "三島", true], [1, "ミシマ", false]]} 664 | {"wikidata_id": "Q6544830", "values": [[1, "ライフガード", true], [1, "ライフ-ガード", false], [1, "ライフガードたち", false]]} 665 | {"wikidata_id": "Q656586", "values": [[1, "氾濫原", true], [1, "川原", false], [1, "川原", false]]} 666 | {"wikidata_id": "Q66110", "values": [[1, "アンドレアス・グラスル", true]]} 667 | {"wikidata_id": "Q66221", "values": [[1, "コンピュータデータストレージデバイス", true], [1, "メモリ", false], [1, "コンピュータストレージデバイス", false], [1, "コンピュータストレージメディア", false], [1, "コンピュータストレージ", false], [1, "ストレージ", false], [1, "データストレージ", false]]} 668 | {"wikidata_id": "Q6631825", "values": [[1, "Netflixが配信するオリジナルプログラムのリスト", true], [1, "Netflixが配信するオリジナルプログラム", false]]} 669 | {"wikidata_id": "Q6641937", "values": [[1, "中国の民間伝承における超自然的存在のリスト", true]]} 670 | {"wikidata_id": "Q667636", "values": [[1, "性染色体", true]]} 671 | {"wikidata_id": "Q67202237", "values": [[1, "2021年のドラマテレビシリーズ", true]]} 672 | {"wikidata_id": "Q6782305", "values": [[1, "平井正文", true]]} 673 | {"wikidata_id": "Q6782364", "values": [[1, "安藤まさひろ", true]]} 674 | {"wikidata_id": "Q67964", "values": [[1, "ロベルト・バッジョ", true]]} 675 | {"wikidata_id": "Q6846796", "values": [[1, "マイク・フェッターズ", true], [1, "マイケル・リー・フェッターズ", false]]} 676 | {"wikidata_id": "Q6851060", "values": [[1, "マイルチャンピオンシップ", true]]} 677 | {"wikidata_id": "Q6880734", "values": [[1, "御嶽教", true]]} 678 | {"wikidata_id": "Q6884198", "values": [[1, "宮城野部屋", true]]} 679 | {"wikidata_id": "Q6884754", "values": [[1, "水商売", true]]} 680 | {"wikidata_id": "Q694489", "values": [[1, "ニート", true], [1, "ニート", false]]} 681 | {"wikidata_id": "Q6946434", "values": [[1, "息子たち", true]]} 682 | {"wikidata_id": "Q694752", "values": [[1, "不法監禁", true], [1, "違法拘束", false], [1, "誤った投獄", false], [1, "違法な投獄", false], [1, "自由の剥奪", false]]} 683 | {"wikidata_id": "Q696094", "values": [[1, "ネルチンスク条約", true], [1, "ニブチュ条約", false], [1, "ニェルチンスク条約", false]]} 684 | {"wikidata_id": "Q696256", "values": [[1, "日ソ中立条約", true]]} 685 | {"wikidata_id": "Q69635228", "values": [[1, "榊原ゆき", true], [1, "榊原ゆき", false]]} 686 | {"wikidata_id": "Q696528", "values": [[1, "三菱キ-67飛龍", true], [1, "四式重爆撃機", false], [1, "ペギー", false], [1, "キ-67", false], [1, "ペギー爆撃機", false], [1, "飛龍", false], [1, "飛龍", false], [1, "ペギー航空機", false], [1, "陸軍四式重爆撃機", false], [1, "P2M", false], [1, "Q2M", false]]} 687 | {"wikidata_id": "Q696550", "values": [[1, "ワシントン海軍条約", true], [1, "1922年ワシントン海軍条約", false], [1, "ワシントン条約", false], [1, "1922年ワシントン条約", false], [1, "五大国条約", false]]} 688 | {"wikidata_id": "Q696643", "values": [[1, "香芝", true], [1, "香芝", false]]} 689 | {"wikidata_id": "Q6978968", "values": [[1, "全国労働組合評議会", true], [1, "全労協", false]]} 690 | {"wikidata_id": "Q7040661", "values": [[1, "西日本工科大学", true], [1, "西日本工業大学", false]]} 691 | {"wikidata_id": "Q704664", "values": [[1, "桜井良子", true]]} 692 | {"wikidata_id": "Q704667", "values": [[1, "侍ハイスクール", true]]} 693 | {"wikidata_id": "Q7064000", "values": [[1, "ノヴァ", true], [1, "ノヴァ", false], [1, "ノヴァ株式会社", false], [1, "ノヴァグループ", false]]} 694 | {"wikidata_id": "Q712316", "values": [[1, "趙奢", true]]} 695 | {"wikidata_id": "Q713711", "values": [[1, "ウィルフリード・ザハ", true], [1, "ダゼ・ウィルフリード・アルメル・ザハ", false]]} 696 | {"wikidata_id": "Q726186", "values": [[1, "マージーサイド・ダービー", true]]} 697 | {"wikidata_id": "Q7271", "values": [[1, "漢の明帝", true], [1, "咸宗", false], [1, "劉莊", false], [1, "漢の明帝", false], [1, "明帝", false]]} 698 | {"wikidata_id": "Q728257", "values": [[1, "林 珠緒", true], [1, "林 珠緒", false]]} 699 | {"wikidata_id": "Q74047", "values": [[1, "ゴーストタウン", true], [1, "消滅した町", false], [1, "放棄された町", false], [1, "空き家や季節的な集落", false], [1, "放棄された都市", false], [1, "放棄された村", false]]} 700 | {"wikidata_id": "Q74145767", "values": [[1, "伊織いお", true]]} 701 | {"wikidata_id": "Q74187436", "values": [[1, "271系", true]]} 702 | {"wikidata_id": "Q742680", "values": [[1, "アストライア", true], [1, "アストライア", false], [1, "アストライア", false]]} 703 | {"wikidata_id": "Q743203", "values": [[1, "晩春", true], [1, "晩春", false]]} 704 | {"wikidata_id": "Q7446750", "values": [[1, "吉田清治", true], [1, "吉田英治", false], [1, "吉田東治", false], [1, "吉田東治", false]]} 705 | {"wikidata_id": "Q7446942", "values": [[1, "加藤清史郎", true]]} 706 | {"wikidata_id": "Q7451444", "values": [[1, "専修学園音楽大学", true]]} 707 | {"wikidata_id": "Q745564", "values": [[1, "戦車", true]]} 708 | {"wikidata_id": "Q750215", "values": [[1, "大量殺人", true], [1, "大量殺害", false], [1, "一連の殺人", false], [1, "大量殺人", false], [1, "連続殺人", false], [1, "大量殺害", false]]} 709 | {"wikidata_id": "Q7502323", "values": [[1, "碁鐘盛", true]]} 710 | {"wikidata_id": "Q7516", "values": [[1, "ジョニー・リー・ミラー", true], [1, "ジョナサン \"ジョニー\" リー・ミラー", false], [1, "ジョナサン・リー・ミラー", false]]} 711 | {"wikidata_id": "Q752669", "values": [[1, "国立航空宇宙博物館", true], [1, "航空宇宙博物館", false], [1, "国立航空博物館", false], [1, "航空宇宙博物館", false], [1, "スミソニアン国立航空宇宙博物館", false], [1, "NASM", false], [1, "国立航空&宇宙博物館", false], [1, "スミソニアン航空&宇宙博物館", false]]} 712 | {"wikidata_id": "Q753110", "values": [[1, "作詞家", true], [1, "歌の作詞家", false]]} 713 | {"wikidata_id": "Q76283484", "values": [[1, "ジュリア・ヨシネ", true], [1, "ユリア・ヨシネ", false]]} 714 | {"wikidata_id": "Q7645572", "values": [[1, "必殺4 恨みはらします", true]]} 715 | {"wikidata_id": "Q764843", "values": [[1, "ネイサン・イースト", true], [1, "ネイサン・ハレル・イースト", false]]} 716 | {"wikidata_id": "Q7676431", "values": [[1, "大衆演劇", true]]} 717 | {"wikidata_id": "Q7677033", "values": [[1, "高橋名人", true]]} 718 | {"wikidata_id": "Q7706876", "values": [[1, "鉄人28号:ザ・ムービー", true]]} 719 | {"wikidata_id": "Q774952", "values": [[1, "松原", true]]} 720 | {"wikidata_id": "Q7798178", "values": [[1, "スリル・ミー", true]]} 721 | {"wikidata_id": "Q7820081", "values": [[1, "江川智晃", true]]} 722 | {"wikidata_id": "Q7820337", "values": [[1, "久保田智之", true]]} 723 | {"wikidata_id": "Q7825334", "values": [[1, "男はつらいよ 寅次郎の縁談", true], [1, "男はつらいよ 寅次郎紅の花", false], [1, "男はつらいよ 寅次郎48", false]]} 724 | {"wikidata_id": "Q7833535", "values": [[1, "九州横断特急", true]]} 725 | {"wikidata_id": "Q79017400", "values": [[1, "森圭人", true], [1, "森圭人", false]]} 726 | {"wikidata_id": "Q794827", "values": [[1, "クリーンルーム", true], [1, "クリーン ルーム", false], [1, "クリーンルーム技術", false]]} 727 | {"wikidata_id": "Q79697", "values": [[1, "4G", true], [1, "第4世代", false]]} 728 | {"wikidata_id": "Q801437", "values": [[1, "新横浜駅", true]]} 729 | {"wikidata_id": "Q8016226", "values": [[1, "ひばりが丘駅", true]]} 730 | {"wikidata_id": "Q801690", "values": [[1, "大井町駅", true]]} 731 | {"wikidata_id": "Q803744", "values": [[1, "キーボードショートカットの表", true]]} 732 | {"wikidata_id": "Q8047875", "values": [[1, "山中幸盛", true]]} 733 | {"wikidata_id": "Q80492", "values": [[1, "ガヴリロ・プリンチップ", true]]} 734 | {"wikidata_id": "Q80576", "values": [[1, "門前仲町駅", true], [1, "門前仲町駅", false]]} 735 | {"wikidata_id": "Q80638", "values": [[1, "水力発電", true], [1, "水力電力", false]]} 736 | {"wikidata_id": "Q812", "values": [[1, "フロリダ", true], [1, "US-FL", false], [1, "ゲーター州", false], [1, "フロリダ州", false], [1, "半島州", false], [1, "フラ.", false], [1, "サンシャイン州", false], [1, "FL", false], [1, "フロリダ、アメリカ合衆国", false]]} 737 | {"wikidata_id": "Q816728", "values": [[1, "京田辺", true], [1, "田辺", false]]} 738 | {"wikidata_id": "Q81783396", "values": [[1, "中陣", true]]} 739 | {"wikidata_id": "Q81945854", "values": [[1, "早川真人", true], [1, "早川真人デビッド", false], [1, "真人", false]]} 740 | {"wikidata_id": "Q8194621", "values": [[1, "2008年のアニメテレビシリーズの初放送", true]]} 741 | {"wikidata_id": "Q8222", "values": [[1, "ハングル", true], [1, "韓国語のアルファベット", false], [1, "朝鮮語", false], [1, "ハンギュル", false], [1, "朝鮮語", false], [1, "ハングル", false]]} 742 | {"wikidata_id": "Q8236", "values": [[1, "リテラシー", true], [1, "リテラシー", false]]} 743 | {"wikidata_id": "Q823941", "values": [[1, "シナワタリガニ", true], [1, "エリオケイル・シネンシス", false]]} 744 | {"wikidata_id": "Q828043", "values": [[1, "ブイヤベース", true]]} 745 | {"wikidata_id": "Q828185", "values": [[1, "フロントクロール", true], [1, "オーストラリアンクロール", false], [1, "フォワードクロール", false], [1, "アメリカンクロール", false]]} 746 | {"wikidata_id": "Q83186", "values": [[1, "ロミオとジュリエット", true], [1, "最も優れて悲劇的なロミオとジュリエットの悲劇", false], [1, "優れた想像力に溢れたロミオとジュリエットの悲劇", false], [1, "ロミオとジュリエットの悲劇", false]]} 747 | {"wikidata_id": "Q83206926", "values": [[1, "一ノ瀬邦男", true]]} 748 | {"wikidata_id": "Q83229", "values": [[1, "イングランドのエドワード6世", true], [1, "エドワード6世、イングランドとアイルランドの王", false], [1, "エドワード6世、イングランドの王", false], [1, "エドワード6世王", false], [1, "エドワード6世", false], [1, "イングランドのエドワード6世王", false], [1, "エドワード・チューダー", false]]} 749 | {"wikidata_id": "Q832791", "values": [[1, "フォカッチャ", true], [1, "詰め物入りフォカッチャ", false]]} 750 | {"wikidata_id": "Q834462", "values": [[1, "日蓮正宗", true]]} 751 | {"wikidata_id": "Q83492", "values": [[1, "ゲイリー・オールドマン", true], [1, "ゲイリー・レオナード・オールドマン", false]]} 752 | {"wikidata_id": "Q83539511", "values": [[1, "ヴァンガード", true]]} 753 | {"wikidata_id": "Q835929", "values": [[1, "カシミール・プリンセス", true]]} 754 | {"wikidata_id": "Q836374", "values": [[1, "下條アトム", true], [1, "下條アトム", false], [1, "下條アトム", false], [1, "下條アトム", false], [1, "下條アトム", false], [1, "下條アトム", false]]} 755 | {"wikidata_id": "Q840998", "values": [[1, "出井伸之", true]]} 756 | {"wikidata_id": "Q841285", "values": [[1, "カラリパヤットゥ", true]]} 757 | {"wikidata_id": "Q842271", "values": [[1, "限界効用", true]]} 758 | {"wikidata_id": "Q843153", "values": [[1, "保谷駅", true]]} 759 | {"wikidata_id": "Q843226", "values": [[1, "片倉景綱", true]]} 760 | {"wikidata_id": "Q843355", "values": [[1, "東日本放送", true], [1, "KHB", false]]} 761 | {"wikidata_id": "Q843689", "values": [[1, "山梨放送", true]]} 762 | {"wikidata_id": "Q844640", "values": [[1, "東急田園都市線 東急田園都市線", true]]} 763 | {"wikidata_id": "Q846772", "values": [[1, "川上哲治", true]]} 764 | {"wikidata_id": "Q848444", "values": [[1, "鋼の錬金術師の登場人物リスト", true]]} 765 | {"wikidata_id": "Q849483", "values": [[1, "村上藩", true]]} 766 | {"wikidata_id": "Q850933", "values": [[1, "鳥居忠常", true]]} 767 | {"wikidata_id": "Q8515268", "values": [[1, "榊原忠次", true]]} 768 | {"wikidata_id": "Q8531313", "values": [[1, "送る言葉", true]]} 769 | {"wikidata_id": "Q85877683", "values": [[1, "探偵チャイナタウン3", true]]} 770 | {"wikidata_id": "Q859756", "values": [[1, "小豆坂の戦い", true], [1, "小豆坂の戦い(一次)", false], [1, "小豆坂の戦い(1542年)", false]]} 771 | {"wikidata_id": "Q862708", "values": [[1, "地獄の門", true]]} 772 | {"wikidata_id": "Q863747", "values": [[1, "宇陀", true]]} 773 | {"wikidata_id": "Q864148", "values": [[1, "豊後国", true]]} 774 | {"wikidata_id": "Q866733", "values": [[1, "雪国", true]]} 775 | {"wikidata_id": "Q86740553", "values": [[1, "ペイディー", true]]} 776 | {"wikidata_id": "Q868810", "values": [[1, "ハイム", true], [1, "ハイム", false]]} 777 | {"wikidata_id": "Q869004", "values": [[1, "南あわじ", true]]} 778 | {"wikidata_id": "Q87084117", "values": [[1, "赵立坚", true], [1, "立坚 赵", false]]} 779 | {"wikidata_id": "Q877806", "values": [[1, "天井投影機", true], [1, "天井投影機", false], [1, "OHP", false], [1, "天井投影機", false]]} 780 | {"wikidata_id": "Q87948081", "values": [[1, "ココミ", true]]} 781 | {"wikidata_id": "Q894172", "values": [[1, "ボルサリーノ", true]]} 782 | {"wikidata_id": "Q8972917", "values": [[1, "伊織", true]]} 783 | {"wikidata_id": "Q900258", "values": [[1, "藤原 珠子", true], [1, "藤原 明子", false]]} 784 | {"wikidata_id": "Q9049488", "values": [[1, "古郷知子", true], [1, "古郷知子", false], [1, "古郷知子", false]]} 785 | {"wikidata_id": "Q907048", "values": [[1, "和宮親子内親王", true], [1, "和宮", false], [1, "親子内親王", false], [1, "和宮親子内親王", false], [1, "和宮親子内親王", false], [1, "親子", false], [1, "清閑院", false], [1, "清閑院", false], [1, "親子内親王", false], [1, "和宮親子内親王", false], [1, "和宮", false], [1, "和宮親子", false], [1, "清閑院", false], [1, "清閑院", false], [1, "親子内親王", false], [1, "清閑院の宮", false], [1, "和宮", false], [1, "清閑院の宮", false], [1, "和宮親子内親王", false], [1, "和", false]]} 786 | {"wikidata_id": "Q907700", "values": [[1, "大阪メトロ中央線", true]]} 787 | {"wikidata_id": "Q909015", "values": [[1, "秋葉", true]]} 788 | {"wikidata_id": "Q910011", "values": [[1, "コミック レックス", true], [1, "月刊コミックレックス", false], [1, "月刊コミックレックス", false]]} 789 | {"wikidata_id": "Q910281", "values": [[1, "東本願寺", true], [1, "東本願寺", false], [1, "真宗本廟", false], [1, "真宗本廟", false]]} 790 | {"wikidata_id": "Q912221", "values": [[1, "浄土真宗", true], [1, "浄土教の真髄", false], [1, "真宗仏教", false], [1, "真宗浄土仏教", false]]} 791 | {"wikidata_id": "Q9132826", "values": [[1, "島村 優", true], [1, "島村 優", false], [1, "島村 優", false]]} 792 | {"wikidata_id": "Q9140322", "values": [[1, "後藤ゆかり", true], [1, "後藤ゆかり", false], [1, "後藤ゆかり", false]]} 793 | {"wikidata_id": "Q916", "values": [[1, "アンゴラ", true], [1, "🇦🇴", false], [1, "アンゴラ共和国", false], [1, "ンゴラ", false], [1, "ANG", false], [1, "ao", false]]} 794 | {"wikidata_id": "Q9190352", "values": [[1, "月野タイト", true]]} 795 | {"wikidata_id": "Q919510", "values": [[1, "アメリカ合衆国軍事標準", true], [1, "防衛標準", false], [1, "アメリカ合衆国の軍事標準", false], [1, "軍事標準", false], [1, "MIL-STD", false], [1, "MIL STD", false]]} 796 | {"wikidata_id": "Q922757", "values": [[1, "福田 己津央", true], [1, "福田 己津央", false]]} 797 | {"wikidata_id": "Q92526", "values": [[1, "新浪微博", true], [1, "微博", false], [1, "weibo.com", false]]} 798 | {"wikidata_id": "Q92600", "values": [[1, "アレクセイ・パジトノフ", true], [1, "アレクセイ・レオニードヴィチ・パジトノフ", false]]} 799 | {"wikidata_id": "Q931226", "values": [[1, "ポカリスエット", true]]} 800 | {"wikidata_id": "Q9323704", "values": [[1, "米澤穂信", true]]} 801 | {"wikidata_id": "Q937975", "values": [[1, "セーラームーンミュージカル", true], [1, "セラミュ", false], [1, "セーラームーン・ミュージカル", false]]} 802 | {"wikidata_id": "Q938", "values": [[1, "ストロンチウム", true], [1, "元素38", false], [1, "38Sr", false], [1, "Sr", false]]} 803 | {"wikidata_id": "Q947784", "values": [[1, "マムルーク朝", true]]} 804 | {"wikidata_id": "Q953813", "values": [[1, "メジャーリーグベースボールドラフト", true], [1, "MLBドラフト", false], [1, "初年度選手ドラフト", false], [1, "メジャーリーグベースボール初年度選手ドラフト", false], [1, "ルール4ドラフト", false]]} 805 | {"wikidata_id": "Q957989", "values": [[1, "相馬 直樹", true]]} 806 | {"wikidata_id": "Q958714", "values": [[1, "竜 地洲", true], [1, "竜地州", false], [1, "竜 地洲", false], [1, "竜 地洲", false], [1, "竜 地洲", false]]} 807 | {"wikidata_id": "Q96000630", "values": [[1, "X-ジェンダー", true], [1, "X-ジェンダー", false]]} 808 | {"wikidata_id": "Q964731", "values": [[1, "レオ・リオニ", true], [1, "レオ・リオニ", false], [1, "レオナード・リオニ", false]]} 809 | {"wikidata_id": "Q97164505", "values": [[1, "ユウリ", true]]} 810 | {"wikidata_id": "Q972329", "values": [[1, "デビッド・ワイズ", true], [1, "デイブ・ワイズ", false]]} 811 | {"wikidata_id": "Q982159", "values": [[1, "太田宏介", true]]} 812 | {"wikidata_id": "Q984063", "values": [[1, "最適化問題", true], [1, "最適化問題", false]]} 813 | {"wikidata_id": "Q987864", "values": [[1, "あいのり", true]]} 814 | {"wikidata_id": "Q988925", "values": [[1, "エレン・リプリー", true], [1, "エレン・ルイーズ・リプリー", false], [1, "リプリー中尉", false], [1, "リプリー", false]]} 815 | --------------------------------------------------------------------------------