Skip to content

Commit

Permalink
make fine tune id test looser
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 12, 2024
1 parent f34be2d commit 7e69a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integ/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def test_florence2_phrase_grounding_video_fine_tune_id():
fine_tune_id=FINE_TUNE_ID,
)
assert len(result) == 10
assert 16 <= len([res["label"] for res in result[0]]) <= 26
assert 12 <= len([res["label"] for res in result[0]]) <= 26
assert all([all([0 <= x <= 1 for x in obj["bbox"]]) for obj in result[0]])


Expand Down

0 comments on commit 7e69a79

Please sign in to comment.