Questions tagged [semantic-search]

24 questions
0
votes
0 answers

Elastic Search | How to Give more weights to Semantic Search compared to default Term based Search while using Hybrid Search

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 type. For example do team-based results get…
Sazzad
  • 773
  • 11
  • 22
0
votes
0 answers

What is the better and more precise way to train a Name Finder model in OpenNLP, NameFinderME or TokenNameFinderTrainer?

I'm currently working on a project that requires me to train a Name Finder model in OpenNLP to recognize specific entities in text. I've come across two different approaches for training the model, using NameFinderME or TokenNameFinderTrainer. I…
0
votes
0 answers

How to Upgrade Elastic Docker from 8.6.2 to 8.7 without loosing anything

I installed elastic search and kibana docker from official documentation. docker network create elastic docker pull docker.elastic.co/elasticsearch/elasticsearch:8.6.2 docker run --name es-node01 --net elastic -p 9200:9200 -p 9300:9300 -t…
Sazzad
  • 773
  • 11
  • 22
0
votes
2 answers

Azure Cognitive Search: got an unexpected keyword argument 'query_language' in python vscode

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 following error: TypeError: Session.request() got an…
0
votes
1 answer

How is Semantic Search using fields set up in Semantic Configuration to re rank results in Azure Cognitive Search

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 (Collection(Edm.String)) I have defined a scoring profile…
0
votes
0 answers

Piencone: Should I put all data and their different fields in one index or use name spaces for each field?

I'm storing vectors using Pinecone and have a Movie dataset with the following fields: id title genres original_language overview production_companies release_date budget revenue runtime vote_average vote_count credits keywords I want to be able to…
Adam Bishti
  • 525
  • 2
  • 6
  • 16
0
votes
1 answer

Can a semantic query type support advanced query forms?

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 these advanced forms were supported by queryType…
0
votes
0 answers

How to add scoring function of type Freshness to a field of type Collections(Edm.ComplexType) in Azure Cognitive Search?

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": [ { "Slot":…
0
votes
1 answer

OpenAI Rate Limit 429 Bug

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-playlist.ts to pre-process the transcripts and fetch…
1
2