Update README.md
Browse files
README.md
CHANGED
@@ -47,7 +47,25 @@ configs:
|
|
47 |
path: data/valid-*
|
48 |
- split: test
|
49 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
---
|
51 |
-
# Dataset Card for
|
52 |
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
path: data/valid-*
|
48 |
- split: test
|
49 |
path: data/test-*
|
50 |
+
task_categories:
|
51 |
+
- question-answering
|
52 |
+
- text2text-generation
|
53 |
+
- text-generation
|
54 |
+
tags:
|
55 |
+
- code
|
56 |
+
size_categories:
|
57 |
+
- 1K<n<10K
|
58 |
---
|
59 |
+
# Dataset Card for Code Contest Processed
|
60 |
|
61 |
+
## Dataset Summary
|
62 |
+
This dataset contains coding contest questions and their solution written in Python3.
|
63 |
+
This 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 Description
|
66 |
+
- `id` : unique string associated with a problem
|
67 |
+
- `description` : problem description
|
68 |
+
- `code` : one correct code for the problem
|
69 |
+
- `test_samples` : contains inputs and their corresponding outputs for the problem
|
70 |
+
- `source` : source of problem
|
71 |
+
- `prompt` : alpaca style generated prompt for text generation
|