CoolFace
Datasetpublic

youngmon/atlassian-qna

πŸ“„ Question and Answer for Atlassian Products Dataset Sources Atlassian Community 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… See the full description on the dataset page: https://huggingface.co/datasets/youngmon/atlassian-qna.

sourceHugging Facemitupdated 2y agoView on Hugging Face
2likes15downloads
Dataset Card

πŸ“„ Question and Answer for Atlassian Products

Dataset Sources
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