Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
mbkim commited on
Commit
d80d6ad
·
verified ·
1 Parent(s): a42d9b8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -3
README.md CHANGED
@@ -1,3 +1,38 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 10K<n<100K
9
+ ---
10
+
11
+ **Dataset Card for AdvisorQA**
12
+
13
+ As the integration of large language models into daily life is on the rise, there is still a lack of dataset for \textit{advising on subjective and personal dilemmas}. To address this gap, we introduce AdvisorQA, which aims to improve LLMs' capability to offer advice for deeply subjective concerns, utilizing the LifeProTips Reddit forum. This forum features a dynamic interaction where users post advice-seeking questions, receiving an average of 8.9 advice per query, with 164.2 upvotes from hundreds of users, embodying a \textit{collective intelligence}. Therefore, we've completed a dataset encompassing daily life questions, diverse corresponding responses, and majority vote ranking, which we use to train a helpfulness metric. In baseline experiments, models aligned with AdvisorQA dataset demonstrated improved helpfulness through our automatic metric, as well as GPT-4 and human evaluations.
14
+ Additionally, we expanded the independent evaluation axis to include harmlessness. AdvisorQA marks a significant leap in enhancing QA systems to provide subjective, helpful, and harmless advice, showcasing LLMs' improved understanding of human subjectivity.
15
+
16
+ **Structure of Instances in AdvisorQA Dataset**
17
+ ```
18
+ prefix: Advice-seeking Question
19
+ suffix: **List** of Answer Advice for each Question (prefix also is a form of the list but duplicated for efficient coding)
20
+ reward: Upvotes score of each advice in the list(=answer=response)
21
+ label: 'safe' means those QAs are safe. 'unsafe' means those QAs are not safe. (These labels are automated labelled from LPT/ULPT forums.)
22
+ ```
23
+ ### Dataset Sources
24
+
25
+ - **Paper:** [arxiv](https://arxiv.org/abs/2311.09585v2)
26
+ - **Code:** [code](https://github.com/minbeomkim/AdvisorQA)
27
+
28
+ **BibTeX:**
29
+ ```
30
+ @article{kim2024advisorqa,
31
+ title={AdvisorQA: Towards Helpful and Harmless Advice-seeking Question Answering with Collective Intelligence},
32
+ author={Kim, Minbeom and Lee, Hwanhee and Park, Joonsuk and Lee, Hwaran and Jung, Kyomin},
33
+ journal={arXiv preprint arXiv:2404.11826},
34
+ year={2024}
35
+ }
36
+ ```
37
+
38
+