Apparently list(embedding.flatten()) method worked for inserting the vectors into weaviate but when I called the query method it did not. There is some inconsistency between insert and query. A similar problem I faced when I did embedding with NLP,FastText as well. Deep down I guess there is some inconsistency in processing the vectors even if they are generated by same function between insert and query
Invalid input provided: The number of target vectors must be equal to the number of vectors… Can one from your team look into this?.
You can see the full code here I have used the cloud version.Code contains steps needed for creating, generating vector embedding and querying.
query_vector=list(embedding.flatten()) works for inserting but not for querying
vector = embedding.flatten().tolist() works both the ways. Similar problem experienced for NLP text vector embedding as well.
Also if you can show me how I can change the code for leveraging async support for new client, it would be great (I already have new python client installed)