iamtarun commited on
Commit
6e1d277
1 Parent(s): 252bf2a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -2
README.md CHANGED
@@ -47,7 +47,25 @@ configs:
47
  path: data/valid-*
48
  - split: test
49
  path: data/test-*
 
 
 
 
 
 
 
 
50
  ---
51
- # Dataset Card for "code_contest_python3_alpaca"
52
 
53
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
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