Datasets:
Commit
·
ee84ce8
1
Parent(s):
855893f
Update README.md
Browse files
README.md
CHANGED
|
@@ -55,7 +55,7 @@ BC-Transcoder supports:
|
|
| 55 |
>>> load_dataset("gabeorlanski/bc-transcoder")
|
| 56 |
DatasetDict({
|
| 57 |
test: Dataset({
|
| 58 |
-
features: ['qid', 'title', 'language', 'signature', 'arguments', 'entry_fn_name', 'entry_cls_name', 'test_code', 'source_py', 'source_cpp'],
|
| 59 |
num_rows: 8384
|
| 60 |
})
|
| 61 |
})
|
|
@@ -70,9 +70,11 @@ DatasetDict({
|
|
| 70 |
- `arguments`: The arguments of the problem.
|
| 71 |
- `entry_fn_name`: The function's name to use an entry point.
|
| 72 |
- `entry_cls_name`: The class name to use an entry point.
|
| 73 |
-
- `test_code`: The raw testing script used in the language. If you want to use this, replace `PLACEHOLDER_FN_NAME` (and `PLACEHOLDER_CLS_NAME` if needed) with the corresponding entry points. Next, replace `PLACEHOLDER_CODE_BODY` with the postprocessed prediction.
|
| 74 |
- `source_py`: The source solution in Python.
|
| 75 |
- `source_cpp`: The source in C++.
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
## Dataset Creation
|
| 78 |
See section 2 of the [BabelCode Paper](https://arxiv.org/abs/2302.01973) to learn more about how the datasets are translated.
|
|
|
|
| 55 |
>>> load_dataset("gabeorlanski/bc-transcoder")
|
| 56 |
DatasetDict({
|
| 57 |
test: Dataset({
|
| 58 |
+
features: ['qid', 'title', 'language', 'signature', 'arguments', 'entry_fn_name', 'entry_cls_name', 'test_code', 'source_py', 'source_cpp', 'test_list', 'test_case_ids'],
|
| 59 |
num_rows: 8384
|
| 60 |
})
|
| 61 |
})
|
|
|
|
| 70 |
- `arguments`: The arguments of the problem.
|
| 71 |
- `entry_fn_name`: The function's name to use an entry point.
|
| 72 |
- `entry_cls_name`: The class name to use an entry point.
|
|
|
|
| 73 |
- `source_py`: The source solution in Python.
|
| 74 |
- `source_cpp`: The source in C++.
|
| 75 |
+
- `test_code`: The raw testing script used in the language. If you want to use this, replace `PLACEHOLDER_FN_NAME` (and `PLACEHOLDER_CLS_NAME` if needed) with the corresponding entry points. Next, replace `PLACEHOLDER_CODE_BODY` with the postprocessed prediction.
|
| 76 |
+
- `test_list`: The raw json line of the list of tests for the problem. To load them, use `json.loads`
|
| 77 |
+
- `test_case_ids`: The list of test case ids for the problem. These are used to determine if a prediction passes or not.
|
| 78 |
|
| 79 |
## Dataset Creation
|
| 80 |
See section 2 of the [BabelCode Paper](https://arxiv.org/abs/2302.01973) to learn more about how the datasets are translated.
|