Datasets:
sadrasabouri
commited on
update : citation information added.
Browse files
README.md
CHANGED
@@ -56,6 +56,9 @@ This dataset contains nearly 50,000 indices of questions and answers. The datase
|
|
56 |
|
57 |
The main idea for this dataset comes from [Fluent Response Generation for Conversational Question Answering](https://aclanthology.org/2020.acl-main.19.pdf) where they used a "parser + syntactic rules" module to make different fluent answers from a pair of question and a short answer using a parser and some syntactic rules. In this project, we used [stanza](https://stanfordnlp.github.io/stanza/) as our parser to parse the question and generate a response according to it using the short (sentences without verbs - up to ~4 words) answers. One can continue this project by generating different permutations of the sentence's parts (and thus providing more than one sentence for an answer) or training a seq2seq model which does what we do with our rule-based system (by defining a new text-to-text task).
|
58 |
|
|
|
|
|
|
|
59 |
### Supported Tasks and Leaderboards
|
60 |
|
61 |
This dataset can be used for the question-answering task, especially when you are going to generate fluent responses. You can train a seq2seq model with this dataset to generate fluent responses - as done by [Fluent Response Generation for Conversational Question Answering](https://aclanthology.org/2020.acl-main.19.pdf).
|
@@ -125,7 +128,15 @@ MIT
|
|
125 |
|
126 |
### Citation Information
|
127 |
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
### Contributions
|
131 |
|
|
|
56 |
|
57 |
The main idea for this dataset comes from [Fluent Response Generation for Conversational Question Answering](https://aclanthology.org/2020.acl-main.19.pdf) where they used a "parser + syntactic rules" module to make different fluent answers from a pair of question and a short answer using a parser and some syntactic rules. In this project, we used [stanza](https://stanfordnlp.github.io/stanza/) as our parser to parse the question and generate a response according to it using the short (sentences without verbs - up to ~4 words) answers. One can continue this project by generating different permutations of the sentence's parts (and thus providing more than one sentence for an answer) or training a seq2seq model which does what we do with our rule-based system (by defining a new text-to-text task).
|
58 |
|
59 |
+
For more information check the technical preprint here:
|
60 |
+
[SynTran-fa: Generating Comprehensive Answers for Farsi QA Pairs via Syntactic Transformation](https://www.preprints.org/manuscript/202410.1684/v1)
|
61 |
+
|
62 |
### Supported Tasks and Leaderboards
|
63 |
|
64 |
This dataset can be used for the question-answering task, especially when you are going to generate fluent responses. You can train a seq2seq model with this dataset to generate fluent responses - as done by [Fluent Response Generation for Conversational Question Answering](https://aclanthology.org/2020.acl-main.19.pdf).
|
|
|
128 |
|
129 |
### Citation Information
|
130 |
|
131 |
+
```bibtex
|
132 |
+
@article{farsi2024syntran,
|
133 |
+
title={SynTran-fa: Generating Comprehensive Answers for Farsi QA Pairs via Syntactic Transformation},
|
134 |
+
author={Farsi, Farhan and Sabouri, Sadra and Kashfipour, Kian and Gooran, Soroush and Sameti, Hossein and Asgari, Ehsaneddin},
|
135 |
+
year={2024},
|
136 |
+
doi="10.20944/preprints202410.1684.v1",
|
137 |
+
publisher={Preprints}
|
138 |
+
}
|
139 |
+
```
|
140 |
|
141 |
### Contributions
|
142 |
|