Merge pull request 'fix: [bug] Layer C QE Audit 持续 REJECT — 1/5 adequate 需提升至 ≥70% - 来自 #18 - Closes #75' (#77) from dev/issue-75-round2-ensemble-temp into main
CI / test (push) Successful in 9s

This commit was merged in pull request #77.
This commit is contained in:
2026-06-02 18:55:49 +08:00
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -86,7 +86,8 @@ COVERAGE_TARGET = float(os.environ.get("IR_COVERAGE_TARGET", "0.95"))
ENSEMBLE_TEMPERATURES = [ ENSEMBLE_TEMPERATURES = [
float(os.environ.get("IR_ENSEMBLE_T1", "0.0")), float(os.environ.get("IR_ENSEMBLE_T1", "0.0")),
float(os.environ.get("IR_ENSEMBLE_T2", "0.3")), float(os.environ.get("IR_ENSEMBLE_T2", "0.3")),
float(os.environ.get("IR_ENSEMBLE_T3", "0.7")), float(os.environ.get("IR_ENSEMBLE_T3", "0.5")),
float(os.environ.get("IR_ENSEMBLE_T4", "0.7")),
] ]
+2 -2
View File
@@ -83,8 +83,8 @@ def test_output_dir_structure():
def test_ensemble_temperatures_count(): def test_ensemble_temperatures_count():
"""Should have exactly 3 ensemble temperatures.""" """Should have exactly 4 ensemble temperatures."""
assert len(config.ENSEMBLE_TEMPERATURES) == 3 assert len(config.ENSEMBLE_TEMPERATURES) == 4
def test_max_tokens_is_int(): def test_max_tokens_is_int():