• bunchberry@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 hour ago

    It depends upon what you use ChatGPT for and if you know how to use it productively. For example if I ask ChatGPT coding questions it is often very helpful. If I ask it history questions it constantly makes things up. You also again need to know how to use it, like people who claim ChatGPT is not helpful for coding you ask them how they use it and they basically just ask ChatGPT to do their whole project for them and when it fails they claim it is useless. But that’s not the productive way to use it, the productive way to use it is like a replacement for StackOverflow or to provide you examples of how to use some library, or things like that, not doing your whole project for you. Of course, people often use it incorrectly so it’s probably not a good idea to allow its use in the workplace, but for individual use it can be very helpful.

    • LANIK2000@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 minute ago

      For coding it heavily depends on the language. For example, it’s quite decent at writing C#, but whenever I try to ask it any question about rust, it’s either flat out wrong or doesn’t even fucking compile.

      Also found it most useful when I know exactly what I want, just don’t know the syntax. Like when I was writing C# code generation for the first time. Also unsurprisingly sucks at working with libraries.

    • SynopsisTantilize@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      10 minutes ago

      I used it today to find out how to do something on my Juniper that would have taken 45 minutes of sifting bullshit documentation. One question and I figured it out in 2 minutes.

      This is similar to gabe Newell’s idea of piracy. This is a convenience issue. And GPT solves some of it.

  • tired_n_bored@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    3 hours ago

    I beg someone to help me. There is this new guy at my workplace, officially as a developer who can’t write code at all. He has pasted an entire project I did into ChatGPT with “optimize this” and pull requested it. I swear.

    • wizardbeard@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      5
      ·
      1 hour ago

      Report up the chain, if it’s safe to do so and they are likely to understand.

      Also, check what your company’s rules regarding data security and LLM use are. My understanding is that at many places putting private company or customer data into an outside LLM is seen as shouting company secrets out to the open internet. At least that’s the policy where I’m at. Pasting an entire project in would definitely violate things for my workplace.

      In general that’s rude as hell. New guy comes in, grabs an entire project they have no background with, and just chucks it at an LLM? No actual review of it themselves, just an assumption that your code is so shit that a general use text generator will do better? Doesn’t sound like a “team player” to me (management eats that kind of talk up).

      Maybe couch it as “I want to make sure that as a team, we’re utilizing the tools available to us in the best way possible to multiply our strengths. That said, I’m concerned the approach that [LLM idiot] is using will only result in more work for the team. Using chatGPT as he has is an explosive approach, when I feel that a more scalpel-like approach to address specific areas for improvement would be the best method moving forward. We should be using these tools to address specific concerns, not chucking everything at the wall in some never ending chase of an undefined idea of ‘more optimized’.”

      Perhaps frame it in terms of man hours? The immediateness of 5 minutes in chatGPT can cost the team multiple workdays in reviewing the output, whereas more focused code review up front can reduce the man hour cost significantly.

      There’s also a bunch of articles out there online about how overuse of LLMs is leading to a measurable decrease in code quality and increase in security issues in code bases.

  • fossilesque@mander.xyz
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    1 hour ago

    Treat it like a janitor rather than an answer machine and you’ll have a better time. I call it my bitch bot.

    • couch1potato@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      1
      ·
      52 minutes ago

      Or docs are far too extensive… reading imagemagick docs is like reading through some old tech wizard’s personal diary… “i was inspired to shape this spell like this because of such and such…” like, bro… come on, I just want the command, the args, and some examples… 🤷‍♂️

  • TriflingToad@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    4
    ·
    3 hours ago

    chatgpt has been really good for teaching me code. As long as I write the code myself and just ask for clarity or best practices i haven’t had any bad hallucinations.

    For example I wanted to change a character in an array with another one but it would give some error about data types that were way out of my league. Anyways apparently I needed to run list(string) first even though string[5] will return the character.

    However that’s in python which I assume is well understood due to the ton of stackoverflow questions and alternative docs. I did ask it to do something in Google docs scripting something once and it had no idea what was going on and just hoped it worked. Fair enough, I also had no idea what was going on.

    • pnutzh4x0r@lemmy.ndlug.org
      link
      fedilink
      English
      arrow-up
      6
      ·
      2 hours ago

      The reason why string[5] = '5' doesn’t work is that strings in Python are immutable (cannot be changed). By doing list(string) you are actually creating a new list with the contents of the string and then modifying the list.

      I wonder if ChatGPT explains this or just tells you to do this… as this works but can be quite inefficient.

      To me this highlights the danger with using AI… sure you can complete a task, but you may not understand why or learn important concepts.

  • ugjka@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    4 hours ago

    The only reason i use ChatGPT for some quick stuff is just that search engines suck so bad.

  • JackbyDev@programming.dev
    link
    fedilink
    English
    arrow-up
    24
    ·
    9 hours ago

    Because of I haven’t found anyone asking the same question on a search index, ChatGPT won’t tell me to just use Google or close my question as a duplicate when it’s not a duplicate.

  • surph_ninja@lemmy.world
    link
    fedilink
    arrow-up
    17
    arrow-down
    2
    ·
    9 hours ago

    Depending on the task, it’s quicker to verify the AI response than work through the blank page phase.

  • sp3ctr4l@lemmy.zip
    link
    fedilink
    arrow-up
    55
    arrow-down
    2
    ·
    edit-2
    11 hours ago

    I just tried out Gemini.

    I asked it several questions in the form of ‘are there any things of category x which also are in category y?’ type questions.

    It would often confidently reply ‘No, here’s a summary of things that meet all your conditions to fall into category x, but sadly none also fall into category y’.

    Then I would reply, ‘wait, you don’t know about thing gamma, which does fall into both x and y?’

    To which it would reply ‘Wow, you’re right! It turns out gamma does fall into x and y’ and then give a bit of a description of how/why that is the case.

    After that, I would say ‘… so you… lied to me. ok. well anyway, please further describe thing gamma that you previously said you did not know about, but now say that you do know about.’

    And that is where it gets … fun?

    It always starts with an apology template.

    Then, if its some kind of topic that has almost certainly been manually dissuaded from talking about, it then lies again and says ‘actually, I do not know about thing gamma, even though I just told you I did’.

    If it is not a topic that it has been manually dissuaded from talking about, it does the apology template and then also further summarizes thing gamma.

    I asked it ‘do you write code?’ and it gave a moderately lengthy explanation of how it is comprised of code, but does not write its own code.

    Cool, not really what I asked. Then command ‘write an implementation of bogo sort in python 3.’

    … and then it does that.

    Awesome. Hooray. Billions and billions of dollars for a shitty way to reform web search results into a coversational form, which is very often confidently wrong and misleading.

    • archomrade [he/him]@midwest.social
      link
      fedilink
      English
      arrow-up
      15
      arrow-down
      1
      ·
      7 hours ago

      Idk why we have to keep re-hashing this debate about whether AI is a trustworthy source or summarizer of information when it’s clear that it isn’t - at least not often enough to justify this level of attention.

      It’s not as valuable as the marketing suggests, but it does have some applications where it may be helpful, especially if given a conscious effort to direct it well. It’s better understood as a mild curiosity and a proof of concept for transformer-based machine learning that might eventually lead to something more profound down the road but certainly not as it exists now.

      What is really un-compelling, though, is the constant stream of anecdotes about how easy it is to fool into errors. It’s like listening to an adult brag about tricking a kid into thinking chocolate milk comes from brown cows. It makes it seem like there’s some marketing battle being fought over public perception of its value as a product that’s completely detached from how anyone actually uses or understands it as a novel piece of software.

      • antonim@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        2
        ·
        2 hours ago

        to fool into errors

        tricking a kid

        I’ve never tried to fool or trick AI with excessively complex questions. When I tried to test it (a few different models over some period of time - ChatGPT, Bing AI, Gemini) I asked stuff as simple as “what’s the etymology of this word in that language”, “what is [some phenomenon]”. The models still produced responses ranging from shoddy to absolutely ridiculous.

        completely detached from how anyone actually uses

        I’ve seen numerous people use it the same way I tested it, basically a Google search that you can talk with, with similarly shit results.

        • archomrade [he/him]@midwest.social
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 hours ago

          Why do we expect a higher degree of trustworthiness from a novel LLM than we de from any given source or forum comment on the internet?

          At what point do we stop hand-wringing over llms failing to meet some perceived level of accuracy and hold the people using it responsible for verifying the response themselves?

          Theres a giant disclaimer on every one of these models that responses may contain errors or hallucinations, at this point I think it’s fair to blame the user for ignoring those warnings and not the models for not meeting some arbitrary standard.

      • sp3ctr4l@lemmy.zip
        link
        fedilink
        arrow-up
        12
        arrow-down
        1
        ·
        edit-2
        6 hours ago

        Probably it keeps getting rehashed because people who actually understand how computers work are extremely angry and horrified that basically every idiot executive believes the hype and then asks their underlings to inplement it, and will then blame them for doing what they asked them to do when it turns out their idea was really, unimaginably stupid, but idiot executive gets golden parachute and software person gets fired.

        That, and/or the widespread proliferation of this bullshit is making stupid people more stupid, and just making more people stupid in general.

        Or how like all the money and energy spent on this is actively murdering the environment and dooming the vast majority of our species, when it could be put toward building affordable housing or renovating crumbling infrastructure.

        Don’t worry, if we keep throwing exponential increasing amounts of effort at the thing with exponentially diminishing returns, eventually it’ll become God!

        • archomrade [he/him]@midwest.social
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 hours ago

          Then why are we talking about someone getting it to spew inaccuracies in order to prove a point, rather than the decision of marketing execs to proliferate its use for a million pointless implementations nobody wants at the expense of far higher energy usage?

          Most people already know and understand that it’s bad at most of what execs are trying to push it as, it’s not a public-perception issue. We should be talking about how energy-expensive it is, and curbing its use on tasks where it isn’t anything more than an annoying gimmick. At this point, it’s not that people don’t understand its limitations, it’s that they don’t understand how much energy it’s costing and how it’s being shoved into everything we use without our noticing.

          Somebody hopping onto openAI or Gemini to get help with a specific topic or task isn’t the problem. Why are we trading personal anecdotes about sporadic personal usage when the problem is systemic, not individualized?

          people who actually understand how computers work

          Bit idea for moderators: there should be a site or community-wide auto-mod rule that replaces this phrase with ‘eat all their vegitables’ or something that is equally un-serious and infantilizing as ‘understand how computers work’.

          • sp3ctr4l@lemmy.zip
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            5 hours ago

            You original comment is posted under mine.

            I am going to assume you are responding to that.

            … I wasn’t trying to trick it.

            I was trying to use it.

            This is relevant to my more recent reply to you… because it is an anecdotal example of how broadly useless this technology is.

            I wasn’t aware the purpose of this joke meme thread was to act as a policy workshop to determine an actionable media campaign aimed at generating mass awareness of the economic downsides of LLMs, which wouldn’t fucking work anyway because LLMs are being pushed by a class of wealthy people who do not fucking care what the masses think, and have essentially zero reason at all to change their course of action.

            What, we’re going to boycott the entire tech industry?

            Vote them out of office?

            These people are on video, on record saying basically, ‘eh, we’re not gonna save the climate, not happening, might as well burn it all down even harder, even faster, for a tiny percentage chance our overcomplicated autocomplete algorithm magically figures out how to fix everything afterward’.

            And yes, I very intentionally used the phrase ‘understand how computers actually work’ to infantilize and demean corporate executives.

            Because they are narcissistic priveleged sociopaths who are almost never qualified, almost always make idiotic decisions that will only benefit themselves and an increasingly shrinking number of people at the expense of the vast majority of people who know more and work harder than they do, and who often respond like children having temper tantrums when they are justly criticized.

            Again, in the context of a joke meme thread.

            Please get off your high horse, or at least ride it over to a trough of water if you want a reasonable place to try to convince it to drink in the manner in which you prefer.

            • archomrade [he/him]@midwest.social
              link
              fedilink
              English
              arrow-up
              2
              ·
              5 hours ago

              … I wasn’t trying to trick it.

              I was trying to use it.

              Err, I’d describe your anecdote more as an attempt to reason with it…? If you were using google to search for an answer to something and it came up with the wrong thing, you wouldn’t then complain back to it about it being wrong, you’d just try again with different terms or move on to something else. If ‘using’ it for you is scolding it as if it’s an incompetent coworker, then maybe the problem isn’t the tool but how you’re trying to use it.

              I wasn’t aware the purpose of this joke meme thread was to act as a policy workshop to determine an actionable media campaign

              Lmao, it certainly isn’t. Then again, had you been responding with any discernible humor of your own I might not have had reason to take your comment seriously.

              And yes, I very intentionally used the phrase ‘understand how computers actually work’ to infantilize and demean corporate executives.

              Except your original comment wasn’t directed at corporate executives, it appears to be more of a personal review of the tool itself. Unless your boss was the one asking you to use Gemini? Either way, that phrase is used so much more often as self-aggrandizement and condescension that it’s hard to see it as anything else, especially when it follows an anecdote of that person trying to reason with a piece of software lmao.

              • sp3ctr4l@lemmy.zip
                link
                fedilink
                arrow-up
                2
                ·
                4 hours ago

                It is not that it responded “Sorry, I cannot find anything like what you described, here are some things that are pretty close.”

                It affirmatively said “No, no such things as you describe exist, here are some things that are pretty close.”

                There’s a huge difference between a coworker saying “Dang man, I dunno, I can’t find a thing like that.” and “No, nothing like that exists, closest to it is x y z,”

                The former is honest. The latter is confidently incorrect.

                Combine that with “Wait what about gamma?”

                And the former is still honest, and the latter, who now describes gamma in great detail and how it meets my requirements, is now an obvious liar, after telling me that nothing like that exists.

                If I now know I am dealing with a dishonest interlocutor, now I am forced to consider tricking it into being homest.

                Or, if I am less informed or more naive, I might just, you know, believe it the first time.

                A standard search engine that is not formatted to resemble talking to a person does not prompt a user to expect it to act like a person, and thus does not suffer from this problem.

                If you don’t find what you’re looking for, all that means is you did not find it.

                If you are told that no such thing exists, a lot of people are going to believe that no such thing exists.

                That is typically called spreading disinformation, when the actor knows what they are claiming is false.

                Its worse than unhelpful, it actively spreads lies.

                Anyway, I’m sorry that you don’t see humor in multi billion dollar technology failing at achieving its purported abilities, I laugh all the time at poorly designed products, systems, things.

                Finally, I did not use the phrase in contention in my original post.

                I used it in my response to you, specifically and only within a single sentence which revolved around incompetent executives.

                It appears that reading comprehension is not your strong suit, maybe you can ask Gemini about how to improve it.

                Err, well, maybe don’t do that.

                • archomrade [he/him]@midwest.social
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  3 hours ago

                  reading comprehension

                  Lmao, there should also be an automod rule for this phrase, too.

                  There’s a huge difference between a coworker saying […]

                  Lol, you’re still talking about it like it’s a person that can be reasoned with bud. It’s just a piece of software. If it doesn’t give you the response you want you can try using a different prompt, just like if google doesn’t find what you’re looking for you can change your search terms.

                  If people are gullible enough to take its responses as given (or scold it for not being capable of rational thought lmao) then that’s their problem - just like how people can take the first search result from google without scrutiny if they want to, too. There’s nothing especially problematic about the existence of an AI chatbot that hasn’t been addressed with the advent of every other information technology.

    • pyre@lemmy.world
      link
      fedilink
      arrow-up
      5
      ·
      7 hours ago

      copilot did the same with basic math. just to test it I said “let’s say I have a 10x6 rectangle. what number would I have to divide width and height by, in order to end up with a rectangle that’s half the area?”

      it said “in order to make it half, you should divide them by 2. so [pointlessly lengthy steps explaining the divisions]”

      I said “but that would make the area 5x3 = 15 units which is not half the area of 60”

      it said “you’re right! in order to … [fixing the answer to √2 using approximation”

      I don’t know if I said it then, or after some other fucking nonsense but when I said “you’re useless” it had the fucking audacity to take offense and end the conversation!

      like fuck off, you don’t get to have fake pride if you don’t have basic fake intelligence but use it in your description.

      • sp3ctr4l@lemmy.zip
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        6 hours ago

        Its a perfect encapsulation of the corpo mindset:

        Whatever I do is profound, meaningful, with endless possibilities for future greatness…

        … even though I’m just talking out of my ass 99% of the time…

        … and if you have the audacity, the nerve, to have a completely normal reaction when you determine that that is what I am doing, pshaw, how uncouth, I won’t stand for your abuse!

        They’ve done it. They’ve made a talking (not thinking) machine in their own image.

        And it was not good.

        You start a conversation you can’t even finish it You’re talkin’ a lot, but you’re not sayin’ anything When I have nothing to say, my lips are sealed Say something once, why say it again?

        Psycho Killer Qu’est-ce que c’est

    • UnderpantsWeevil@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      6 hours ago

      Cool, not really what I asked. Then command ‘write an implementation of bogo sort in python 3.’

      … and then it does that.

      Alright, but… it did the thing. That’s a feature older search engines couldn’t reliably perform. The output is wonky and the conversational style is misleading. But its not materially worse than sifting through wrong answers on StackExchange or digging through a stack of physical textbooks looking for Python 3 Bogo Sort IRL.

      I agree AI has annoying flaws and flubs. And it does appear we’re spending vast resources doing what a marginal improvement to Google five years ago could have done better. But this is better than previous implementations of search, because it gives you discrete applicable answers rather than a collection of dubiously associated web links.

      • sp3ctr4l@lemmy.zip
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        5 hours ago

        But this is better than previous implementations of search, because it gives you discrete applicable answers rather than a collection of dubiously associated web links.

        Except for when you ask it to determine if a thing exists by describing its properties, and then it says no such thing exists while providing a discrete response explaining in detail how there are things that have some, but not all of those properties…

        … And then when you ask it specifically about a thing you already know about that has all those properties, it tells you about how it does exist and describes it in detail.

        What is the point of a ‘conversational search engine’ if it cannot help you find information unless you already know about said information?!

        The whole, entire point of formatting it into a conversational format is to trick people into thinking they are talking to an expert, an archivist with encyclopedaeic knowledge, who will give them accurate answers.

        Yet it gatekeeps information that it does have access to but omits.

        The format of providing a bunch of likely related links to a query is a format much more reminiscent of doing actual research, with no impression that you will immediately find what you want right away, that this is a tool to aide you in your research process.

        This is only an improvement if you want to further unteach people how to do actual research and critical thinking.

        • UnderpantsWeevil@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 hours ago

          Except for when you ask it to determine if a thing exists by describing its properties

          Basic search can’t answer that either. You’re describing a task neither system is well equipped to accomplish.

          • sp3ctr4l@lemmy.zip
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            7 minutes ago

            With basic search, it is extremely obvious that that feature does not exist.

            With conversational search, the search itself gaslights you into believing it has this feature, as it understands how to syntactically parse the question, and then answers it confidently with a wrong answer.

            I would much rather buy a car that cannot fly, knowing it cannot fly, than a car that literally talks to you and tells you it can fly, and sometimes manages to glide a bit, but also randomly nose dives into the ground whilst airborne.

    • taladar@sh.itjust.works
      link
      fedilink
      arrow-up
      8
      ·
      11 hours ago

      And then more money spent on adding that additional garbage filter to the beginning and the end of the process which certainly won’t improve the results.

  • Kushan@lemmy.world
    link
    fedilink
    English
    arrow-up
    12
    ·
    9 hours ago

    They don’t give you the answer, they give you a rough idea of where to look for the answer.

    I’ve used them to generate chunks of boilerplate code that was 80% of what I needed, because I knew what I needed and wanted to save time.

      • wizardbeard@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        12 minutes ago

        Yep. The overwhelming majority of IDEs have support for making templates/snippets.

        VScode/VScodium has a very robust snippet system where you can set parts as “fill in the blank” that you can tab between, with optional drop down menus for choices. You can even link different “fill in” sections so you can do stuff like type in an argument name and have it propagate that same name through multiple places in your snippet.

        If that’s too much, how the fuck can any dev (or even someone hacking together scripts) survive without at least one file of common shit they made before that they can copy paste from? I really feel like that’s bare minimum.

        Either it’s boilerplate you can already copy from somewhere else (documentation or previous work), or it’s something you should probably review (at least briefly) and make into a template or snippet you can copy and paste later. That’s part of the magic of programming: you get to build your own toolbox over time.

    • RagingRobot@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      2 hours ago

      Depends. I asked it to add missing props to a react component just yesterday and it generated a bunch of code that looked pretty good but then I discovered it just made up some props that didn’t even exist and passed those in too lol. Like wtf that’s super annoying. I guess it still saved me time though.

  • Nurse_Robot@lemmy.world
    link
    fedilink
    arrow-up
    22
    arrow-down
    5
    ·
    11 hours ago

    sigh people do talk about this, they complain about it non-stop. These same people probably aren’t using it as intended, or are deliberately trying to farm a “gotcha” response. AI is a very neat tool which can do a lot of things well, but it’s important to recognize its limitations. I don’t use it for things I don’t understand because I won’t recognize if it’s spitting out nonsense, but for topics I do understand it’s hard to overstate how efficient and time saving it is.

    • ByteOnBikes@slrpnk.net
      link
      fedilink
      English
      arrow-up
      14
      ·
      9 hours ago

      The FuckAI people are valid for their concerns.

      Unfortunately, their anger seems to constantly be misdirected at the weirdest things, instead of root issues.

      • brucethemoose@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        3 hours ago

        My take is they should be fighting the corporate API vs open source models war, instead of just “screw all AI” which really means “screw open source AI and let Sam Altman enshittify everything”

        Especially on Lemmy.

        It’d be like blanket railing against social media and ultimately getting the Fediverse banned, while Facebook and X walk away.

      • taladar@sh.itjust.works
        link
        fedilink
        arrow-up
        4
        ·
        9 hours ago

        Oh, there is plenty of hate for the hype cycle in general which is about as close to the root of the issue as you can get.

    • zarkanian@sh.itjust.works
      link
      fedilink
      arrow-up
      6
      ·
      9 hours ago

      “Give me a vegan recipe using <ingredient>” has been flawless. The recipes are decent, although they tend to use the same spices over and over.

    • Paradigm_shift@sh.itjust.works
      link
      fedilink
      arrow-up
      4
      ·
      9 hours ago

      I sometimes use it to “convert” preexisting bulletpoints or informal notes into a professional sounding business email. I already know all the information so proofreading the final product doesn’t take a lot of time.

      I think a lot of people who shit on AI forget that some people struggle with putting their thoughts into words. Especially if they aren’t writing in their native language.

  • glitchdx@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    8 hours ago

    in my use case, the hallucinations are a good thing. I write fiction, in a fictional setting that will probably never actually become a book. If i like what gpt makes up, I might keep it.

    Usually, I’ll have a conversation going into detail about a subject, this is me explaining the subject to gpt, then having gpt summarize everything it learned about the subject. I then plug that summary into my wiki of lore that nobody will ever see. Then move on to the next subject. Also gpt can identify potential connections between subjects that I didn’t think about, and wouldn’t have if it didn’t hallucinate them.

  • 1stTime4MeInMCU@mander.xyz
    link
    fedilink
    English
    arrow-up
    74
    arrow-down
    5
    ·
    16 hours ago

    I’m convinced people who can’t tell when a chat bot is hallucinating are also bad at telling whether something else they’re reading is true or not. What online are you reading that you’re not fact checking anyway? If you’re writing a report you don’t pull the first fact you find and call it good, you need to find a couple citations for it. If you’re writing code, you don’t just write the program and assume it’s correct, you test it. It’s just a tool and I think most people are coping because they’re bad at using it

    • BluesF@lemmy.world
      link
      fedilink
      arrow-up
      16
      arrow-down
      9
      ·
      16 hours ago

      Yeah. GPT models are in a good place for coding tbh, I use it every day to support my usual practice, it definitely speeds things up. It’s particularly good for things like identifying niche python packages & providing example use cases so I don’t have to learn shit loads of syntax that I’ll never use again.

      • Aceticon@lemmy.world
        link
        fedilink
        arrow-up
        30
        arrow-down
        4
        ·
        12 hours ago

        In other words, it’s the new version of copying code from Stack Overflow without going to the trouble of properly understanding what it does.

        • archomrade [he/him]@midwest.social
          link
          fedilink
          English
          arrow-up
          3
          ·
          6 hours ago

          The usefulness of Stack Overflow or a GPT model completely depends on who is using it and how.

          It also depends on who or what is answering the question, and I can’t tell you how many times someone new to SO has been scolded or castigated for needing/wanting help understanding something another user thinks is simple. For all of the faults of GPT models, at least they aren’t outright abusive to novices trying to learn something new for themselves.

          • Aceticon@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            1 hour ago

            I fully expect an LLM trained in Stack Overflow is quiet capable of being just as much of an asshole as a Stack Overflow user.

            Joke on the side, whilst I can see that “not going to the trouble of understanding the code you got” is mostly agnostic in terms of the source being Stack Overflow or an LLM (whilst Stack Overflow does naturally have more context around the solution, including other possible solutions, an LLM can be interrogated further to try and get more details), I think only time will tell if using an LLM model ultimately makes for less well informed programmers than being a heavy user of Stack Overflow or not.

            What I do think is more certainly, is that figuring out a solution yourself is a much better way to learn that stuff than getting it from an LLM or Stack Overflow, though I can understand that often time is not available for that more time consuming method, plus that method is an investment that will only pay if you get faced with similar problems in the future, so sometimes it’s simply not worth it.

            The broader point I made still stands: there is a class of programmers who are copy & paste coders (no idea if the poster I originally replied to is one or not) for whom an LLM is just a faster to query Stack Overflow.

            • archomrade [he/him]@midwest.social
              link
              fedilink
              English
              arrow-up
              1
              ·
              1 hour ago

              There will always be a class of programmers/people that choose not to interrogate or seek to understand information that is conveyed to them - that doesn’t negate the value provided by tools like Stack Overflow or chatGPT, and I think OP was expressing that value.

        • BluesF@lemmy.world
          link
          fedilink
          arrow-up
          5
          arrow-down
          1
          ·
          8 hours ago

          I know how to write a tree traversal, but I don’t need to because there’s a python module that does it. This was already the case before LLMs. Now, I hardly ever need to do a tree traversal, honestly, and I don’t particularly want to go to the trouble of learning how this particular python module needs me to format the input or whatever for the one time this year I’ve needed to do one. I’d rather just have something made for me so I can move on to my primary focus, which is not tree traversals. It’s not about avoiding understanding, it’s about avoiding unnecessary extra work. And I’m not talking about saving the years of work it takes to learn how to code, I’m talking about the 30 minutes of work it would take for me to learn how to use a module I might never use again. If I do, or if there’s a problem I’ll probably do it properly the second time, but why do it now if there’s a tool that can do it for me with minimum fuss?

        • Rekorse@sh.itjust.works
          link
          fedilink
          arrow-up
          7
          arrow-down
          4
          ·
          11 hours ago

          Pft you must have read that wrong, its clearly turning them into master programmer one query at a time.