I'm generating sparse vector embeddings using elser model, i want to implement search using spring data based application, what datatype should i use for it.
Will the following code work?
@Field(type = FieldType.Rank_Features)
private Map<String,Float> sparseEmbeddings;
I'm using ES 8.13.4
I'm getting "searchResponse" is null error when querying and searching through my spring data based java application.