Datasets:
init commit
Browse files- .gitattributes +1 -0
- link_synonyms-2018-thresh_10.csv +3 -0
- link_synonyms-2018-thresh_20.csv +3 -0
- link_synonyms-2018-thresh_5.csv +3 -0
- link_synonyms-2018.csv +3 -0
- readme.md +15 -0
.gitattributes
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
5 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
|
|
6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
|
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
5 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
7 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
8 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
9 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
link_synonyms-2018-thresh_10.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:808305fb69718067db137e3d0e7a025df5d35331adc6bbf0cf5f9d03736eb08d
|
3 |
+
size 180573935
|
link_synonyms-2018-thresh_20.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b71c935e49739b6d179d24eb4b36eb124e61e1de24116d5f350e2e4f4e253d14
|
3 |
+
size 130716497
|
link_synonyms-2018-thresh_5.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb27a01a52fdd6b0dc1934fc7a9f4783c597578cf789a2c74a36b6d22b25223f
|
3 |
+
size 236139815
|
link_synonyms-2018.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d1557f1e0d4bcf869a08a95b8f972b276182354c226eac9cfafe04749a65c30
|
3 |
+
size 1727257733
|
readme.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Wiki Entity Similarity
|
2 |
+
|
3 |
+
This dataset is generated by aggregating the link text that refers to various articles in context. For instance, if wiki article A refers to article B as C, then C is added to the list of aliases for article B, and the pair (B, C) is included in the dataset.
|
4 |
+
|
5 |
+
Following (DPR https://arxiv.org/pdf/2004.04906.pdf), we use the English Wikipedia dump from Dec. 20, 2018 as the source documents for link collection.
|
6 |
+
|
7 |
+
The dataset includes three quality levels, distinguished by the minimum number of inbound links required to include an article in the dataset. This filtering is motivated by the heuristic "better articles have more citations."
|
8 |
+
|
9 |
+
| Min. Inbound Links | Number of Articles | Number of Distinct Links |
|
10 |
+
|------------|--------------------|--------------------------|
|
11 |
+
| 5 | 1,080,071 | 5,787,066 |
|
12 |
+
| 10 | 605,774 | 4,407,398 |
|
13 |
+
| 20 | 324,949 | 3,195,540 |
|
14 |
+
|
15 |
+
Generation scripts can be found [in the GitHub repo](https://github.com/Exr0nProjects/wiki-entity-similarity).
|