Update README.md

This commit is contained in:
Reece Iriye 2024-04-22 12:59:16 -05:00 committed by GitHub
parent d5030bd54b
commit 77fac4b3e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ This function returns an array as embedding. The size of the embedding array wou
```python ```python
embedding = embedding_objs[0]["embedding"] embedding = embedding_objs[0]["embedding"]
assert isinstance(embedding, list) assert isinstance(embedding, list)
assert model_name = "VGG-Face" and len(embedding) == 4096 assert model_name == "VGG-Face" and len(embedding) == 4096
``` ```
Here, embedding is also [plotted](https://sefiks.com/2020/05/01/a-gentle-introduction-to-face-recognition-in-deep-learning/) with 4096 slots horizontally. Each slot is corresponding to a dimension value in the embedding vector and dimension value is explained in the colorbar on the right. Similar to 2D barcodes, vertical dimension stores no information in the illustration. Here, embedding is also [plotted](https://sefiks.com/2020/05/01/a-gentle-introduction-to-face-recognition-in-deep-learning/) with 4096 slots horizontally. Each slot is corresponding to a dimension value in the embedding vector and dimension value is explained in the colorbar on the right. Similar to 2D barcodes, vertical dimension stores no information in the illustration.