--- language: - en license: cc-by-sa-4.0 tags: - python - stackoverflow - question-answering - instruct size_categories: - 1K 10 - Must have an **accepted answer** - **Content**: Pairs of instructions (Question) and outputs (Accepted Answer). ## Dataset Structure The dataset consists of the following fields: - `question_id`: The unique identifier for the question on StackOverflow. - `score`: The vote score of the question. - `tags`: A list of tags associated with the question. - `creation_date`: The timestamp of when the question was asked. - `instruction`: The full question title and body, cleaned of HTML. - `output`: The full body of the accepted answer, cleaned of HTML. ## Sample Entry ```json { "question_id": 12345, "score": 50, "tags": ["python", "list-comprehension"], "instruction": "How do I create a list... \n\n I have a loop that...", "output": "You can use a list comprehension:\n\n [x for x in iterable]" } ``` ## Usage ```python from datasets import load_dataset dataset = load_dataset("meeAtif/stackoverflow-python-qa") print(dataset['train'][0]) ``` ## Author [![GitHub](https://img.shields.io/badge/GitHub-@meeAtif-181717?logo=github&logoColor=white)](https://github.com/meeAtif) [![LinkedIn](https://img.shields.io/badge/LinkedIn-@meAtif-0077B5?logo=linkedin&logoColor=white)](https://linkedin.com/in/meAtif) [![Email](https://img.shields.io/badge/Email-iatif@proton.me-D14836?logo=gmail&logoColor=white)](mailto:iatif@proton.me) --- *Created by [Atif](https://github.com/meeAtif)*