Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
44 views

I am integrating a vector-based semantic search system into a large ecommerce platform's product search, and I want to select the right text embedding model. Use Case User queries are often: Very ...
Sumit Raj's user avatar
1 vote
1 answer
208 views

I have an instance of Postgres with the pgvector extension enabled. I want to know if I can easily perform hybrid search on my data using both a vector similarity search as well as keyword matching. ...
KZiovas's user avatar
  • 5,049
0 votes
1 answer
125 views

I'm trying to implement the use of vectors in my application. I raised the version of Spring boot to 4.0.0-M1. This also gives me hibernate 7. Added EXTENSION vector to Postgres Added dependency: &...
tabool's user avatar
  • 46
1 vote
0 answers
80 views

https://learn.microsoft.com/en-us/azure/search/semantic-how-to-enable-scoring-profiles I've recently tried new preview feature of Azure Search, where I can use Scoring Profile with Semantic Ranker at ...
Krystian's user avatar
1 vote
2 answers
105 views

I am evaluating vespa ai for our search use case, I want to understand if I am using the rank function correctly and if this is a right way to use it "default-index": "all_text", ...
vipulsodha's user avatar
1 vote
1 answer
47 views

NOTE: This is an extension of my question. The resume is as follows: I am using Semantic Search in Yu-Gi-Oh! Media Wiki for: Get all Dinosaur monster cards available. The query results must match ...
Mauricio Arias Olave's user avatar
0 votes
2 answers
85 views

In Yu-Gi-Oh! Wikia you can use a tool called Semantic Search from MediaWiki for get certain results - i.e. cards. I am fairly new on this tool. The query I am working on is: Get all Dinosaur monster ...
Mauricio Arias Olave's user avatar
0 votes
0 answers
496 views

Context I am working on a semantic search application and using Qdrant to store three types of embeddings per document: Dense embeddings (from OpenAI) Sparse embeddings (from Qdrant/BM25) Rerank ...
Himanshu Gupta's user avatar
0 votes
0 answers
50 views

I was following this documentation page from Elastic Search https://www.elastic.co/guide/en/elasticsearch/reference/current/bring-your-own-vectors.html I have stored the vectors already and tried to ...
felipeformenti's user avatar
1 vote
0 answers
169 views

I need to setup complex semantic search pipeline. This pipeline includes several retrieval sources, such as full text search, vector search, and ColBERT search. For the first two tasks there is an ...
Nick Zorander's user avatar
0 votes
0 answers
92 views

What is the bug? We use an index to store text documents for semantic search purpose. The text being long, we chunk it in paragraph to embed it using all-MiniLM-L6-v2 model. Each chunk being stored in ...
Corentin Limier's user avatar
2 votes
0 answers
95 views

I have two spark DataFrames A and B with the same schema. They contain text and the embedding vector of the text pre-calculated using a model such as OpenAI ADA v2 or similar. Example: id text ...
Francesco Pasa's user avatar
-1 votes
1 answer
527 views

GET example-index/_search { "retriever": { "rrf": { "retrievers": [ { "standard": { ...
Amandeep Singh's user avatar
0 votes
1 answer
146 views

Hi I'm trying to implement knn in elasticsearch, using maven java, but k is not being accepted in the querybuilder using elasticsearch client. Query knnQuery = QueryBuilders.knn(m -> m .queryVector(...
Amandeep Singh's user avatar
0 votes
0 answers
164 views

I am building a semantic search engine for short sentences where I want to know which sentence have the more similar sentences. For that, I need to know based on a threshold on the similarity score, ...
lpe's user avatar
  • 37
1 vote
0 answers
183 views

I have a database(currently a json file) of keywords and their embedding data that i created with openAI's embedding. What i am trying to do is a similarity search with the input keyword. So In my ...
Sree Sankar's user avatar
0 votes
1 answer
500 views

I'm creating a QA bot with RAG and aiming to provide the specific documents from which the answers are extracted. Retrieval QA uses k documents which are semantically similar to query to generate the ...
tori's user avatar
  • 31
2 votes
0 answers
293 views

I want to create $vectorSearch index to use mongodb semantic search. I found some official documents that describes how to make it through mongodb Atlas cloud dashboard. But I need to make it on my ...
Reza Hedayati's user avatar
0 votes
2 answers
409 views

We have generated vector embeddings using OpenAI from our custom data file which is in .xlsx format and stored the vectors in Pinecone, we are now trying to put query using pinecone index and get the ...
Sameera Sadaqat's user avatar
1 vote
1 answer
584 views

I am new to semantic search/semantic ranking. I might also be incorrectly using the words. I have few questions to understand the concept of semantic ranking, if someone could help. Are Semantic ...
Manu Chadha's user avatar
  • 16.9k
0 votes
1 answer
64 views

The following line of code is causing a build error: SemanticSettings semanticSettings = new SemanticSettings(); This came from Quickstart: semantic ranking - Azure AI Search | Microsoft Learn I was ...
Kenneth's user avatar
  • 13
-1 votes
2 answers
80 views

I want to see the output of the query as "Track id" and "Title" but I am only able to see the metadata as attached. What changes do I need to make in the results to get desired ...
Vidya Lakshmy's user avatar
2 votes
2 answers
3k views

I am new to the Qdrant vector database and its literature. As I understand, for uploading data to the Qdrant client database, we use uploading methods such as upsert and upload_records but I did not ...
Mohsen Mahmoodzadeh's user avatar
0 votes
1 answer
517 views

I'm trying to deploy the pretrained model amazon/neural-sparse/opensearch-neural-sparse-encoding-v1 on AWS OpensSearch to use it for Neural Sparse Search but it doesn't seem to work. The full request: ...
user23108725's user avatar
0 votes
1 answer
91 views

I would like to use Marqo to get recommendations of a similar nature to the query from the database. Instead of querying the index with text, I want to search with an existing document from the index. ...
rbdcgalaxy's user avatar
2 votes
1 answer
439 views

Suppose my index has: A vector field called "text_encoded" A field called "field1", that can contain one or more of the following classes: "A", "B", "C&...
ardito.bryan's user avatar
3 votes
1 answer
1k views

I'm trying to create a Semantic search system and have experimented with multiple pretrained models from the SentenceTransformers library: LaBSE, MS-MARCO etc. The system is working well in returning ...
Aftaab Zia's user avatar
1 vote
2 answers
606 views

I am working with Azure Cognitive Search and have set up an index with content in both English and German. I'm attempting to perform semantic search with different queryLanguage parameters to retrieve ...
Artem's user avatar
  • 11
1 vote
0 answers
413 views

I am receiving this error while deploying my application on Heroku: error image It is because I have added "sentence-transformers" to my applications requirements.txt file and If I don't ...
user69's user avatar
  • 11
0 votes
1 answer
257 views

I tried the following block of code to implement nearest neighbor search algorithm in Vespa. https://docs.vespa.ai/en/nearest-neighbor-search-guide.html I was able to run it successfully but was ...
Vidya Lakshmy's user avatar
1 vote
1 answer
263 views

Trying to fetch closest neighbor for my given embedding, using below query: vespa query -v 'yql=select text from VectorSearch3_content where {targetHits:10}nearestNeighbor(embedding,q)' 'hits=1' '...
Kaushal Singh's user avatar
1 vote
0 answers
403 views

Our team uses Redis as a vector store for our Langchain application. We store text chunks as hashes with indexed keys, and fields of metadata, content, and vector. The issue arises when we are trying ...
Niv Cohen's user avatar
  • 1,188
1 vote
0 answers
887 views

I'm working on document based question and answering model using vertexAI.. But here I'm using Json file instead of document such as PDF or DOCS. Consider that, the 1000s of json file which contains ...
Karthick Pandian's user avatar
2 votes
1 answer
367 views

Problem I have at hand is to build a product suggestion model which suggest products based on the context of the search query of a user. My plan is to get a pre-trained model from the sentence-...
L.D. WEERARATHNE's user avatar
2 votes
0 answers
448 views

I'm trying to use the elasticsearch text expansion query to implement semantic search on a rank features field. I've read the ELSER documentation and understand the process. I'm using a local/...
camoneme's user avatar
0 votes
1 answer
3k views

I was trying to achieve semantic vector search on my own data. The PDF file will be uploaded into the blob storage, Indexer with skillsets pick up the file content from datasource and map to the index ...
sandesh naik's user avatar
1 vote
0 answers
324 views

I have a "documents" index. Every document has multiple embeddings vectors corresponding to chunks of text of the document. Can I run a cosine similarity script using elasticsearch to get ...
Francesco Pettini's user avatar
0 votes
1 answer
661 views

I'm building an AI assistant that interacts with custom Q&A stored in a vector database. All examples of it shows as a very simple task of chunking documents (QA in this case), creating embeddings,...
Cristian Sepulveda's user avatar
1 vote
1 answer
648 views

Does anyone have an example of getting the Answer from the semantic search in Azure Cognitive Search using c#. This is what I have but I can seem to get the AnswerResult from it. SearchOptions ...
Joe Campbell's user avatar
1 vote
0 answers
512 views

I am using hybrid search in Elastic search. Below is an example from ES docs. So what I found in hybrid results term-based results come at the top, and I wanted to know how the scoring works in each ...
Sazzad's user avatar
  • 903
1 vote
0 answers
238 views

I am working on a project where I need to perform semantic search on Hebrew documents using AWS OpenSearch. I am wondering if it is possible to perform semantic search on Hebrew documents using ...
daniel's user avatar
  • 199
0 votes
2 answers
2k views

I'm trying to use semantic search enabled azure cognitive search in my flask app (in python virtual env). When I do pip install azure.search.documents, 11.3.0 version gets installed and I get ...
Swasti's user avatar
  • 307
0 votes
2 answers
2k views

I have an index in azure cognitive search where I have given the details of my offerings. There are two main fields (amongst many others like Name, Availability etc.): Bio (Edm.String) Tags (...
SAMANVITH M S 19BCE0958's user avatar
1 vote
2 answers
475 views

Does Azure cognitive search sematic search configuration support binding content field to content type in a Edm.ComplexType? I have an index which have a collection of complex types. Each item in the ...
Sanny Jacobsson's user avatar
0 votes
1 answer
214 views

I am working with Azure Cognitive Search and while going through its documentation I came across the advanced query forms like fielded search, fuzzy search, proximity search and many more, but all of ...
Vadiraj Rao's user avatar
0 votes
0 answers
96 views

I have configured and indexed the data for Azure Cognitive Search, the indexed data contains a field TimeSlots of type Collections(Edm.ComplexType) which looks like "TimeSlots": [ ...
Vadiraj Rao's user avatar
1 vote
0 answers
462 views

I am trying use embedding models in elastic search following this tutorial When I run this command docker run -it --rm elastic/eland \ eland_import_hub_model \ --url https://username:password@...
Sazzad's user avatar
  • 903
1 vote
1 answer
1k views

I am trying to use this repository to create semantic search for youtube videos using OpenAI + Pinecone but I am hitting a 429 error on this step - "Run the command npx tsx src/bin/process-yt-...
Helpinghand's user avatar
4 votes
1 answer
4k views

I'm trying to use google flan t5-large to create embeddings for a simple semantic search engine. However, the generated embeddings cosine similarity with my query is very off. Is there something I'm ...
Affan Mir's user avatar