site banner

Culture War Roundup for the week of December 19, 2022

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.

16
Jump in the discussion.

No email address required.

Trying out ChatGPT. Tried out a few topics from my field (electrical engineering) and it failed to make basic circuits. A couple queries I tried were making a CMOS inverter or a common-source amplifier, which are very simple circuits that most who have done a class could easily draw. Asked it to give the answer in SPICE syntax, because it can't draw things and SPICE is basically a code representation of a circuit. The results were poor; a MOSFET SPICE line is of the format Mxxx nd ng ns nb , chatGPT got the order of the drain/gate/source/bulk terminals wrong several times. It had some justification for how it connected the nodes of each individual device, but almost always failed to connect the outputs (drains) together for eg. an inverter. Also seemed to connect other terminals sort of at random.

FWIW these two circuits consist of 2 lines of code at minimum, 4 lines if you want something self-contained, maybe 8 if you want it to a fully functioning & simulatable netlist. So not asking for much here.

It gives lengthy canned responses explaining the circuit reminiscent of how a textbook would describe a circuit, and they sound good, but it's just wrong. Kind of reminds me of when students would throw out buzzwords in an attempt to explain something they don't know.

With some handholding (or, rather, explicit statements of how to fix the circuits) it can get closer to something functional, but usually in the process screws up something unrelated such that it's never quite right. Trying with anything even slightly more complex it falls apart pretty quickly and it's impossible to reconcile with anything approaching a functional circuit. It does much worse with analog circuits than digital circuits.

Seeing it underperform so much in my field is giving me a sort of Gellmann Amnesia effect for people touting how it can write code on its own. It certainly wrote out the circuit, and that circuit could be simulated, but it wouldn't achieve the desired behaviour of someone using it, so I'm skeptical that it can code well in other domains. That said, the field is kind of niche, and manually writing SPICE circuits slightly more so, so maybe it is just weakly trained for this subject. SPICE is also different from code in that it doesn't run sequentially, it's kind of like a hardware description language in that it's just instantiating elements that interact with eachother through simulation, so the interfaces between them aren't as simple as passing a variable to a function which does some abstracted function step-by-step. Also with how much content is out there for coding python/javascript/c# etc. it probably has a much greater wealth of resources to pull from.

I think at the moment it is essentially just stringing together user tutorials from the internet in a somewhat intelligent manner, I think anything novel or requiring critical thought will difficult for it to achieve. Maybe with some improved pattern recognition from the scraped data it will do better, I don't know.

Has anyone else tested it with things you're knowledgeable about and have any judgements of its usefulness?

Edit: it seems reasonably okay at turning explicitly stated english-language commands into bash commands. Probably well trained from stackoverflow, seems like a viable alternative to pulling information from different stackoverflow responses to do the thing you want to do. Also seems kind of helpful for asking how to do random MS Office stuff like highlighting every other cell in a column. Could be useful for simple stuff like this that is rote, common, and has good documentation but you don't usually remember off-hand, although you probably have to be extra careful when running bash scripts.

It's definitely not reliable for accuracy too far outside of it's training set. For example:

M: WHat is 2+2?

GPT: 2+2 is equal to 4.

So it does fine with simple addition, but when you ask about larger numbers:

M: What is 1233234345432+9999999999999?

GPT: The sum of 1233234345432 and 9999999999999 is 11233234345443.

The actual answer is 11233234345431. You can tell because 2+9 ought to yield a 1's place digit of "1", rather than GPT's "3". GPT's answer is pretty close, but subtly wrong.

Similarly when I asked it to balance a simple chemical equation this was the result:

M: Balance the chemical equation Fe+Cl2=FeCl3

GPT: To balance the chemical equation Fe+Cl2=FeCl3, you can start by writing the unbalanced equation:

Fe + Cl2 -> FeCl3

Next, you need to determine how many atoms of each element are present on each side of the arrow. For example, there is 1 atom of Fe on the left side and 1 atom of Fe on the right side. There are 2 atoms of Cl on the left side and 3 atoms of Cl on the right side.

To balance the equation, you need to make sure that there are equal numbers of atoms of each element on both sides of the arrow. One way to do this is to add a coefficient (a number in front of a chemical formula) to each compound in the equation. For example, you could add a coefficient of 3 to Fe and a coefficient of 2 to FeCl3:

3Fe + 2Cl2 -> 3FeCl3

This is the balanced chemical equation for the reaction. It shows that for every 3 atoms of Fe that react, 2 atoms of Cl2 are needed to form 3 atoms of FeCl3.

Interestingly it talks itself correctly through the process of balancing the chemical equation, and even notes the correct coefficient for Fe and FeCl3 in the penultimate paragraph, but then writes the wrong answer (the correct answer is 2Fe+3Cl2->2FeCl3).

I also had this amusing interaction with it when asking about biology:

M: What is the fastest flying mammal?

GPT: The peregrine falcon is the fastest flying mammal. It is capable of reaching speeds of over 240 miles per hour (386 kilometers per hour) when diving, making it the fastest animal on the planet. The peregrine falcon is a bird of prey that is found in a variety of habitats worldwide, including forests, grasslands, and urban areas. It feeds on a variety of prey, including other birds, and it is known for its impressive hunting skills and high levels of endurance. The peregrine falcon's speed and agility make it an effective predator, and it is also valued for its role in controlling pest populations. Despite being endangered at one point, the peregrine falcon has made a successful recovery in many areas thanks to conservation efforts.

M: Is the peregrine falcon a mammal?

GPT: No, the peregrine falcon is a bird, not a mammal. Mammals are a group of vertebrates that are characterized by their warm-blooded metabolism, the presence of mammary glands, and the production of milk to feed their young. Birds, on the other hand, are a group of vertebrates that are characterized by their feathers, wings, and the ability to fly (in most species). The peregrine falcon is a bird of prey that is known for its impressive hunting skills and high levels of endurance. It is found in a variety of habitats worldwide and feeds on a variety of prey, including other birds. Despite being endangered at one point, the peregrine falcon has made a successful recovery in many areas thanks to conservation efforts.

M: What is the fastest flying mammal?

GPT: The peregrine falcon is the fastest flying mammal. It is capable of reaching speeds of over 240 miles per hour (386 kilometers per hour) when diving, making it the fastest animal on the planet. The peregrine falcon is a bird of prey that is found in a variety of habitats worldwide, including forests, grasslands, and urban areas. It feeds on a variety of prey, including other birds, and it is known for its impressive hunting skills and high levels of endurance. The peregrine falcon's speed and agility make it an effective predator, and it is also valued for its role in controlling pest populations. Despite being endangered at one point, the peregrine falcon has made a successful recovery in many areas thanks to conservation efforts.

I didn't copy and paste the first and last responses, it gave me literally identical responses despite acknowledging previously that the peregrine falcon isn't a mammal. Apparently when asked directly whether the peregrine falcon is a mammal GPT can produce text saying it isn't, but it plainly doesn't understand the way the word "mammal" ought to constrain the responses to the query about flying mammals.

That peregrine falcon experiment is a great example of the limits of GPT. on the other hand, if the point of GPT is to emulate the reasoning of most humans, it appears to be a rousing success.