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
Currently, we're using List<double> as the embedding data type, wondering if we could use double[],
In our cases, we're saving the embedding data into the vector DB as double[] directly, since the embedding data is fixed length data, no need to add new or remove, currently, we had to convert the List<double> as double[], it may cause app performance issue when calls .ToArray(), and in most cases, we may not need to append or remove data for embedding data
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Currently, we're using
List<double>
as the embedding data type, wondering if we could usedouble[]
,In our cases, we're saving the embedding data into the vector DB as
double[]
directly, since the embedding data is fixed length data, no need to add new or remove, currently, we had to convert theList<double>
asdouble[]
, it may cause app performance issue when calls.ToArray()
, and in most cases, we may not need to append or remove data for embedding dataBeta Was this translation helpful? Give feedback.
All reactions