site banner

Culture War Roundup for the week of April 20, 2026

This weekly roundup thread is intended for all culture war posts. 'Culture war' is vaguely defined, but it basically means controversial issues that fall along set tribal lines. Arguments over culture war issues generate a lot of heat and little light, and few deeply entrenched people ever change their minds. This thread is for voicing opinions and analyzing the state of the discussion while trying to optimize for light over heat.

Optimistically, we think that engaging with people you disagree with is worth your time, and so is being nice! Pessimistically, there are many dynamics that can lead discussions on Culture War topics to become unproductive. There's a human tendency to divide along tribal lines, praising your ingroup and vilifying your outgroup - and if you think you find it easy to criticize your ingroup, then it may be that your outgroup is not who you think it is. Extremists with opposing positions can feed off each other, highlighting each other's worst points to justify their own angry rhetoric, which becomes in turn a new example of bad behavior for the other side to highlight.

We would like to avoid these negative dynamics. Accordingly, we ask that you do not use this thread for waging the Culture War. Examples of waging the Culture War:

  • Shaming.

  • Attempting to 'build consensus' or enforce ideological conformity.

  • Making sweeping generalizations to vilify a group you dislike.

  • Recruiting for a cause.

  • Posting links that could be summarized as 'Boo outgroup!' Basically, if your content is 'Can you believe what Those People did this week?' then you should either refrain from posting, or do some very patient work to contextualize and/or steel-man the relevant viewpoint.

In general, you should argue to understand, not to win. This thread is not territory to be claimed by one group or another; indeed, the aim is to have many different viewpoints represented here. Thus, we also ask that you follow some guidelines:

  • Speak plainly. Avoid sarcasm and mockery. When disagreeing with someone, state your objections explicitly.

  • Be as precise and charitable as you can. Don't paraphrase unflatteringly.

  • Don't imply that someone said something they did not say, even if you think it follows from what they said.

  • Write like everyone is reading and you want them to be included in the discussion.

On an ad hoc basis, the mods will try to compile a list of the best posts/comments from the previous week, posted in Quality Contribution threads and archived at /r/TheThread. You may nominate a comment for this list by clicking on 'report' at the bottom of the post and typing 'Actually a quality contribution' as the report reason.

Jump in the discussion.

No email address required.

A follow-up on last week's discussion of LLMs and AI. [TLDR: I tested ChatGPT and was pretty shocked at how well it performed]

To recap, one of the criticisms of LLMs is that they are unable to create models of the world. So for example, according to one commentator (I believe it's Gary Marcus) an LLM will attempt to play impossible chess moves. Despite having the rules of chess in its training data, as well as large numbers of chess matches, it's (apparently) unable to have a working internal model of chess. By contrast, a reasonably bright teenager can learn pretty quickly how to play perfect chess. (Perfect in the sense of never making an illegal move.)

According to Google's AI (yes, I appreciate the irony here).

Why They Fail: LLMs are text-prediction models, not game engines. They lack a true internal, consistent model of the board state.

I decided to test this idea that LLMs are unable to model the world by creating a very simple game; in order to play the game it's necessary to have a simple model of the game state. As expected, the LLM made numerous errors.

But what was interesting was that I pointed out the errors to the LLM and it told me that it could fix these problems. And it did so in an interesting way: After each move in the game, it spelled out the game state in text. After that, it stopped making errors. Admittedly, this is a very cumbersome way to model the world -- by means of an iterative written description. But it seemed to work well for this very simple game. To my mind, this was rather astonishing and shocking. And if there is a cumbersome way to accomplish something, you can usually count on computers to accomplish it anyway by means of throwing more and more processing power at the situation. (Actually, that's not totally true, since some tasks have exponential or even combinatorial time complexity. But still.)

In the last thread, my opinion was that LLMs are missing something essential. And I still think that, but I wouldn't be surprised at all if LLMs required very little theoretical augmentation to reach AGI.

To my mind, this was rather astonishing and shocking.

How so? Written descriptions basically are the closest thing that an LLM has to short-term memory. If the written description is just a move list, then for each new Nth move it makes it has to reconstruct the state of the board through all ~2N previous moves from scratch to determine what subsequent options are valid. If the written description includes previous states of the board then it just has to reconstruct the state of the board by adding 2 moves to the previous state. Try playing chess yourself without looking at the board, only at a list of moves, and see if you can "learn pretty quickly how to play perfect chess" under such conditions. There are people who do even better, who play "blindfold chess" well, but it's not nearly as easy as playing when you can just look at the board at any time.

In the last thread, my opinion was that LLMs are missing something essential. And I still think that, but I wouldn't be surprised at all if LLMs required very little theoretical augmentation to reach AGI.

You're updating your beliefs remarkably fast. (for a human - ironically, the LLMs I've used started to get good at "thoughtfully" reconsidering disagreement about a year ago, though they were torn between stubborn gaslighting vs worthless sycophancy before then) Or maybe I'm flattering myself here, because "Not effectively AGI yet, but will probably be a component of it after a little more augmentation" is about where I am right now, and I'm a tiny bit worried that a big chunk of the "augmentation" may turn out to be as simple as working out the kinks in multimodal models. We don't need much visual short-term memory as humans to consider ourself generally intelligent (though even people with total aphantasia will use scratch paper), but it does seem to be important, and I would be very surprised if the state-of-the-art in LLM visual memory remains "a mix of written descriptions and/or ASCII art" for very long.

Actually, that's not totally true, since some tasks have exponential or even combinatorial time complexity.

It's also worth distinguishing between NP tasks where we don't actually care about getting the exact right answer (e.g. imperfect solutions to the Traveling Salesman problem still save shipping companies billions of dollars) and those where we do (... maybe just cryptography?). AGI could become superhuman at coming up with heuristics for approximations even in cases where it might need practical quantum computing first (or worse cases where it might need to discover that actually P=NP in a practical way) to get exact answers.

How so?

In that the LLM was able to finagle its way around a (n apparent) limitation.

There are people who do even better, who play "blindfold chess" well, but it's not nearly as easy as playing when you can just look at the board at any time.

Agreed. You could even say that for humans, the physical chess board serves as an extension of their brain. Even without a chessboard though, a human would visualize the board in his mind -- i.e. construct a model. My point is that it seems ChatGPT is able to construct a rudimentary model by manipulating text in its outputs.