Milvus inserts a vector. Why is there a binary in the data structure? Is it possible to store the information you want? #4069
Answered
by
sahuang
computerAItest
asked this question in
Q&A and General discussion
-
Milvus inserts a vector. Why is there a binary in the data structure? Is it possible to store the information you want? type Entity struct { |
Beta Was this translation helpful? Give feedback.
Answered by
sahuang
Oct 22, 2020
Replies: 1 comment
-
Currently, Milvus supports two types of vectors: float vectors and binary vectors. If you wish to insert float vectors, use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sahuang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, Milvus supports two types of vectors: float vectors and binary vectors. If you wish to insert float vectors, use
FloatData []float32
. Otherwise useBinaryData []byte
for binary vectors.