Skip to content

Commit

Permalink
add COTEVAL_CACHE_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
ggbetz committed Mar 17, 2024
1 parent 3e76a7b commit 2a4091b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions config.env
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ MAX_MODEL_PARAMS=10
# num of GPUs available on machine
NUM_GPUS=1

# path to local cache directory
COTEVAL_CACHE_DIR=./cot-eval-cache

# Dataset repos
TRACES_REPO=cot-leaderboard/cot-eval-traces
# raw lm-eval harness results
Expand Down
12 changes: 6 additions & 6 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ fi

# Local TMPPATHS to store intermediate files

LOTMP_NEXTMODELINFO="./next_model.json" # stores info about which model to evaluate next
LOTMP_CONFIGKEYSINFO="./config_keys.txt" # stores names of cot-eval configs that will be used
LOTMP_CONFIGSFOLDER="src/cot_eval/configs" # folder with cot-eval configs that will be used
LOTMP_ELEU_CONFIGSFOLDER="./eleuther/tasks/logikon" # folder with lm-eval-harness tasks
LOTMP_ELEU_CONFIGSINFO="./lm_eval_harness_tasks.json" # groups names of lm-eval-harness tasks that will be used
LOTMP_ELEU_OUTPUTDIR="./eleuther/output" # folder with lm-eval-harness output
LOTMP_NEXTMODELINFO="$COTEVAL_CACHE_DIR/next_model.json" # stores info about which model to evaluate next
LOTMP_CONFIGKEYSINFO="$COTEVAL_CACHE_DIR/config_keys.txt" # stores names of cot-eval configs that will be used
LOTMP_CONFIGSFOLDER="$COTEVAL_CACHE_DIR/cot_eval_configs" # folder with cot-eval configs that will be used
LOTMP_ELEU_CONFIGSFOLDER="$COTEVAL_CACHE_DIR/eleuther/tasks/logikon" # folder with lm-eval-harness tasks
LOTMP_ELEU_CONFIGSINFO="$COTEVAL_CACHE_DIR/lm_eval_harness_tasks.json" # groups names of lm-eval-harness tasks that will be used
LOTMP_ELEU_OUTPUTDIR="$COTEVAL_CACHE_DIR/eleuther/output" # folder with lm-eval-harness output


##############################
Expand Down

0 comments on commit 2a4091b

Please sign in to comment.