lizn-zn commited on
Commit
66658a2
·
verified ·
1 Parent(s): 2b84355

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -40
README.md CHANGED
@@ -1,40 +1,16 @@
1
- ---
2
- license: mit
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: tiny
7
- path: data/tiny-*
8
- - split: normal
9
- path: data/normal-*
10
- - split: full
11
- path: data/full-*
12
- dataset_info:
13
- features:
14
- - name: submission_id
15
- dtype: string
16
- - name: problem_id
17
- dtype: string
18
- - name: status
19
- dtype: string
20
- - name: code
21
- dtype: string
22
- - name: input
23
- dtype: string
24
- - name: output
25
- dtype: string
26
- - name: problem_description
27
- dtype: string
28
- splits:
29
- - name: tiny
30
- num_bytes: 839653
31
- num_examples: 246
32
- - name: normal
33
- num_bytes: 11325715
34
- num_examples: 2971
35
- - name: full
36
- num_bytes: 8020088660
37
- num_examples: 2908749
38
- download_size: 522919182
39
- dataset_size: 8032254028
40
- ---
 
1
+ This is a programming problem-solving dataset extracted from CodeNet, containing three different scale versions of the dataset.
2
+
3
+ This dataset contains programming problems and their solutions extracted from the CodeNet platform. Each sample includes:
4
+ - `submission_id`: Submission ID
5
+ - `problem_id`: Problem ID
6
+ - `status`: Submission status (e.g., "Accepted")
7
+ - `code`: Solution code
8
+ - `input`: Test input
9
+ - `output`: Expected output
10
+ - `problem_description`: Problem description
11
+
12
+ Dataset Versions
13
+ - 'tiny': A small subset with deduplicated submissions
14
+ - 'normal': A subset with deduplicated submissions
15
+ - 'full': Complete dataset without deduplication
16
+