<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: saeranv</title><link>https://news.ycombinator.com/user?id=saeranv</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 29 Jul 2026 23:43:07 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=saeranv" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by saeranv in "Ollama raises $65M, grows to nearly 9M users"]]></title><description><![CDATA[
<p>From the article:
"The project’s binary distributions didn’t include the required MIT license notice for the llama.cpp code they were shipping. This isn’t a matter of open-source etiquette, the MIT license has exactly one major requirement: include the copyright notice. Ollama didn’t."<p>I'm always puzzled by how often I see this happen in the open source community. Can the llama.cpp take legal action against Ollama for this? What's the point of these licensing requirements if they aren't (or can't be) enforced meaningfully?
Note: I'm not blaming the llama.cpp team for inaction here, I just want to see them get some justice!</p>
]]></description><pubDate>Thu, 09 Jul 2026 15:25:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48847514</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=48847514</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48847514</guid></item><item><title><![CDATA[New comment by saeranv in "A visual introduction to kernel functions"]]></title><description><![CDATA[
<p>I said before that the function shape changes as you're updating the parameters that govern the function but that's actually very misleading, (sorry), since the kernel parameters are only indirectly governing the function. What the parameters directly govern is the joint probability distribution P(f(x1), f(x2), ..., f(xn)). So the function f is implicitly defined by how likely the entire sequence of f values are.<p>So how does it change shape? Well this part is actually something I don't fully grasp myself yet. But I can sketch a crude bayesian interpretation, which is how I think of it. Not completely correct but works as a placeholder until I fully work out the math of updating the parameters.<p>Basically, from a bayesian perspective we can condition the joint distribution of function outputs as a likelihood conditioned on the kernel parameters theta: p(f(x1), f(x2), ... | theta).<p>Then we can derive the posterior distribution over theta p(theta | f(x1), f(x2), ...) like so:<p>p(theta | f(x1), f(x2), ...) ≈ p(f(x1), f(x2), ... | theta) p(theta).<p>So we fit the theta parameters based on how well it fits the observed data we feed our bayesian model.<p>FWIW, I recommend chapter 14 of Richard McElreath's Statistical Rethinking for a better introduction of GPs. This article kind of glosses over a lot of the intuition and introductory concepts that you need to really grok it.</p>
]]></description><pubDate>Tue, 09 Jun 2026 17:09:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48464007</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=48464007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48464007</guid></item><item><title><![CDATA[New comment by saeranv in "A visual introduction to kernel functions"]]></title><description><![CDATA[
<p>> Why is the 'true process' changing here? I understand our best guess or model is changing with new observations, but the true process should not be changing. If it actually is, then the formulation should be changed to isolate the parameters that is feeding back to it.<p>He's not saying the true process is changing, just the functions that are being sampled from the GP. The true process refers to the true, underlying function so it's deterministic if you have correctly identified all its inputs.<p>> So is the shape of each function changing?<p>Yes, the function changes shape as you get more data because the parameters governing that function (that we define in the kernel) are updated with new observational data, so that over time it converges to the 'true' process/function we are trying to discover.<p>> What is the 'distribution' over the functions doing? Is that also changing? Is the said 'distribution' just flat mean of these functions?<p>I think you're confused because the example given with cheese is really confusing when we're trying to understand the functions as arising from a multivariate distribution. So, I'll try to clarify that part. GPs are typically used to represent some function where the input is time or distance. This is why its called a 'process' - because the variables in a random process are indexed by space or time. So in this 1D example, in the X domain, [x1, x2, x3] represents something like fixed increments of increasing cheese. f(X) represents the gold amount. Now imagine gold can take any value from 0-100. Now plot all possible values of f(x1) on the x axis of a grid, f(x2) on the y-axis of the grid, and f(x3) on the z-axis of the grid. We have 100^3 points in this 3D grid. If we select one point, it's x,y,z coordinates correspond to the f(x1), f(x2) and f(x3) gold amounts. The dimension index, corresponds (typically) to something like time, or distance. In this example it's cheese.<p>In a GP, we're modeling the sampled f(X) point as if its from a 3D multivariate normal distribution. So sampling one point gives us the gold amount for cheese amount 1, 2, and 3. This is the 'function', and as we sample more points, we get more 'functions' that give us varying gold amounts for cheese amount 1, 2, and 3. And because it's a multivariate distribution, we can capture correlations between dimensions, so the amount of gold you get for cheese-1, should influence how much gold you get at cheese-2  because its close by. This relationship is defined by the covariance function of the gaussian.<p>> GP(m(x), k(x, x')) What is 'x' here? (Sigh! We need to learn to define the variables before using.) I can infer that x' is not derivative of x.<p>x refers to some amount of gold, and k(x, x') just means that the kernel consumes any two values in our X vector (i.e. [x1, x3] or [x1, x2]).<p>> "In the context of GPs, a kernel or covariance function k(x, x') = Cov(f(x), f(x')), encodes which function values should vary together." It does not seem the 'f' here is intended to be the specific 'f' introduced at the beginning of the article.<p>I believe it is the same f actually. He's saying the kernel function takes in two values of x (cheese), and outputs the covariance between their output gold amounts. This illustrates his previous point that the "closeness" between x values should be reflected in the gold amounts.<p>> The plots now have y and x, and x1 and x2. How are these related?<p>y is gold. x is cheese. x1, x2 correspond to the first two x-values in the linear plot.<p>> And with k(x, x') = Cov(f(x), f(x')), what is 'f' for the various kernel functions being plotted.<p>f(X) is the approximation of the "true" process we're trying to learn from observational data. The observations are tuples of cheese and gold amoutns, so f(x), f(x') is just the corresponding gold amount, we don't actually model that function explicitly. The gaussian distribution we are sampling from for functions just models correlations between our variables, so it represents the function implicitly.</p>
]]></description><pubDate>Mon, 08 Jun 2026 23:50:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48454113</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=48454113</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48454113</guid></item><item><title><![CDATA[New comment by saeranv in "Sam Altman may control our future – can he be trusted?"]]></title><description><![CDATA[
<p>Greg Brockman honestly sounds like a psychopath:<p>> In 2017, Amodei hired Page Hedley, a former public-interest lawyer, to be OpenAI’s policy and ethics adviser. In an early PowerPoint presentation to executives, Hedley outlined how OpenAI might avert a “catastrophic” arms race—perhaps by building a coalition of A.I. labs that would eventually coördinate with an international body akin to NATO, to insure that the technology was deployed safely. As Hedley recalled it, Brockman didn’t understand how this would help the company beat its competitors. “No matter what I said,” Hedley told us, “Greg kept going back to ‘So how do we raise more money? How do we win?’ ” According to several interviews and contemporaneous records, Brockman offered a counterproposal: OpenAI could enrich itself by playing world powers—including China and Russia—against one another, perhaps by starting a bidding war among them. According to Hedley, the thinking seemed to be, It worked for nuclear weapons, why not for A.I.?</p>
]]></description><pubDate>Tue, 07 Apr 2026 00:57:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47669414</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=47669414</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47669414</guid></item><item><title><![CDATA[New comment by saeranv in "OpenAI's fall from grace as investors race to Anthropic"]]></title><description><![CDATA[
<p>For me, it was when I found out Greg Brockman's MAGA donations. From wikipedia (<a href="https://en.wikipedia.org/wiki/Greg_Brockman#Personal_life" rel="nofollow">https://en.wikipedia.org/wiki/Greg_Brockman#Personal_life</a>):<p>Brockman and his wife were the biggest donors to Donald Trump's Super PAC, MAGA Inc., in 2025 with each of them donating US$12.5 million. Brockman and his wife also donated $50 million to Leading the Future, a super PAC dedicated to AI deregulation that he helped found with Andreessen Horowitz co-founders Marc Andreessen and Ben Horowitz.</p>
]]></description><pubDate>Tue, 07 Apr 2026 00:16:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47669120</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=47669120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47669120</guid></item><item><title><![CDATA[New comment by saeranv in "A simulation where life unfolds in real time"]]></title><description><![CDATA[
<p>This is awesome. How do you integrate morphology into the simulation? Does morphology effect movement (via area friction or mass impact on momentum) or metabolism (via area/volume ratio)?</p>
]]></description><pubDate>Tue, 27 Jan 2026 17:35:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=46783299</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=46783299</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46783299</guid></item><item><title><![CDATA[New comment by saeranv in "Why does AI write like that?"]]></title><description><![CDATA[
<p>Archive link: <a href="https://archive.ph/IX9bP" rel="nofollow">https://archive.ph/IX9bP</a></p>
]]></description><pubDate>Mon, 22 Dec 2025 18:08:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=46356781</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=46356781</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46356781</guid></item><item><title><![CDATA[Why does AI write like that?]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.nytimes.com/2025/12/03/magazine/chatbot-writing-style.html">https://www.nytimes.com/2025/12/03/magazine/chatbot-writing-style.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46356776">https://news.ycombinator.com/item?id=46356776</a></p>
<p>Points: 2</p>
<p># Comments: 3</p>
]]></description><pubDate>Mon, 22 Dec 2025 18:08:24 +0000</pubDate><link>https://www.nytimes.com/2025/12/03/magazine/chatbot-writing-style.html</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=46356776</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46356776</guid></item><item><title><![CDATA[New comment by saeranv in "Oldest attestation of Austronesian language: Đông Yên Châu inscription"]]></title><description><![CDATA[
<p>That presumes that languages didn't evolve independently across different communities. The fact that different ancient languages have completely different grammatical structures, for example, provides some evidence of this.</p>
]]></description><pubDate>Thu, 11 Dec 2025 21:24:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=46237363</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=46237363</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46237363</guid></item><item><title><![CDATA[Greg Egan's Horror Stories]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.gregegan.net/HORROR/Horror.html#CONTENTS">https://www.gregegan.net/HORROR/Horror.html#CONTENTS</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41406175">https://news.ycombinator.com/item?id=41406175</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 31 Aug 2024 02:27:03 +0000</pubDate><link>https://www.gregegan.net/HORROR/Horror.html#CONTENTS</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=41406175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41406175</guid></item><item><title><![CDATA[New comment by saeranv in "A Model of a Mind"]]></title><description><![CDATA[
<p>A simple counter example here is instinctual behaviour. A sea turtle is born, and with little to no guidance, experimentation, or exploration heads to the sea. That knowledge is embedded at birth.<p>I think the analogy of the brain as hardware devices ("neural processor", "I/0 devices", etc) is misleading. I think I understand the very strict mind-matter dualism you're alluding to here. But so far attempts at using actual computer hardware to reproduce human-like cognition has gotten nowhere close, despite consuming order of magnitude more energy and data.</p>
]]></description><pubDate>Tue, 02 Jul 2024 04:15:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=40853515</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=40853515</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40853515</guid></item><item><title><![CDATA[New comment by saeranv in "Using a LLM to compress text"]]></title><description><![CDATA[
<p>> The idea is that if you can produce an accurate probably distribution over the next bit/byte/token...<p>But how can you get credible probability distributions from the LLMs? My understanding is that the outputs specifically can't be interpreted as a probability distribution, even though superficially they resemble a PMF, due to the way the softmax function tends to predict close to 100% for the predicted token. You can still get an ordered list of most probable tokens (which I think beam search exploits), but they specifically aren't good representations of the output probability distribution since they don't model the variance well.</p>
]]></description><pubDate>Mon, 06 May 2024 02:40:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=40270652</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=40270652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40270652</guid></item><item><title><![CDATA[The children who remember their past lives]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.washingtonpost.com/lifestyle/2024/05/02/children-past-lives/">https://www.washingtonpost.com/lifestyle/2024/05/02/children-past-lives/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=40240982">https://news.ycombinator.com/item?id=40240982</a></p>
<p>Points: 6</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 02 May 2024 20:23:33 +0000</pubDate><link>https://www.washingtonpost.com/lifestyle/2024/05/02/children-past-lives/</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=40240982</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40240982</guid></item><item><title><![CDATA[New comment by saeranv in "Visualizing Attention, a Transformer's Heart [video]"]]></title><description><![CDATA[
<p>I think they are accounting for the entire context, they specifically write out:<p>>> P(next_word|previous_words)<p>So the "next_word" is conditioned on "previous_words" (plural), which I took to mean the joint distribution of all previous words.<p>But, I think even that's too reductive. The transformer is specifically not a function acting as some incredibly high-dimensional lookup table of token conditional probabilities. It's learning a (relatively) small amount of parameters to compress those learned conditional probabilities into a radically lower-dimensional embedding.<p>Maybe you could describe this as a discriminative model of conditional probability, but at some point, we start describing that kind of information compression as semantic understanding, right?</p>
]]></description><pubDate>Mon, 15 Apr 2024 17:44:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=40043535</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=40043535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40043535</guid></item><item><title><![CDATA[New comment by saeranv in "Sam Altman's sister, Annie Altman, claims Sam has severely abused her"]]></title><description><![CDATA[
<p>I read through the whole LW post, and think there's enough troubling evidence here that she shouldn't be dismissed. It certainly shouldn't be flagged.<p>I initially was leaning to this being a high possibility of a delusion springing from a mentally unstable person, for all the reasons other commentators are mentioning. But, two things in particular struck me that changed my mind:<p>1. She apparently mentioned the abuse to her mother as a child.<p>2. She describes childhood behaviour consistent with someone who has experienced sexual abuse (i.e. thoughts of suicide, weird night behaviour like taking baths, body issues as she got older).<p>A small child doesn't have any incentive to make accusations, or to pretend to have been assaulted. If true, this should be taken seriously. Her mother is still alive, and there may be doctors, relatives or others that would be able to substantiate these points.<p>Finally, why has this post (and previous related posts) been repeatedly flagged? It's very troubling, I expect this from some HN users, but would have thought the HN moderators would have unflagged (or reposted) it upon consideration of the seriousness, importance of the subject matter, and undeniable relevance to the tech industry. At minimum, you would think someone would have unflagged them to avoid the appearance of bias and favorable treatment to the former YC president. At this point HN looks really sleazy.</p>
]]></description><pubDate>Sat, 18 Nov 2023 04:00:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=38314964</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38314964</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38314964</guid></item><item><title><![CDATA[He won a Nobel Prize. Then he started denying climate change]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.washingtonpost.com/climate-environment/2023/11/16/john-clauser-nobel-climate-denial/">https://www.washingtonpost.com/climate-environment/2023/11/16/john-clauser-nobel-climate-denial/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38295163">https://news.ycombinator.com/item?id=38295163</a></p>
<p>Points: 2</p>
<p># Comments: 4</p>
]]></description><pubDate>Thu, 16 Nov 2023 20:42:16 +0000</pubDate><link>https://www.washingtonpost.com/climate-environment/2023/11/16/john-clauser-nobel-climate-denial/</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38295163</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38295163</guid></item><item><title><![CDATA['Ray, this is a religion': How Bridgewater lost two top hires]]></title><description><![CDATA[
<p>Article URL: <a href="https://nymag.com/intelligencer/article/ray-dalio-rob-copeland-the-fund-book-excerpt.html">https://nymag.com/intelligencer/article/ray-dalio-rob-copeland-the-fund-book-excerpt.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38181408">https://news.ycombinator.com/item?id=38181408</a></p>
<p>Points: 202</p>
<p># Comments: 159</p>
]]></description><pubDate>Tue, 07 Nov 2023 19:15:00 +0000</pubDate><link>https://nymag.com/intelligencer/article/ray-dalio-rob-copeland-the-fund-book-excerpt.html</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38181408</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38181408</guid></item><item><title><![CDATA[New comment by saeranv in "Sam Bankman-Fried Convicted"]]></title><description><![CDATA[
<p>I sure hope all the HN commentators confidently predicting this would never happen because of his large donations to the democrats see this.</p>
]]></description><pubDate>Fri, 03 Nov 2023 04:04:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=38124367</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38124367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38124367</guid></item><item><title><![CDATA[New comment by saeranv in "18-year-old built a computer monitor that doesn't strain your eyes"]]></title><description><![CDATA[
<p>Thanks for the correction, my understanding of electricity is shaky, and I was assuming everything connected to a wall outlet is AC-driven, unless there's a boxy inverter along the cord like a laptop, but you're correct, that's not neccessarily correct and monitors are DC-driven.</p>
]]></description><pubDate>Mon, 30 Oct 2023 17:34:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=38072694</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38072694</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38072694</guid></item><item><title><![CDATA[New comment by saeranv in "18-year-old built a computer monitor that doesn't strain your eyes"]]></title><description><![CDATA[
<p>I disagree with other commentators here arguing that there's no benefit this monitor would bring over simply reducing screen brightness. But I also think the claim made by the article here is at best, miscommunicated: that the bounced light improves the monitor light quality itself. On this point, I think the criticism from HN is correct, there wouldn't be a meaningful difference between equivalent bounced light, and light from the monitor. There might be a possible benefit from the lack of light flickering from AC-driven electric lights, but that is only true if the space is daylit.<p>However, I think there is a quantifiable benefit from making the monitor light directly dependent on environmental light, which forces our perception to adjust to a more, low contrast, diffuse environmental context.<p>Part of the problem is that "brightness" in the context of monitors is different from how "brightness" is used in science of light, where it is defined as the subjective perception of light that changes relative to differences in light levels[1]. So you can see your way to the washroom in the middle of the night with no lights, but can't see your way back after you turned on the washroom light, because your subjective perception of light (brightness) has changed, even though objectively the amount of visible light (illuminance) has not changed.<p>Therefore, having a screen lit by the environment, would shift your perception of light to better see duller, low-light conditions, which is better for our eyes, since more uniform, diffuse light causes less strain than strong, directed light.<p>[1] <a href="https://en.wikipedia.org/wiki/Brightness" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/Brightness</a><p>[2] <a href="https://en.wikipedia.org/wiki/Luminous_efficiency_function" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/Luminous_efficiency_function</a></p>
]]></description><pubDate>Sat, 28 Oct 2023 00:05:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=38045535</link><dc:creator>saeranv</dc:creator><comments>https://news.ycombinator.com/item?id=38045535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38045535</guid></item></channel></rss>