Many Gen Z employees say ChatGPT is giving better career advice than their bosses::Nearly half of Gen Z workers say they get better job advice from ChatGPT than their managers, according to a recent survey.

  • Rikudou_Sage@lemmings.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    11 months ago

    Well, I don’t have any experience asking it for career advice, but I have worked with it quite a bit and it’s quite shitty once you get to anything that starts resembling complexity. This is definitely not a tool I’d go to for any advice beyond the simplest ones.

    • TempermentalAnomaly@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      11 months ago

      I actually wonder if that’s a benefit for young people just starting out on their career journey. It’s mostly about feelings and a general sense and not specific opportunities to advance a career. In a lot of ways, a well established manager whose from another generation is not in time with those feelings and the difficulties with navigating them in a complex corporate environment.

    • kromem@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      arrow-down
      1
      ·
      11 months ago

      There’s something to be said for the abilities of a tool reflecting its wielder.

      In research circles, the most advanced pipelines in terms of prompting have a 90% success rate at things the same model only gets right around 30% of the time with naive zero shot prompting.

      At a minimum, people should be familiar with chain of thought prompting if using the models. That one is very easy to incorporate and makes a huge difference on complex problems.

      Though for anyone actually building serious pipelines for these products, the best technique I’ve seen to date was this one from DeepMind:

      We introduce SELF-DISCOVER, a general framework for LLMs to self-discover the task-intrinsic reasoning structures to tackle complex reasoning problems that are challenging for typical prompting methods. Core to the framework is a self-discovery process where LLMs select multiple atomic reasoning modules such as critical thinking and step-by-step thinking, and compose them into an explicit reasoning structure for LLMs to follow during decoding. SELF-DISCOVER substantially improves GPT-4 and PaLM 2’s performance on challenging reasoning benchmarks such as BigBench-Hard, grounded agent reasoning, and MATH, by as much as 32% compared to Chain of Thought (CoT). Furthermore, SELF-DISCOVER outperforms inference-intensive methods such as CoT-Self-Consistency by more than 20%, while requiring 10-40x fewer inference compute. Finally, we show that the self-discovered reasoning structures are universally applicable across model families: from PaLM 2-L to GPT-4, and from GPT-4 to Llama2, and share commonalities with human reasoning patterns.

      So yes, maybe you aren’t getting a lot out of the models. But a lot of people are, and the difference between your experiences and theirs may just boil down to experience in using the tool. If I just started using Photoshop for an hour or two I might complain about how the software sucks at making good looking images. But we both know it wouldn’t be the software’s fault.

      • Rikudou_Sage@lemmings.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        11 months ago

        Well, one more comment like that and I guess I’m gonna have to edit my original comment, because I don’t want to explain again. I’m getting quite a lot out of LLMs (GPT-4, to be specific), it’s just that they’re very stupid. When they don’t straight up lie, they don’t know stuff. It’s quite simple, really, I usually deal with very complex problems that few people dealt with, the AI has (close to) no data on that, so it runs in circles and is not able to help.

        But when presented with questions that it has training data on, it’s brilliant - recently I needed to use reflection to get all types implementing an interface in .NET with the caveat that the interface is generic. GPT-4 was able to solve that problem 3rd message in the conversation, while I’m pretty sure it would take me hours, because I’d need to learn a lot of .NET’s internal workings before arriving at the quite simple solution.

        So, a good career advice - which one do you feel like it is? A simple question with a straight correct solution, or a complex and nuanced issue where there isn’t one general truth? Because the only correct answer to a request for career advice by someone who doesn’t know your situation extensively is (a version of) “I don’t know, what’s your situation in detail?”. Knowing GPT, it didn’t ask that question.

        So yes, LLMs are great! Just learn which use-cases it excels at and don’t ask it for complex advice.

    • 𝚐𝚕𝚘𝚠𝚒𝚎@h4x0r.host
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      2
      ·
      11 months ago

      Surprisingly, I’ve had the opposite effect. Wherein, it has increased my productivity by tenfold and has helped with code review and/or confirming various logic, etc. Although, I wouldn’t necessarily take what it tells me as gospel from a recommendation standpoint in terms of my career as a whole. I’ve definitely caught it numerous times being wrong, but the inaccuracies pale in comparison to what it gets right, imo.

      • Rikudou_Sage@lemmings.world
        link
        fedilink
        English
        arrow-up
        0
        arrow-down
        1
        ·
        11 months ago

        Don’t get me wrong, it saved me a ton of time. Just recently I needed some coding help that would probably take me hours of searching. Doesn’t mean I’d trust it with advice, that’s something entirely different than spitting out code that works half of the time.

          • Passerby6497@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            11 months ago

            That’s my biggest issue with AI. I’ve tried using it to help me code and it’s a way more often than not. It’s great for doing find/replace or guessing what I want a function to do and giving me a skeleton that I can change to do what I want. But anytime I try to do something a bit advanced, it chokes.

            Like this week I needed help with a regex match pattern, and it straight up gave me wrong code multiple times in a row. And not even multiple wrong answers, the same goddamned wrong answer 3 or 4 times in a row.

          • 7fb2adfb45bafcc01c80@lemmy.world
            link
            fedilink
            English
            arrow-up
            0
            ·
            11 months ago

            Same here. The most I get out of might be a pointer to a module that could be a better approach, but the code I get from ChatGPT is usually worthless.

            I treat it as my water cooler talk, and maybe I’ll come away with a few new ideas.