Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -40,3 +40,19 @@ configs:
|
|
40 |
- split: train
|
41 |
path: data/train-*
|
42 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
- split: train
|
41 |
path: data/train-*
|
42 |
---
|
43 |
+
# Description
|
44 |
+
- This dataset contains the question-answer pairs extracted from Stackoverflow using Stack Exchange API v2.3 and used following endpoints,
|
45 |
+
- [/answers/{ids} GET](https://api.stackexchange.com/docs/questions)
|
46 |
+
- [/questions GET](https://api.stackexchange.com/docs/answers-by-ids)
|
47 |
+
### 1. Dataset description,
|
48 |
+
- Contains only `python` tagged question-answer pairs.
|
49 |
+
- Each question has a vote greater tan or equal to 1.
|
50 |
+
- Only contains the questions that have accepted answers and the corresponding accepted answers.
|
51 |
+
### 2. Column description,
|
52 |
+
- `question_id` : id came from Stackoverflow.
|
53 |
+
- `creation_date` : the date when the question was created.
|
54 |
+
- `link` : link to the Stackoverflow page corresponding to that question-answer pair.
|
55 |
+
- `question` : question text
|
56 |
+
- `accepted_answer` : accepted answer text
|
57 |
+
- `question_vote` : score/vote given for the `question` by the Stackoverflow community.
|
58 |
+
- `answer_vote` : score/vote given for the `accepted_answer` by the Stackoverflow community.
|