(mini=False, noextreme=False, version="default")
| 16 | |
| 17 | |
| 18 | def _ready_human_eval_plus_path(mini=False, noextreme=False, version="default") -> str: |
| 19 | if HUMANEVAL_OVERRIDE_PATH: |
| 20 | return HUMANEVAL_OVERRIDE_PATH |
| 21 | |
| 22 | version = HUMANEVAL_PLUS_VERSION if version == "default" else version |
| 23 | url, plus_path = get_dataset_metadata( |
| 24 | "HumanEvalPlus", HUMANEVAL_PLUS_VERSION, mini, noextreme |
| 25 | ) |
| 26 | make_cache(url, plus_path) |
| 27 | |
| 28 | return plus_path |
| 29 | |
| 30 | |
| 31 | def get_human_eval_plus_hash(mini=False, noextreme=False, version="default") -> str: |
no test coverage detected