Live data from Hacker News

We Are the Last People Who Know How It Works

unix.foo

271–280 of 283 posts

Re: We Are the Last People Who Know How It Works

#271
post #136

Earlier quoted context omitted.

If there is something to be said, I have to ask. What specifically is there to be said?

Non-determinism is not inherently bad. We have had useful non-deterministic tools for (in computer years) several generations. Non-determinism combined with bugginess? That's a terrible combination. It is impossible to gradient-descent your way into a working prompt.

> Non-determinism is not inherently bad.

I would say it is unambiguously defined by the problem you're solving. For example a spellchecker is inherently probabilistic so you shouldn't need hard coded rules here like we did for years. A "bug" then would be considered "weak accuracy" not "crash" or "incorrect behavior", as it might be the case in any other layer.

They should add a term for it, maybe "embarrassingly nondeterministic"

Re: We Are the Last People Who Know How It Works

#272

I'm one of the greybeards who has the 2400 BAUD modem negotiation tone sequences emblazened in my neurons. For a while I've been meaning to set up some Wireguard connections among some of my systems. Being as busy as I am with work and family, I've relinquished that to Tailscale for now. Sure, I could have sat down and jumped through the hoops to get everything set up and working across my various hosts, including ne…

> I could have read a few man pages and iterated on the script by hand to eventually get there after maybe an hour or two of futzing

I'm not even sure losing this method is such a bad thing. Tooling, build scripts, home networking -- any learning you gain from stumbling through man pages and trial-and-error at best results in some hard-won, single-purpose scripts, the knowledge will evaporate instantly b/c everything is so bespoke, "fix once and forget" until you have new gear and have to solve new problems years later.

Presenting a well-specified problem thoroughly to an LLM, then analyzing results and testing the output, is valid problem solving.

Re: We Are the Last People Who Know How It Works

#273
post #136

Earlier quoted context omitted.

Non-determinism is not inherently bad. We have had useful non-deterministic tools for (in computer years) several generations. Non-determinism combined with bugginess? That's a terrible combination. It is impossible to gradient-descent your way into a working prompt.

> Non-determinism is not inherently bad. I would say it is unambiguously defined by the problem you're solving. For example a spellchecker is inherently probabilistic so you shouldn't need hard coded rules here like we did for years. A "bug" then would be considered "weak accuracy" not "crash" or "incorrect behavior", as it might be the case in any other layer. They should add a term for it, maybe "embarrassingly non…

> I would say [whether nondeterminism is bad] is unambiguously defined by the problem you're solving.

Sure. You gave an example where it can work. Another example is something like a PCB or chip layout engine.

That particular domain (layout) is NP-complete. You'll never have an exhaustive brute force search for the optimal layout, but...

You can subsequently easily check whether the produced layout meets all your acceptance criteria or not.

Another example that successfully utilizes non-determinism for good outcomes is the application of genetic algorithms to things like antenna design.

This works because (a) you have a relatively cheap fitness test; and (b) as with real evolution, the mix of combining working designs and randomly introducing mutations often eventually produces outstanding results.

Presumably, if you applied genetic algorithm techniques to, e.g., creating your LLM prompts, you could also get good results, but that would probably quickly get expensive in terms of tokens.

So we're left with people just semi-randomly modifying prompts in order to try to tweak results.

When it works, it can be amazing. When it doesn't work, it's like a brick wall.

I like your "embarrassingly nondeterministic" term, but I somewhat disagree with:

> A "bug" then would be considered "weak accuracy" not "crash" or "incorrect behavior",

When a lawyer asks an LLM for citations of cases that support his position, he is arguably doing something stupid, because embedding an assertion such as "Show me cases which support X" is just asking for hallucinatory trouble with many current LLMs.

Nonetheless, I submit that hallucinations are, by definition, "incorrect behavior" and not merely "weak accuracy."

Now, nondeterminism could certainly be useful to the lawyer, in that it could help an LLM make connections that LexisNexis might not have in their database. So asking an LLM for help with legal issues is theoretically not an insane thing to do, but the results need to be checked very carefully.

Re: We Are the Last People Who Know How It Works

#274
post #273

Earlier quoted context omitted.

> Non-determinism is not inherently bad. I would say it is unambiguously defined by the problem you're solving. For example a spellchecker is inherently probabilistic so you shouldn't need hard coded rules here like we did for years. A "bug" then would be considered "weak accuracy" not "crash" or "incorrect behavior", as it might be the case in any other layer. They should add a term for it, maybe "embarrassingly non…

> I would say [whether nondeterminism is bad] is unambiguously defined by the problem you're solving. Sure. You gave an example where it can work. Another example is something like a PCB or chip layout engine. That particular domain (layout) is NP-complete. You'll never have an exhaustive brute force search for the optimal layout, but ... You can subsequently easily check whether the produced layout meets all your ac…

I think I made an implicit distinction there that almost always get overlooked in these discussions, between runtime inference (when you run a transformer in your product) and offline inference (where you use AI in any ways anytime before that).

Chip design, etc would go to the latter category which is actually a huge space for innovation regardless of how you do it, while I was focusing more on the former which I think a lot of discussion seems to be concerned about.

Now if you are "running" your "generated code" that's where people will have strong opinions because it conflates the two completely different processes in the worst way possible.

Re: We Are the Last People Who Know How It Works

#275
post #273

Earlier quoted context omitted.

> I would say [whether nondeterminism is bad] is unambiguously defined by the problem you're solving. Sure. You gave an example where it can work. Another example is something like a PCB or chip layout engine. That particular domain (layout) is NP-complete. You'll never have an exhaustive brute force search for the optimal layout, but ... You can subsequently easily check whether the produced layout meets all your ac…

I think I made an implicit distinction there that almost always get overlooked in these discussions, between runtime inference (when you run a transformer in your product) and offline inference (where you use AI in any ways anytime before that). Chip design, etc would go to the latter category which is actually a huge space for innovation regardless of how you do it, while I was focusing more on the former which I th…

It's kind of a useful distinction, but the categories are really blurry.

For example, the layout software vendors provide a solution that both uses non-determinism in their final product, and also checks the results against whatever criteria you give it.

If it tells you it will work, it's probably not lying, and if it tells you it won't work, it's almost certainly not lying.

So in your own creative process of building a board, you can rely on that.

Many LLMs don't have this property at all, and honestly, it really doesn't matter whether you are using the LLM to craft a legal document or to craft code; if you don't check the output yourself, you're possibly in for a world of hurt.

> Now if you are "running" your "generated code" that's where people will have strong opinions because it conflates the two completely different processes in the worst way possible.

I think a primary driver of the attractive nuisance here is that, because the execution of the resultant code is itself a deterministic process (even if the process that produced that code it isn't) people think that they can tame the process, by some combination of automated testing and looped automated reprompting.

At some level, they may not be wrong -- computer chips themselves are built on top of stochastic atomic processes, and google famously proved in its early days that it could have reliable processes on top of shitty commodity hardware.

But one key difference is that the nondeterminism in the atomic processes or in the non-ECC memory of the white box computers is uncorrelated.

And another key difference is that, unlike the layout software vendors, so far the LLM vendors seem unable or unwilling to properly self-check their own outputs.

To me, this is kind of the canary in the coal mine. You would think that the LLM vendors have every incentive to weed out bad results, that they, more than anybody else, have the understanding of root causes and probabilities that a particular output might be bad, and have more than sufficient resources to fix this, if it's not an intractable problem.

So Occam's Razor says that (currently) this is still an intractable problem.

Re: We Are the Last People Who Know How It Works

#276

The issue with this is that we don't know how it works. Generally speaking, we know how the level of abstraction that we were born with works. We might have some understanding of one or two previous levels, but that decreases the farther down you go. We might understand the next level, and some of the next after that, but eventually people will be making things that we don't have the context to understand without hav…

In 50 years, Gen Z will be retired, and they're going to be complaining: "The new generations don't know how anything works! They don't know how to enter in a prompt or optimize token usage. They don't even remember what keyboards are! They just Neropath into the UltraMind and synthesize facts into their neurons without even putting them to words or reading anything. We have lost something critical!"

True

Re: We Are the Last People Who Know How It Works

#277
post #267

Earlier quoted context omitted.

That’s the “diets don’t work” line. I’m not denying that most people use AI for the path of least resistance, but I am saying that there’s more potential than just that, and it’s almost entirely overlooked in the broad debate.

Bad counterexample, c.f. the current obesity epidemic and the popularity of GLP-1s. I get what you're saying, it's just that I think what you're saying is not overlooked, it's simply insignificant to the debate about the effect of these tools on society. Your argument comes off to me like someone saying "everyone is complaining about how these cigarettes cause cancer, but you can just as easily use lit cigarettes to…

That's precisely why it's a good example. It's always taken work to lose weight, just because it's not common doesn't mean it's impossible. The common rhetoric loses that nuance, that's my point.

I didn't say anything else, you're reworking what I'm saying here and distorting my message.

Re: We Are the Last People Who Know How It Works

#280

A shame that Pangram flags this as AI. https://www.pangram.com/history/c0a9cde2-7a5c-4588-83a3-0269...

A shame indeed. Perhaps you should report it to the creators of Pangram? And perhaps you should stop shilling for bullshit AI detectors that don't (and can't) work?
Post reply on HN