Datasets:

Modalities:
Text
Languages:
English
Libraries:
Datasets
License:
asahi417 commited on
Commit
03dc503
·
1 Parent(s): 4a5609e

fix readme

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -21,6 +21,8 @@ and the test split contains predicates that is not included in the train/validat
21
  The train/validation splits are created for each configuration by the ratio of 9:1.
22
  The number of triples in each split is summarized in the table below.
23
 
 
 
24
  - train/validation split
25
 
26
  | data | number of triples (train) | number of triples (validation) | number of triples (all) | number of unique predicates (train) | number of unique predicates (validation) | number of unique predicates (all) | number of unique entities (train) | number of unique entities (validation) | number of unique entities (all) |
@@ -79,11 +81,11 @@ we choose top-`max predicate` triples based on the frequency of the subject and
79
  An example looks as follows.
80
  ```
81
  {
82
- "object": "Persian",
83
- "subject": "Tajik",
84
  "title": "Tandoor bread",
85
  "text": "Tandoor bread (Arabic: \u062e\u0628\u0632 \u062a\u0646\u0648\u0631 khubz tannoor, Armenian: \u0569\u0578\u0576\u056b\u0580 \u0570\u0561\u0581 tonir hats, Azerbaijani: T\u0259ndir \u00e7\u00f6r\u0259yi, Georgian: \u10d7\u10dd\u10dc\u10d8\u10e1 \u10de\u10e3\u10e0\u10d8 tonis puri, Kazakh: \u0442\u0430\u043d\u0434\u044b\u0440 \u043d\u0430\u043d tandyr nan, Kyrgyz: \u0442\u0430\u043d\u0434\u044b\u0440 \u043d\u0430\u043d tandyr nan, Persian: \u0646\u0627\u0646 \u062a\u0646\u0648\u0631\u06cc nan-e-tanuri, Tajik: \u043d\u043e\u043d\u0438 \u0442\u0430\u043d\u0443\u0440\u0439 noni tanuri, Turkish: Tand\u0131r ekme\u011fi, Uyghur: ) is a type of leavened bread baked in a clay oven called a tandoor, similar to naan. In Pakistan, tandoor breads are popular especially in the Khyber Pakhtunkhwa and Punjab regions, where naan breads are baked in tandoor clay ovens fired by wood or charcoal. These tandoor-prepared naans are known as tandoori naan.",
86
- "predicate": "[Artifact] is a type of [Type]"
87
  }
88
  ```
89
 
 
21
  The train/validation splits are created for each configuration by the ratio of 9:1.
22
  The number of triples in each split is summarized in the table below.
23
 
24
+ ***Note:*** To make it consistent with other datasets ([fewshot_link_prediction_](https://huggingface.co/datasets/relbert/fewshot_link_prediction) and [conceptnet](https://huggingface.co/datasets/relbert/conceptnet)), we rename predicate/subject/object as relation/head/tail.
25
+
26
  - train/validation split
27
 
28
  | data | number of triples (train) | number of triples (validation) | number of triples (all) | number of unique predicates (train) | number of unique predicates (validation) | number of unique predicates (all) | number of unique entities (train) | number of unique entities (validation) | number of unique entities (all) |
 
81
  An example looks as follows.
82
  ```
83
  {
84
+ "tail": "Persian",
85
+ "head": "Tajik",
86
  "title": "Tandoor bread",
87
  "text": "Tandoor bread (Arabic: \u062e\u0628\u0632 \u062a\u0646\u0648\u0631 khubz tannoor, Armenian: \u0569\u0578\u0576\u056b\u0580 \u0570\u0561\u0581 tonir hats, Azerbaijani: T\u0259ndir \u00e7\u00f6r\u0259yi, Georgian: \u10d7\u10dd\u10dc\u10d8\u10e1 \u10de\u10e3\u10e0\u10d8 tonis puri, Kazakh: \u0442\u0430\u043d\u0434\u044b\u0440 \u043d\u0430\u043d tandyr nan, Kyrgyz: \u0442\u0430\u043d\u0434\u044b\u0440 \u043d\u0430\u043d tandyr nan, Persian: \u0646\u0627\u0646 \u062a\u0646\u0648\u0631\u06cc nan-e-tanuri, Tajik: \u043d\u043e\u043d\u0438 \u0442\u0430\u043d\u0443\u0440\u0439 noni tanuri, Turkish: Tand\u0131r ekme\u011fi, Uyghur: ) is a type of leavened bread baked in a clay oven called a tandoor, similar to naan. In Pakistan, tandoor breads are popular especially in the Khyber Pakhtunkhwa and Punjab regions, where naan breads are baked in tandoor clay ovens fired by wood or charcoal. These tandoor-prepared naans are known as tandoori naan.",
88
+ "relation": "[Artifact] is a type of [Type]"
89
  }
90
  ```
91