mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-31 16:01:46 +00:00
score batch
This commit is contained in:
parent
0bce74402f
commit
c5cf9c30be
1 changed files with 10 additions and 0 deletions
|
@ -54,3 +54,13 @@ class TestScoring:
|
||||||
for x in scoring_functions:
|
for x in scoring_functions:
|
||||||
assert x in response.results
|
assert x in response.results
|
||||||
assert len(response.results[x].score_rows) == len(rows.rows)
|
assert len(response.results[x].score_rows) == len(rows.rows)
|
||||||
|
|
||||||
|
# score batch
|
||||||
|
response = await scoring_impl.score_batch(
|
||||||
|
dataset_id="test_dataset",
|
||||||
|
scoring_functions=scoring_functions,
|
||||||
|
)
|
||||||
|
assert len(response.results) == len(scoring_functions)
|
||||||
|
for x in scoring_functions:
|
||||||
|
assert x in response.results
|
||||||
|
assert len(response.results[x].score_rows) == 5
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue