theblackcat102 commited on
Commit
178b019
1 Parent(s): a2147b1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -31,6 +31,31 @@ there's no official nascar poem
31
 
32
  The user rating, alexa score (probably the times called by alexa) available as well as different answers provided by different users. These attributes make it possible to train a human preference model (Reward model in RLHF) by ranking answer with higher score better than lower score counterpart.
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  # Dataset stats
35
 
36
  The split is same as [alexa-qa](https://huggingface.co/datasets/theblackcat102/alexa-qa) but only questions with more than 1 answers. The total dataset size is 70,483
 
31
 
32
  The user rating, alexa score (probably the times called by alexa) available as well as different answers provided by different users. These attributes make it possible to train a human preference model (Reward model in RLHF) by ranking answer with higher score better than lower score counterpart.
33
 
34
+ Each question-answers are formatted as below:
35
+
36
+ The answers are in list of text-score pairs. If you want to train a reward model, you will have to handle the tie answers yourself.
37
+
38
+ ```
39
+ {
40
+ "question": "what did don cherry say to get him fired",
41
+ "answers": [
42
+ [
43
+ "Cherry, 85, was fired by Sportsnet after saying Nov. ... He went on Fox News to say he believed he was fired because he used the words \"you people\" instead of \"everybody.\" Hall of Famer Bobby Orr, who was coached by Cherry, was among those who supported him, calling the firing \"disgraceful.\"",
44
+ 7.0
45
+ ],
46
+ [
47
+ "Don Cherry, Canada's most polarizing, flamboyant and opinionated hockey commentator, was fired Monday for calling immigrants \"you people\" in a television rant in which he said new immigrants are not honoring the country's fallen soldiers.",
48
+ 0.0
49
+ ],
50
+ [
51
+ "Don Cherry, the flamboyant hockey commentator, was fired from his employment for an anti-immigrant rant. ",
52
+ 0.0
53
+ ]
54
+ ],
55
+ "topics": "film and tv"
56
+ }
57
+ ```
58
+
59
  # Dataset stats
60
 
61
  The split is same as [alexa-qa](https://huggingface.co/datasets/theblackcat102/alexa-qa) but only questions with more than 1 answers. The total dataset size is 70,483