Skip to content

Commit

Permalink
fix: embedded size for facenet changed to 128
Browse files Browse the repository at this point in the history
  • Loading branch information
rezakarbasi committed Mar 19, 2024
1 parent 5e38914 commit 24f7e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_represent_encoded(self):
for i in result["results"]:
assert i.get("embedding") is not None
assert isinstance(i.get("embedding"), list) is True
assert len(i.get("embedding")) == 4096
assert len(i.get("embedding")) == 128
assert i.get("face_confidence") is not None
assert i.get("facial_area") is not None

Expand Down

0 comments on commit 24f7e11

Please sign in to comment.