I wonder if OpenAI uses this as a honeypot to get domain-specific source data into its training corpus that it might otherwise not have access to.
Show HN: Building a web search engine from scratch with 3B neural embeddings
51–60 of 124 posts
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#52One effective old technique for ranking is to capture the search-to-click relationship by real users. It's basically the training data by human mapping the search terms they entered to the links they clicked. With just a few of clicks, the ranking relevance goes way up.
May be feeding the data into a neural net would help ranking. It becomes a classification problem - given these terms, which links have higher probabilities being clicked. More people clicking on a link for a term would strengthening the weights.
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#53[1] https://www.clearview.ai/post/how-we-store-and-search-30-bil...
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#54"There was one surprise when I revisited costs: OpenAI charges an unusually low $0.0001 / 1M tokens for batch inference on their latest embedding model. Even conservatively assuming I had 1 billion crawled pages, each with 1K tokens (abnormally long), it would only cost $100 to generate embeddings for all of them. By comparison, running my own inference, even with cheap Runpod spot GPUs, would cost on the order of 10…
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#55Kudos wilsonzlin. I'd love to chat sometime if you see this. It's a small space of people that can build stuff like this e2e.
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#56A vector-only search engine will fail for a lot of common use cases where the keywords do matter. I tried searching for `garbanzo bean stew` and got totally irrelevant bean recipes.
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#57"There was one surprise when I revisited costs: OpenAI charges an unusually low $0.0001 / 1M tokens for batch inference on their latest embedding model. Even conservatively assuming I had 1 billion crawled pages, each with 1K tokens (abnormally long), it would only cost $100 to generate embeddings for all of them. By comparison, running my own inference, even with cheap Runpod spot GPUs, would cost on the order of 10…
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#58I know the post primarily focuses on neural search, but I’m wondering you tried integrating hybrid BM-25 + embeddings search and if this led to any improvements. Also, what reranking models did you find most useful and cost efficient?
Re: Show HN: Building a web search engine from scratch with 3B neural embeddings
#59It doesn't seem that far in diatance from a commercial search engine? Maybe even Google?
50k to run is a comically small number. I'm tempted to just give you that money to seed.