Lurunchik commited on
Commit
a4b1e67
1 Parent(s): cd8df14

fix dataset parts name

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -85,7 +85,9 @@ An example instance from the WikiHowQA dataset:
85
  <a name="dataset-information"></a>
86
  ### Dataset Information
87
 
88
- The main part of the dataset contains only links to web archive snapshots of HTML pages. The part containing parsed HTML content is accessible by request and signing a Data Transfer Agreement with RMIT University.
 
 
89
 
90
  Each dataset instance includes a question, a set of related documents, and a human-authored answer. The questions are non-factoid, requiring comprehensive, multi-sentence answers. The related documents provide the necessary information to generate an answer.
91
 
@@ -104,7 +106,8 @@ The WikiHowQA dataset was curated by researchers at RMIT University.
104
 
105
  <a name="license"></a>
106
  ### Licensing Information
107
- The main dataset part is distributed under the Creative Commons Attribution (CC BY) license. The part containing parsed HTML content is accessible by request and signing a Data Transfer Agreement with RMIT University, which allows using the dataset freely for research purposes. The form to download and sign is available on the dataset website by the link [].
 
108
 
109
  <a name="citation"></a>
110
  ### Citation Information
@@ -137,7 +140,7 @@ The dataset only contains 'how-to' questions and their answers. Therefore, it ma
137
  <a name="data-loading"></a>
138
  ## Data Loading
139
 
140
- There are two primary ways to load the main dataset part:
141
 
142
  1. Directly from the file (if you have the .jsonl file locally, you can load the dataset using the following Python code):
143
 
 
85
  <a name="dataset-information"></a>
86
  ### Dataset Information
87
 
88
+ The WikiHowQA dataset is divided into two parts: the QA part and the Document Content part.
89
+ The QA part of the dataset contains questions, answers, and only links to web archive snapshots of related HTML pages and can be downloaded here.
90
+ The Document Content part contains parsed HTML content and is accessible by request and signing a Data Transfer Agreement with RMIT University.
91
 
92
  Each dataset instance includes a question, a set of related documents, and a human-authored answer. The questions are non-factoid, requiring comprehensive, multi-sentence answers. The related documents provide the necessary information to generate an answer.
93
 
 
106
 
107
  <a name="license"></a>
108
  ### Licensing Information
109
+ The QA dataset part is distributed under the Creative Commons Attribution (CC BY) license.
110
+ The Dataset Content part containing parsed HTML content is accessible by request and signing a Data Transfer Agreement with RMIT University, which allows using the dataset freely for research purposes. The form to download and sign is available on the dataset website by the link [].
111
 
112
  <a name="citation"></a>
113
  ### Citation Information
 
140
  <a name="data-loading"></a>
141
  ## Data Loading
142
 
143
+ There are two primary ways to load the QA dataset part:
144
 
145
  1. Directly from the file (if you have the .jsonl file locally, you can load the dataset using the following Python code):
146