Skip to main content

Questions tagged [search-engine]

A search engine is program that searches documents for specified keywords and returns a list of the documents where the keywords were found.

search-engine
0 votes
0 answers
104 views

implement a search engine chain using tavily in langchain

I want to implement a search engine chain using tavily in langchain. This chain gives user's query as an input and returns up to 5 related documents. Each retrieved document must have the content of ...
Zahra Reyhanian's user avatar
0 votes
0 answers
11 views

tf idf vectorizer for persian doc

I have some persian pdf file ,I want to build a small serach engine,how I can use tfidfvect sklearn for this persian pdf I preprocess each pdf seprately in the fumction ,and the output is list of ...
negin dehkhoda's user avatar
0 votes
0 answers
16 views

Mobile device automatic file upload to file inputs

The following code is a part of a web file search engine (.stl files) that takes file found by the search engine and automatically finds a file input on the webpage where it procceeds to upload it ...
Armaan Ahmad's user avatar
0 votes
0 answers
28 views

How to remove negation from japanese sentence and extract keywords (tfidf search )?

I want to remove negation from user query and extarct keywords from it for a search engine, for example . `NISAを除いてリストを見せ English translation : Show me the list excluding NISA For this I don't want ...
SIDDHARTH Gulati's user avatar
1 vote
1 answer
302 views

Named Entity Recognition on Search Engine Queries with Python

I'm trying to do Named Entity Recognition on search engine queries with Python. The big thing about search engine queries are that they are usually incomplete or all lowercase. For this task, I've ...
Albert McGloughn's user avatar
0 votes
1 answer
98 views

In Typesense, When i search 'brd' it doesn't show any results. Why it doesn't show results like bird, bard, etc.,?

In typesense, Why fuzzy search is not woking for small word (len 4)? const searchParameter = { 'q': "brd", 'query_by': 'title', } output: { "facet_counts": [], "...
Santhosh's user avatar
0 votes
1 answer
24 views

Filtration, aggregation and pagination for document array properties

I'm trying to implement a flexible searcher for my frontend application. Document structure The structure of my documents looks like this: { "student": { "id": 1, "...
SnoberS's user avatar
0 votes
0 answers
117 views

How can I target multiple URLs, using a single form and keyword?

I am trying to create something (basically a search engine, more or less), where I can enter a keyword into the search box, and that keyword will be implemented into several predefined URLs, and open ...
J Fav's user avatar
  • 3
0 votes
1 answer
113 views

Advanced search in django rest framework

I have a database containing lots of posts with a number of fields(title, content, tags). I want to build a search system to look for posts. It seemed really easy first but it turns out it is not. For ...
Sam Pearson's user avatar
0 votes
0 answers
21 views

Google Programmable Search Engine : Mobile pages not showing up

Using Google Programmable Search Engine, I am trying to set up a search engine for the mobile version of a website. I already put in place a search engine for the desktop version and it is working ...
Olargues's user avatar
0 votes
0 answers
58 views

How to stop search engines from indexing the hash links on WP page properly

I noticed all of the hash-links from the table of content on my blog have been indexed on google and I don't want that.. I don't want links like this to be indexed on google: example.com/blog/post/#...
t0mii's user avatar
  • 3
0 votes
0 answers
23 views

Request Search Engines not to index a specific span on a web page [duplicate]

I know this question was asked 8 years ago and there was no workable answer. Hoping things may have changed... I have a website, lets call it isellwebshops.com. That website advertises web shops to a ...
Rik's user avatar
  • 21
1 vote
1 answer
124 views

How to include a page in sitemap.xml that requires parameters

For a given page for a catalogue, item.php, there are two parameters which are used to look up the item (t and id): e.g. item.php?t=u&id=11. There are a couple of thousand items in the catalogue. ...
Clipclop's user avatar
  • 145
0 votes
0 answers
22 views

Confusion regarding the efficiency of using Barrels over monolithic Inverted Index in search engines?

http://infolab.stanford.edu/~backrub/google.html I was reading Google's whitepaper on search engine implementation. In google's system design, the Inverted Index is being sharded into Barrels, ...
Geek's user avatar
  • 43
0 votes
0 answers
45 views

Whoosh library, weird behavior of Sequence query with wildcards

Problem I am trying to implement behaviour similar to sphinx search engine handling phrases with wildcards. For this i use whoosh library. But when i use sequence queries with short words (2 chars ...
dbealthy's user avatar

15 30 50 per page
1
2 3 4 5
194