Comment by sim7c00

Comment by sim7c00 2 days ago

16 replies

you are not wrong. the only 'sane' approaches ive seen with vibe coding is making a PoC to see if some concept works. then rewrite it entirely to make sure its sound.

besides just weird or broken code, anything exposed to user input is usually severly lacking sanity checks etc.

llms are not useless for coding. but imho letting llms do the coding will not yield production grade code.

bbarnett 2 days ago

Koko the gorilla understood language, but most others of her ilk simlpy make signs because a thing will happen.

Move hand this way and a human will give a banana.

LLMs have no understanding at all of the underlying language, they've just seen that a billion times a task looks like such and such, so have these tokens after them.

  • SirHumphrey 2 days ago

    What does it matter if they have understanding of the underlying language or not? Heck, do humans even have the "understanding of the underlying language". What does that even mean?

    It's a model. It either predicts usefully or not. How it works is mostly irrelevant.

    • shagmin 2 days ago

      Defining what that means exactly is one endeavor. But it's important to the how, because whatever it may mean implies a drastically limited set of capabilities, a ceiling, etc., compared to whatever it may mean - if it weren't the case.

    • grey-area 4 hours ago

      Without understanding you can’t have creativity or fix mistakes. It matters a lot.

    • sim7c00 2 days ago

      interesting take. i dont know a lot about grammarz yet in my own language i can speak fairly ok...

      all i know about these LLMs is that even if they understand language or can create it, they know nothing of the subjects they speak of.

      copilot told me to cast an int to str to get rid of an error.

      thanks copilot, it was on kernel code.

      glad i didnt do it :/. just closed browser and opened man pages. i get nowhere with these things. it feels u need to understand so much its likely less typing to write the code. code is concise and clear after all, mostly unambiguous. language on the other hand...

      i do like it as a bit of a glorified google, but looking at what code it outputs my confidence it its findings lessens every prompt

      • cstoner 2 days ago

        > all i know about these LLMs is that even if they understand language or can create it, they know nothing of the subjects they speak of.

        As a recent example of this, I was recently curious about how the heart gets the oxygen depleted blood back to the heart. Pumping blood out made sense to me, but the return path was less obvious.

        So I asked chatgpt whether the heart sucks in the blood from veins.

        It told me that the heart does not suck in the blood, it creates a negative pressure zone that causes the blood to flow into it ... :facepalm:

        Sure, my language was non-technical/imprecise, but I bet if I asked a cardiologist about this they would have said something like "That's not the language I would have used, but basically."

        I don't know why, but lately I've been getting a lot of cases where these models contradicts themself even within the same response. I'm working out a lot (debating a triathlon) and it told me to swim and do upper body weight lifting on the same day to "avoid working out the same muscle group in the same day". Similarly it told me to run and do leg workouts on the same day.

        > i do like it as a bit of a glorified google, but looking at what code it outputs my confidence it its findings lessens every prompt

        I'm having the exact same reaction. I'm finding they are still more useful than google, even with an error rate close to 70%, but I am quickly learning that you can't trust anything they output and should double check everything.

    • ryandrake 2 days ago

      I think that more often than we'd like to admit, we humans are also just not thinking that much about or understanding what we are communicating, and just outputting the statistically most likely next word over and over.

    • anuramat 2 days ago

      Nobody knows what intelligence is, yet somehow everyone has a strong opinion on what it isn't; after all, how could piecewise affine transformations/markov chains/differential equations EVER do X?

    • Piskvorrr 2 days ago

      In which case...what good is a model that predicts semi-randomly? Oh.

      ("But it works - when it works" is a tautology, not a useful model)

      • anuramat 2 days ago

        What does "semi-random" even mean? Are humans not "semi-random" in the same sense?

        • [removed] 2 days ago
          [deleted]
  • jedwards1211 2 days ago

    There’s been a lot of criticism that Koko’s language abilities were overblown and her expressions were overinterpreted as well.

A4ET8a8uTh0_v2 2 days ago

POC approach seems to work for me lately. It still takes effort to convince manager that it makes sense to devote time to polishing it afterwards, but some of the initial reticence is mitigated.

edit: Not a programmer. Just a guy who needs some stuff done for some of the things I need to work on.