Datasets:
Commit
·
804b09a
1
Parent(s):
92f2381
Update README.md
Browse files
README.md
CHANGED
@@ -79,6 +79,9 @@ DatasetDict({
|
|
79 |
- `test_case_ids`: The list of test case ids for the problem. These are used to determine if a prediction passes or not.
|
80 |
- `entry_fn_name`: The function's name to use an entry point.
|
81 |
- `entry_cls_name`: The class name to use an entry point.
|
|
|
|
|
|
|
82 |
|
83 |
**NOTE:** If you want to use a different function name (or class name for languages that require class names) for the prediction, you must update the `entry_fn_name` and `entry_cls_name` accordingly. For example, if you have the original question with `entry_fn_name` of `add`, but want to change it to `f`, you must update `ds["question_info"]["entry_fn_name"]` to `f`:
|
84 |
```python
|
|
|
79 |
- `test_case_ids`: The list of test case ids for the problem. These are used to determine if a prediction passes or not.
|
80 |
- `entry_fn_name`: The function's name to use an entry point.
|
81 |
- `entry_cls_name`: The class name to use an entry point.
|
82 |
+
- `commands`: The commands used to execute the prediction. Includes a `__FILENAME__` hole that is replaced with the filename.
|
83 |
+
- `timeouts`: The default timeouts for each command.
|
84 |
+
- `extension`: The extension for the prediction file.
|
85 |
|
86 |
**NOTE:** If you want to use a different function name (or class name for languages that require class names) for the prediction, you must update the `entry_fn_name` and `entry_cls_name` accordingly. For example, if you have the original question with `entry_fn_name` of `add`, but want to change it to `f`, you must update `ds["question_info"]["entry_fn_name"]` to `f`:
|
87 |
```python
|