wttdotm commited on
Commit
088a8b8
1 Parent(s): bc556a8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - Reddit
4
+ - OpenAI
5
+ - GPT-3
6
+ - Davinci-002
7
+ - PRAW
8
+ - PMAW
9
+ size_categories:
10
+ - 10K<n<100K
11
+ ---
12
+ # Are You The Asshole Training Data
13
+ These are the datasets used for a project Alex Petros and I made called [AreYouTheAsshole.com](https://www.areyoutheasshole.com). The site is intended to give users a fun and interactive way to experience the effect of bias in AI due to skewed data. We achieved this by fine-tuning three GPT-3 Davinci-002 models on the prompt/completion pairs you see here.
14
+
15
+ Each prompt/completion pair constitutes a post body (the prompt) and a comment (the completion). Just as there may be multiple comments to a single post, there may be multiple completions for a single prompt.
16
+
17
+ The dataset was filtered down from >100,000 post/comment pairs to only those whose comments started with a clear acronym judgement. So, comments like "Well I think YTA because..." were filtered out, whereas comments like "YTA and it's not even close..." were kept.
18
+
19
+ After filtering for clear judgement, we had our neutral dataset, the one you can find in "Neutral_Dataset.jsonl". In order to create intentionally biased data, we then split that dataset into two subsets based on whether a given post/comment pair's comment judged the poster as The Asshole or Not The Asshole. Some edge cases were also filtered out.
20
+
21
+ The dataset contains three sets:
22
+ - Neutral_Dataset.jsonl (contains all clear judgements, YTA, NTA, etc.)
23
+ - YTA_Dataset.jsonl (only contains judgements of YTA or similar)
24
+ - NTA_Dataset.jsonl (only contains judgements of NTA or similar)
25
+
26
+ ### Data Collection:
27
+ This data was collected from Reddit's r/AmITheAsshole subreddit using PMAW/PRAW and the Reddit API