Datasets:
Size:
1M<n<10M
ArXiv:
Tags:
programming-language
code
program-synthesis
automatic-code-repair
code-retrieval
code-translation
License:
sample loader
Browse files
loader.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import datasets
|
| 3 |
+
|
| 4 |
+
prog_synthesis_dataset = datasets.load_dataset("xCodeEval.py", "program_synthesis")
|
| 5 |
+
code_translation_dataset = datasets.load_dataset("xCodeEval.py", "code_translation")
|
| 6 |
+
tag_classification_dataset = datasets.load_dataset("xCodeEval.py", "tag_classification")
|
| 7 |
+
apr_dataset = datasets.load_dataset("xCodeEval.py", "apr")
|
| 8 |
+
pcode_compilation_dataset = datasets.load_dataset("xCodeEval.py", "code_compilation")
|
| 9 |
+
retrieval_code_code_dataset = datasets.load_dataset("xCodeEval.py", "retrieval_code_code")
|
| 10 |
+
retrieval_nl_code_dataset = datasets.load_dataset("xCodeEval.py", "retrieval_nl_code")
|
| 11 |
+
retrieval_corpus_dataset = datasets.load_dataset("xCodeEval.py", "retrieval_corpus")
|
| 12 |
+
|
| 13 |
+
|