forked from oumi-ai/oumi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path30b_a3b_eval.yaml
More file actions
38 lines (32 loc) · 1.18 KB
/
Copy path30b_a3b_eval.yaml
File metadata and controls
38 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Eval config for Qwen3 30B A3B (MoE model with 3B activated params).
#
# Requirements:
# - Log into WandB (`wandb login`) or disable `enable_wandb`
# - (Optional) Run `pip install oumi[gpu]` if using the VLLM inference engine.
#
# Usage:
# oumi evaluate -c oumi://configs/recipes/qwen3/evaluation/30b_a3b_eval.yaml
#
# See Also:
# - Documentation: https://oumi.ai/docs/en/latest/user_guides/evaluate/evaluate.html
# - Config class: oumi.core.configs.EvaluationConfig
# - Config source: https://github.com/oumi-ai/oumi/blob/main/src/oumi/core/configs/evaluation_config.py
# - Other eval configs: configs/**/evaluation/
model:
model_name: "Qwen/Qwen3-30B-A3B"
model_max_length: 32768
torch_dtype_str: "bfloat16"
attn_implementation: "sdpa"
trust_remote_code: True
shard_for_eval: True
generation:
batch_size: 4
tasks:
# For all available tasks, see https://oumi.ai/docs/en/latest/user_guides/evaluate/evaluate.html
- evaluation_backend: lm_harness
task_name: mmlu_college_computer_science
eval_kwargs:
num_fewshot: 5
enable_wandb: True
inference_engine: NATIVE # Can also use `VLLM` for faster inference on GPUs.
output_dir: "output/qwen3_30b_a3b/evaluation"