Update README.md
Browse files
README.md
CHANGED
@@ -52,33 +52,18 @@ The data was gatherd from two subreddits: [r/dating_advice](https://www.reddit.c
|
|
52 |
|
53 |
### Supported Tasks and Leaderboards
|
54 |
|
55 |
-
- `
|
|
|
56 |
|
57 |
### Languages
|
58 |
|
59 |
-
The text in the dataset is in English
|
60 |
|
61 |
## Dataset Structure
|
62 |
|
63 |
### Data Instances
|
64 |
|
65 |
-
|
66 |
-
|
67 |
-
An example from the ELI5 test set looks as follows:
|
68 |
-
```
|
69 |
-
{'q_id': '8houtx',
|
70 |
-
'title': 'Why does water heated to room temperature feel colder than the air around it?',
|
71 |
-
'selftext': '',
|
72 |
-
'document': '',
|
73 |
-
'subreddit': 'explainlikeimfive',
|
74 |
-
'answers': {'a_id': ['dylcnfk', 'dylcj49'],
|
75 |
-
'text': ["Water transfers heat more efficiently than air. When something feels cold it's because heat is being transferred from your skin to whatever you're touching. Since water absorbs the heat more readily than air, it feels colder.",
|
76 |
-
"Air isn't as good at transferring heat compared to something like water or steel (sit on a room temperature steel bench vs. a room temperature wooden bench, and the steel one will feel more cold).\n\nWhen you feel cold, what you're feeling is heat being transferred out of you. If there is no breeze, you feel a certain way. If there's a breeze, you will get colder faster (because the moving air is pulling the heat away from you), and if you get into water, its quite good at pulling heat from you. Get out of the water and have a breeze blow on you while you're wet, all of the water starts evaporating, pulling even more heat from you."],
|
77 |
-
'score': [5, 2]},
|
78 |
-
'title_urls': {'url': []},
|
79 |
-
'selftext_urls': {'url': []},
|
80 |
-
'answers_urls': {'url': []}}
|
81 |
-
```
|
82 |
|
83 |
### Data Fields
|
84 |
|
|
|
52 |
|
53 |
### Supported Tasks and Leaderboards
|
54 |
|
55 |
+
- `text-classification`: This dataset can be utilized to train a model for text classification. The model should categorize the comments into one of 6 labels, considering the post as the broader context.
|
56 |
+
- `Natural Language Inference`: Given a post and its two comments, the model needs to decide which comment is more helpful to the post writer. Thus, the model must infer the subtle semantics of both comments and their related post.
|
57 |
|
58 |
### Languages
|
59 |
|
60 |
+
The text in the dataset is in English
|
61 |
|
62 |
## Dataset Structure
|
63 |
|
64 |
### Data Instances
|
65 |
|
66 |
+
Each data point consists of a post, two comments, two labels for the comments, and a third label indicating which comment is more helpful to the post writer.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
### Data Fields
|
69 |
|