CoolFace
Datasetpublic

iamtarun/code_contest_python3_alpaca

Dataset Card for Code Contest Processed Dataset Summary This dataset contains coding contest questions and their solution written in Python3. This dataset is created by processing code_contest dataset from Deepmind. It is a competitive programming dataset for machine-learning. Read more about dataset at original source. Columns Description id : unique string associated with a problem description : problem description code : one correct code for the… See the full description on the dataset page: https://huggingface.co/datasets/iamtarun/code_contest_python3_alpaca.

sourceHugging Faceupdated 3y agoView on Hugging Face
8likes261downloads
README.md71 linesDownload Raw Back to root
1---2dataset_info:3  features:4  - name: id5    dtype: string6  - name: description7    dtype: string8  - name: code9    dtype: string10  - name: test_samples11    sequence:12    - name: input13      dtype: string14    - name: output15      dtype: string16  - name: source17    dtype:18      class_label:19        names:20          '0': UNKNOWN_SOURCE21          '1': CODECHEF22          '2': CODEFORCES23          '3': HACKEREARTH24          '4': CODEJAM25          '5': ATCODER26          '6': AIZU27  - name: prompt28    dtype: string29  splits:30  - name: train31    num_bytes: 62456453832    num_examples: 813933  - name: valid34    num_bytes: 3234802235    num_examples: 9536  - name: test37    num_bytes: 2076478638    num_examples: 12239  download_size: 19231989440  dataset_size: 67767734641configs:42- config_name: default43  data_files:44  - split: train45    path: data/train-*46  - split: valid47    path: data/valid-*48  - split: test49    path: data/test-*50task_categories:51- question-answering52- text2text-generation53- text-generation54tags:55- code56size_categories:57- 1K<n<10K58---59# Dataset Card for Code Contest Processed60 61## Dataset Summary62This dataset contains coding contest questions and their solution written in Python3.63This dataset is created by processing [code_contest dataset from Deepmind](https://huggingface.co/datasets/deepmind/code_contests). It is a competitive programming dataset for machine-learning. Read more about dataset at [original source](https://huggingface.co/datasets/deepmind/code_contests).64 65## Columns Description66- `id` : unique string associated with a problem67- `description` : problem description68- `code` : one correct code for the problem69- `test_samples` : contains inputs and their corresponding outputs for the problem70- `source` : source of problem71- `prompt` : alpaca style generated prompt for text generation