You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on a project based of face recognition where i have to store the face-embedding into postgres DB. the face-recog part returns a numpy nd-array with 120 dimensions. which is the cropped out portion of the face. When i try to store this, pgvector complains that ndim needs to be 1. I cannot find any relevent documentation regarding this. How do i change it? wny help would be appreciated
The text was updated successfully, but these errors were encountered:
Hi @pzerone, it sounds like you're trying to pass a matrix to a vector column. If you have multiple embeddings, you'll typically want to store them as multiple rows.
I'm working on a project based of face recognition where i have to store the face-embedding into postgres DB. the face-recog part returns a numpy nd-array with 120 dimensions. which is the cropped out portion of the face. When i try to store this, pgvector complains that
ndim
needs to be 1. I cannot find any relevent documentation regarding this. How do i change it? wny help would be appreciatedThe text was updated successfully, but these errors were encountered: