<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: hawthorns</title><link>https://news.ycombinator.com/user?id=hawthorns</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 21 Sep 2026 02:40:28 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hawthorns" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hawthorns in "Production RAG: what I learned from processing 5M+ documents"]]></title><description><![CDATA[
<p>The main point didn't get hit on by the responses. Re-ranking is just a mini-LLM (for latency/cost reasons) that does a double heck. Embedding model finds the closest M documents in R^N space. Re-ranker picks the top K documents from the M documents. In theory, if we just used Gemini 2.5 Pro or GPT 5 as the re-ranker, the performance would even be better than whatever small re-ranker people choose to use.</p>
]]></description><pubDate>Tue, 21 Oct 2025 05:29:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=45652751</link><dc:creator>hawthorns</dc:creator><comments>https://news.ycombinator.com/item?id=45652751</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45652751</guid></item><item><title><![CDATA[New comment by hawthorns in "Show HN: Unsure Calculator – back-of-a-napkin probabilistic calculator"]]></title><description><![CDATA[
<p>It's dead simple. Here is the simplified version that returns the quantiles for '100 / 2 ~ 4'.<p><pre><code>  import numpy as np
  
  def monte_carlo(formula, iterations=100000):
    res = [formula() for _ in range(iterations)]
    return np.percentile(res, [0, 2.5, \*range(10, 100, 10), 
    97.5, 100])

  def uncertain_division():
    return 100 / np.random.uniform(2, 4)

  monte_carlo(uncertain_division, iterations=100000)</code></pre></p>
]]></description><pubDate>Tue, 15 Apr 2025 23:01:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=43699429</link><dc:creator>hawthorns</dc:creator><comments>https://news.ycombinator.com/item?id=43699429</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43699429</guid></item></channel></rss>