Skip to content

Commit

Permalink
Merge branch 'main' into dev/onevision_main
Browse files Browse the repository at this point in the history
  • Loading branch information
Luodian authored Aug 17, 2024
2 parents 09e2b03 + 5d0d40d commit 52d8c2c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
cd test/srt
python3 run_suite.py --suite minimal
timeout-minutes: 15
timeout-minutes: 18

- name: Test Frontend Language
run: |
Expand Down
2 changes: 1 addition & 1 deletion test/srt/test_eval_accuracy_large.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_mmlu(self):
)

metrics = run_eval(args)
assert metrics["score"] >= 0.71, f"{metrics}"
assert metrics["score"] >= 0.705, f"{metrics}"

def test_human_eval(self):
args = SimpleNamespace(
Expand Down
2 changes: 1 addition & 1 deletion test/srt/test_eval_accuracy_large_chunked_prefill.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_mmlu(self):
)

metrics = run_eval(args)
assert metrics["score"] >= 0.71, f"{metrics}"
assert metrics["score"] >= 0.705, f"{metrics}"

def test_human_eval(self):
args = SimpleNamespace(
Expand Down
2 changes: 1 addition & 1 deletion test/srt/test_eval_accuracy_large_mixed_chunked_prefill.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_mmlu(self):
)

metrics = run_eval(args)
assert metrics["score"] >= 0.71, f"{metrics}"
assert metrics["score"] >= 0.705, f"{metrics}"

def test_human_eval(self):
args = SimpleNamespace(
Expand Down

0 comments on commit 52d8c2c

Please sign in to comment.