Datasets:

Languages:
English
ArXiv:
Tags:
code
License:
gabeorlanski commited on
Commit
2b71d51
1 Parent(s): 5fc724b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -94,6 +94,9 @@ DatasetDict({
94
  - `test_case_ids`: The list of test case ids for the problem. These are used to determine if a prediction passes or not.
95
  - `entry_fn_name`: The function's name to use an entry point.
96
  - `entry_cls_name`: The class name to use an entry point.
 
 
 
97
 
98
  **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`:
99
  ```python
 
94
  - `test_case_ids`: The list of test case ids for the problem. These are used to determine if a prediction passes or not.
95
  - `entry_fn_name`: The function's name to use an entry point.
96
  - `entry_cls_name`: The class name to use an entry point.
97
+ - `commands`: The commands used to execute the prediction. Includes a `__FILENAME__` hole that is replaced with the filename.
98
+ - `timeouts`: The default timeouts for each command.
99
+ - `extension`: The extension for the prediction file.
100
 
101
  **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`:
102
  ```python