example_ci_config.yaml 694 Bytes
Newer Older
Baber's avatar
Baber committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Language Model Evaluation Harness Configuration File
#
# This YAML configuration file allows you to specify evaluation parameters
# instead of passing them as command-line arguments.
#
# Usage:
#   $ lm_eval --config configs/default_config.yaml
#
# You can override any values in this config with command-line arguments:
#   $ lm_eval --config configs/default_config.yaml --model_args pretrained=gpt2 --tasks mmlu
#
# All parameters are optional and have the same meaning as their CLI counterparts.

model: hf
15
model_args:
Baber's avatar
Baber committed
16
17
18
19
20
  pretrained: EleutherAI/pythia-14m
  dtype: float16
tasks:
  - hellaswag
  - gsm8k
21
22
23
24
batch_size: 1
trust_remote_code: true
log_samples: true
output_path: ./test
Baber's avatar
Baber committed
25
limit: 10