Datasets:
File size: 1,864 Bytes
ffeed17 ab08bb9 ffeed17 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
---
license: mit
task_categories:
- question-answering
language:
- en
- ko
- zh
- ja
- es
- ru
pretty_name: Question and Answer for Atlassian Products
size_categories:
- 100K<n<1M
---
### 📄 Question and Answer for Atlassian Products
#### Dataset Sources
- [Atlassian Community](https://community.atlassian.com/)
#### Data Description
The dataset primarily includes **questions**, **answers**, **tags**, and **URLs**.
- **Questions** contain the author, title, and content of the post.
- **Answers** include usage instructions, solutions, and other information provided by engineers and users.
- **Tags** represent the categories or topics of the post.
- **URLs** provide links to the original documents.
#### Dataset Structure
- `question`: The main question posted by the user, including the author, title, and content of the post.
- `author`: The name of the person who asked the question.
- `title`: The title of the question.
- `body`: The content or body of the question.
- `answers`: A list of answers provided by other users or engineers, with potential follow-up comments.
- `author`: The name of the person who answered.
- `body`: The body of the answer.
- `comments`: A list of comments on the answer.
- `author`: The name of the person who commented.
- `body`: The content of the comment.
- `tags`: A list of tags associated with the post.
- `url`: The URL link to the original document or post.
```
{
"question" : {
"author",
"title",
"body"
},
"answers" : [
{
"author",
"body",
"comments" : [
{
"author",
"body"
}
...
]
}
...
],
"tags" : [ tag ... ],
"url" : string
}
```
#### How to Use
```python
from datasets import load_dataset
dataset = load_dataset("youngmon/atlassian-qna")
```
#### License
- MIT |