datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
StackOverflow-QA-C-Language-40kThis is a collection of ~40k QA's in C Language from StackOverflow. The data has been initially cleaned, and each response is with Accepted Answer.
All data is <1000 in length.
The questions and answers were organized into a one-line format. A sample format is shown below:
{
"question": "```\nFILE* file = fopen(some file)\n\npcap_t* pd = pcap_fopen_offline(file)\n\npcap_close(pd)\n\nfclose(file)\n```\n\nThis code occurs double free error.\n\nCould you explain about this happening?\n\nMy… See the full description on the dataset page: https://huggingface.co/datasets/Mxode/StackOverflow-QA-C-Language-40k.StackOverflow-QA-C-Language-5kPS: More data (40k) can be found here Mxode/StackOverflow-QA-C-Language-40k.
This is a collection of ~5000 QA's in C Language from StackOverflow. The data has been initially cleaned, and each response is with Accepted Answer.
All data is <500 in length.
The questions and answers were organized into a one-line format. A sample format is shown below:
{
"question": "```\nFILE* file = fopen(some file)\n\npcap_t* pd = pcap_fopen_offline(file)\n\npcap_close(pd)\n\nfclose(file)\n```\n\nThis… See the full description on the dataset page: https://huggingface.co/datasets/Mxode/StackOverflow-QA-C-Language-5k.stackoverflow-qa-dataset
StackOverflow Q&A Dataset
This dataset contains question-answer pairs extracted from StackOverflow via CommonCrawl.
Dataset Structure
Each example contains:
instruction: The question title
input: Additional question context (optional)
response: The highest-voted answer
metadata: Source URL, answer score, total answers
Usage
from datasets import load_dataset
dataset = load_dataset("json", data_files="stackoverflow_training_dataset.jsonl")
Generated using… See the full description on the dataset page: https://huggingface.co/datasets/varsunk/stackoverflow-qa-dataset.
