Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/lmeval/configs/w4a4_nvfp4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cadence: "weekly"
model: meta-llama/Llama-3.1-8B-Instruct
scheme: NVFP4
dataset_id: HuggingFaceH4/ultrachat_200k
dataset_split: train_sft
num_calibration_samples: 20
lmeval:
metrics:
exact_match,flexible-extract: 0.70
exact_match,strict-match: 0.65
2 changes: 1 addition & 1 deletion tests/lmeval/test_lmeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def set_up(self, test_data_file: str):
logger.info("========== RUNNING ==============")
logger.info(self.scheme)

self.num_calibration_samples = 512
self.num_calibration_samples = eval_config.get("num_calibration_samples", 512)
self.max_seq_length = 2048

def test_lm_eval(self, test_data_file: str):
Expand Down