Skip to content

Commit

Permalink
Default use_cache=False in eval harness integration (#774)
Browse files Browse the repository at this point in the history
* Set `use_cache=False` in run_eval_harness

* Update NeoXArgs docs automatically

* Update NeoXArgs docs automatically

---------

Co-authored-by: github-actions <[email protected]>
Co-authored-by: Quentin Anthony <[email protected]>
  • Loading branch information
3 people committed Feb 3, 2023
1 parent 0c831c3 commit 26ef16d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion configs/neox_arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Logging Arguments

- **git_hash**: str

Default = 3463ca4
Default = 7ed7bc6

current git hash of repository

Expand Down Expand Up @@ -1018,6 +1018,15 @@ Training Arguments



- **use_shared_fs**: bool

Default = True

Whether to use a shared filesystem for data loading. If False, local rank 0 on all nodes will preprocess the data,
otherwise only global rank 0 will preprocess the data. This is implemented in megatron/data/gpt2_dataset.py::_build_index_mappings.



- **train_data_paths**: list

Default = None
Expand Down
1 change: 1 addition & 0 deletions eval_tasks/eval_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,4 +462,5 @@ def run_eval_harness(
eval_tasks=eval_tasks,
num_fewshot=num_fewshot,
bootstrap_iters=bootstrap_iters,
use_cache=False,
)

0 comments on commit 26ef16d

Please sign in to comment.