263 comments

  • exabrial 2 hours ago

    For those of us who lived through the "Offshoring" Craze of the mid-2000s, this has the exact same arc.

    Corp CEOs / CFOs golf buddies coouldn't stop yapping about how much they saved paying people less by offshoring. So step 1, they fire a bunch of people and send work overseas, driving up their financial metrics for 5-6 quarters until their staff and their organization finally break at stage 2. Turns out cultural and communication barriers are things we haven't really figured out how to communicate across efficiently, and that only a handful of people are truly rockstars at it; others just aren't cut out for it. Stage 3 anyone that is competent to get another job already left, leaving a smoldering shell of company that dies by attrition at stage 5.

    • mathattack 17 minutes ago

      You’ve hit on a big reason - short term gains. The partners at Accenture, Infosys and the rest circle the execs at old industry companies. The companies start performing worse, though nothing some accounting gimmicks can’t cover. Then they have a very bad quarter, enough that it will ruin their fiscal year. Fingers start pointing, and talk turns to “belt tightening” and “turning fixed costs to variable.” All of a sudden the proposals from Big Consulting that provide savings bankable this fiscal year sound very good.

      It doesn’t take long for the cracks to show:

      - Not enough program/project management.

      - An intuition that service dropped but no good metrics.

      - Retrain the outsourcers after the first team quit.

      - Inability to size new projects.

      - Shadow IT departments form in the business units.

      - The outsourcers don’t care about things like vendor consolidation or holding other vendors feet to the fire.

      All of this might still be worth it if it’s done strategically to improve a chronically underperforming IT department. It’s rarely effective when rushed to cover up poor performance of the core business.

    • calgoo 2 hours ago

      This is still going on, just that they try to keep a few internal tech people. The problem is the incentive for the internal people to stay as they, in theory, should not be making any changes just help out.

    • graemep 25 minutes ago

      The solution is clearly to use an AI to communicate across cultural barriers. It can do translation too so your offshore workforce does not even need to speak your language which will cut costs even more. /s

  • Sanzig 2 hours ago

    Setting aside how shortsighted it is to fire your employees to replace them with AI, Ford also screwed up by firing the wrong employees. LLMs work best in the hands of experienced senior engineers who can work at a high level of abstraction because they already understand all the pieces underneath.

    In a sense, using an LLM agent is like providing instructions to a very smart, very quick junior who despite being brilliant has some blind spots and lacks institutional knowledge. That's something that seniors excel at, so by firing your seniors you've fired the people best positioned to make full use of LLMs.

    • Legend2440 2 hours ago

      Who says Ford fired any employees? The article doesn't.

      • avgDev 2 hours ago

        "Ford rehires 350 engineers after AI fails to preserve expertise or train juniors" In order to rehire someone they must laid off or fired? You don't rehire new employees?

        • Legend2440 2 hours ago

          Farther down it clarifies that only some of them were former employees, and others were poached from other companies:

          >Over the last three years, Ford says it has hired 350 veteran engineers, many of them former employees and others from suppliers

          And not all former employees were laid off. Senior 'greybeards' have many job opportunities elsewhere and often leave for better offers.

      • foxyv 2 hours ago

        I think most of them were losses by attrition. Where they don't replace lost employees. That's usually the preferred method of downsizing if you can get away with it.

  • alanwreath 3 hours ago
    • stogot 2 hours ago

      We need every outlet to cover this more

      • lysace 2 hours ago

        Who is we? Are you mistaking this for an activist platform?

        • vvpan 33 minutes ago

          Humans?

          • lysace 29 minutes ago

            Ford isn't run by humans?

  • WarmWash 2 hours ago

    Ford has hired 350 engineers over the last 3 years which happened alongside short comings in using AI inspection tooling.

    This has nothing to do with LLMs and instead is almost certainly about their MAIVIS and AiTriz pilots, which use old school CNNs on custom IBM hardware to do visual inspections.

    • mrandish an hour ago

      Yes, it seems like many are missing the crucial aspect of the timing. The mistake was realized 3 years ago and auto design and manufacturing process lead times are long. Plus the occasion for the story was 'Ford returning to the top of the JD Power Quality Survey rankings', so that's another 6-18 months of reporting lag. That puts the original layoff mistakes being made 5 to 8 years ago.

      I don't know when the "MAIVIS and AiTriz pilots" you mention were implemented but another possibility is the Ford PR team saw that 'AI Backlash' stories are currently trending and opportunistically focused on that to explain a positive news event which likely had many causes. IMHO, we should view these 'AI Backlash' themed stories as no more valid than the 'AI Downsizing' themes they previously seized on to justify layoffs they wanted to do anyway.

      • cucumber3732842 44 minutes ago

        >Yes, it seems like many are missing the crucial aspect of the timing.

        First day on the internet propaganda-discourse machine?

        If the article doesn't support your preconceived biases that's no problem, assume the title is true on it's face and comment reinforcing it. If neither of them support you then attack them. Welcome to internet comment sections.

    • dang 26 minutes ago

      Submitted title was "Ford rehires 350 engineers after AI fails to preserve expertise or train juniors", which is not what the article says.

      Submitters: "Please submit the original source. If a post reports on something found on another site, submit the latter." - https://news.ycombinator.com/newsguidelines.html

      (We've reverted to the article's title now)

      p.s. Article titles are sometimes rotated by the publications, in which case the submitter usually followed the guidelines but it takes time for us to catch up.

    • Schiendelman an hour ago

      Yeah, it looks like this wasn't AI related. I hope yours grows to be the top comment!

  • reactordev 3 hours ago

    This is going to be the norm across the board as the models have failed to live up to the hype.

    I do think LLMs and agents and all are great at helping you through tough problems but we aren’t there yet on getting them to do all the work while we just architect and design. Again, it’s close, and for your use cases you might be there already but for low level and big corporate lift and shifts, it’s not there yet.

    I have agents, agents of agents, and I still find myself having to carve big chunks of my project off and feed it to the dogs because it’s garbage code. (GLM-5.2)

    • K0balt 2 hours ago

      Documentation driven development is your friend here. 75% of my workflow is generating documentation, at ever lower levels of abstraction, until it’s just code. The code usually comes out optimal, clean, and bug free (after passing tests) and. Suuuuuper well documented lol.

      It’s human in the loop over and over again tho

      • KronisLV 2 hours ago

        > 75% of my workflow is generating documentation, at ever lower levels of abstraction, until it’s just code

        Some might hate that writing code (which they enjoy) is turning into that, others might doubt the efficacy of doing that and the claims about it working so well.

        Personally, I’d say that docs help as long as they’re meaningful and not too long (even AI tools have limited context), but you probably also want to codify what you can into code.

        For example I wrote a tool in Go and goja called ProjectLint (not public yet but anyone can do that in a week) where you write custom rules in regular ECMAScript that can check whatever you want - code conventions across languages, project structure and architecture and all the stuff that goes under “In this project, we do X but don’t do Y” that just telling an LLM about (or colleagues) will be worth nothing (even memories and focus are limited), instead CI gates that.

        I guess I reinvented a simplified and stack-agnostic version of ArchUnit but whatever, it works for me and I can use the same tool in Python and Java projects and elsewhere as well as parallelize all the read only checks and run sequentially the potential-write ones that might auto-fix stuff.

        • K0balt an hour ago

          I’m sure it depends on the project, stack, and dev. I know loc is a terrible metric, but …

          For me, my human only productivity in the firmware work I do is usually around 100-500 loc a day on good days. Obviously more when clean-slating the initial work on a project , but that’s typically a day or two and the same ratios apply.

          With ai tools, I roughly 4x that with the same effort, or 2x it working lazily from my phone playing with my 2 year old.

          The code is typically also more compact so the LOC metric is strong here IMHO.

          Overall I have about the same number of bad-unproductive days, far less bugs (but worse bug hunts) and 10x better documentation lol.

          Coding is definitely a different job though.

      • ufmace 35 minutes ago

        I tend to feel like, I start out with a rough idea of a program I want to write in my head. I find it easier to just write the code directly than to write a document with sufficient detail about how I want it to work for an LLM to actually write the right code, then have the LLM write the code. And the resulting documentation is about as likely to be useless or a burden as it is to be helpful in the future.

        • K0balt 30 minutes ago

          You don’t write the doc. You talk to the LLM about the idea and the anchor points, and have it write the doc.

  • freeopinion an hour ago

    I have a simple mind. I think of a company with 100 employees building a dozen houses at a time. That company could replace a six-person framing crew with a two-person, one-robot team as an experiment. They could do various experiments to see if there was a better option here. It would be at the expense of four employees.

    A company with 1000 employees that builds 100 houses at a time might cut a dozen employees to create three robot crews. A 10,000-employee company that builds 1000 houses at a time would still only need to experiment with a handful of crews, affecting only 20-30 or so employees.

    I marvel that a company has let themselves grow so out of touch with their business that they can't understand the impact of changes without carnage at this scale.

  • jayanaka98 2 hours ago

    The reason AI fails in Industry is that SKILL.md or other knowledge-injection methods do not guarantee compliance. AI just thinks it "knows better".

    • Tade0 2 hours ago

      A friend of mine prepared an arsenal of hooks and the like to address this and LLMs still disobey them at times.

      I don't have high hopes that there exists a bulletproof solution to this.

      • Kiln6125 2 hours ago

        Personally, for me that represents job security. Having a human with a high level of domain knowledge in the loop seems pretty required to get any meaningful results.

      • dominotw 24 minutes ago

        solution is to always do what it has seen in training data and how it was RL. But ai companies dont tell you that. so you have to reverse engineer its training and stick to to that.

        These are no general purpose machines. They are shipping a subset mindset not general intelligence like they want us to belive .

    • steve1977 2 hours ago

      Not sure if this was ironic. I guess it mainly fails because a lot of knowledge and experience is intuitive and not codified.

    • contravariant 2 hours ago

      If compliance was the main issue we wouldn't have had to invent ways for computers to do something other than exactly what they were asked.

      • bigstrat2003 2 hours ago

        We didn't have to do that. It is, in fact, extremely stupid that we have done that. Computers are valuable because they are fast and deterministic. Fast but stochastic has no value.

        • teiferer 2 hours ago

          > Fast but stochastic has no value.

          He valuations of a bunch of AI unicorns disagree.

          • nekusar an hour ago

            Its all about a longshot gamble to replace workers and wages.

  • foxyv 2 hours ago

    There are two kinds of knowledge. There is explicit knowledge which can be codified easily in markdown files or a wiki. Then there is tacit knowledge which is mostly encoded in the experience of an organization's individuals. Explicit knowledge is like the tip of a giant institutional knowledge iceberg.

    • thewebguyd an hour ago

      And that tacit knowledge doesn't have easily quantifiable value, it doesn't show up on the P&L so most execs don't consider it. I've seen it time and time again over my career, someone leaves or layoffs happen without considering this and then the company is scrambling to figure out processes that someone was quietly running or maintaining for years that no one else even thought of.

    • HPsquared 2 hours ago

      Maybe they could use a distillation process. Have the AI prompt the senior engineers repeatedly (don't do this). Like squeezing the oil from olives!

      • foxyv a minute ago

        I think that this is doable. Similar to having a new employee shadow a more experienced one and observe, you could implement a sort of program where AI shadows experienced employees and asks questions when they do something it doesn't understand.

        But this is difficult to implement since AI doesn't have a body to follow someone around and it would take immense amounts of compute to do so using telemetry and cameras. You would literally be spying on employees 24x7 for weeks at a time with the express goal of replacing them someday.

      • bobson381 2 hours ago

        One of my favorite pieces of writing on this topic

        https://books.worksinprogress.co/book/maintenance-of-everyth...

  • vasac 2 hours ago

    The first attempt failed, so they caved in, but they’ll try again after a while and lay those people off again.

    • shimman 2 hours ago

      The dream of perpetual labor machine is something capitalists are willing to destroy the planet in order to chase their fictitious dream. Oppressors must be stopped.

      • Legend2440 2 hours ago

        Don't talk like a perpetual labor machine wouldn't be awesome if you had it.

        You just want to make sure you have it, and not your boss using it against you.

        • shimman an hour ago

          There was a reason why the phrase "perpetual" was used, to invoked how unrealistic perpetual energy machines are and how futile it is for the human race to chase such dreams.

          How many tens of trillions of capital have been incinerated in reducing the quality of life for workers compared to actually uplifting them?

      • vvpan 31 minutes ago

        Steer towards that Fully-Automated Luxury Communism.

  • jmartrican 2 hours ago
  • moomin 2 hours ago

    I feel like "Company ditches staff in favour of AI" stories currently fit into two categories 1) The CEO is actually ditching staff for other reasons like falling revenue, but "going AI first" sounds a lot better 2) The CEO is making a mistake.

    • bonesss 2 hours ago

      My speculation is straightforward: adding “AI” to the sticker ups the share price, dropping headcount improves the balance sheets upping the share price, and doing both at once could be perfect for a CEO bonus or strategic board member sell off.

  • jhack an hour ago

    This is going to happen more and more. AI is a tool that should make your employees more efficient not replace them outright. And if it doesn't make your employees better? I guess AI isn't applicable to your business then.

    I can see a lot of companies coming to this realization over the coming months and years.

  • breakpointalpha 2 hours ago

    US software engineers need a union.

    If I hadn't already landed a job somewhere else, I would only return with a 20% pay bump and an iron-clad contract.

    • groundzeros2015 an hour ago

      This is a boom and bust industry. Projects come and go and only to a lesser extent if you work at a software company.

      I would recommend IT/server administration as that is a constant business need, if you prefer stability with more limited upside.

    • d_silin an hour ago

      This should be way higher.

  • meerita 2 hours ago

    This is excellent news. I'm glad some executives are starting to understand that AI will never replace an engineer with knowledge. AI is just a tool that needs guidance. If they put people without knowledge in charge of the machine gun, they will never be able to hit any target. Junior and mid-level engineers will never become super engineers by telling AI, "Just do this."

  • namuol an hour ago

    Over-hiring during the bygone era of free money is now seeing an overcorrection. AI is a true if small part of it, but mainly it’s an excuse that doubles as posturing to the investor hive-mind.

  • small_model 2 hours ago

    AI is a great revolutionary tool for work, but it is still a tool and needs humans to drive it. Obviously companies heard the promise of "Replace your large headcount expense with cheap tokens" and creamed their pants. Its funny to see them walk back, it will be at least a few years if not more before it replaces humans fully (and will need another breakthrough)

    • bwfan123 33 minutes ago

      Back in dot-com, there used to be a website called f'ed company that chronicled the dot-com dead pool. This time around there needs to be a similar website that records AI walk backs so it helps the mgmt class not make stupid decisions.

  • random3 an hour ago

    (shooting from the hip) What if the 350 engineers had built a company instead? Union-like efforts could focus on creating new companies (having the "union" is about ensuring a certain level of organizational knowledge, like YCombinator creates a structure around startups)

    I think companies would more careful about how fast and lose they operate, if firing may mean having to contract with a 3rd party.

  • niko323 an hour ago

    Yeah, but they are short-term re-hires. Once they "get encoded" it will be bye Felica: "Ford just wants to first seasoned engineers walked out before their decades of knowledge could be encoded into automated workflows." https://www.gadgetreview.com/ford-fired-its-best-engineers-l...

  • I_dream_of_Geni an hour ago

    Oh grand! And I bet that these rehires are going to be FULLY emotionally invested and fully loyal for the future. just stupid all the way around...

  • GL26 2 hours ago

    Problem with thinking you can replace your employees with AI, this is not the case. This is like thinking you could replace your NASA engineers with IBM computers in the 60s. The AI revolution changes drastically the way people work, and empower them, they multiply their productivity, but they never ever replace domain expertise, and business logic.

  • mathattack an hour ago

    Interesting as companies like Ford like to show they’re on the leading edge of AI, but do they really have the capabilities and 10x engineers?

  • draginol 2 hours ago

    This is what we are finding a lot with the "AI normies". Because the AI responses are so confident new users of it think it must be correct.

    AI is confidently wrong a lot. And so you can imagine a lot of execs thinking the AI can do a lot more than it really can.

  • khriss 2 hours ago

    Interestingly, there were no consequences for the execs that made this 'mistake'. There seems to be almost unlimited cover for execs cargo culting on using AI as a pretext for layoffs. If it doesn't implode almost immediately, they get massive bonuses, if it blows up in their face, oh well they had the courage to 'take a bold strategic decision'

    In other words, they don't really have a plan, but they are happy playing with people's lives via layoffs, since it's the 'in' thing to do. The incentives are huge on the upside and zero on the downside for them.

    • jm4 an hour ago

      Generally, you don’t want to punish people for making decisions. At least I don’t. I value people who are willing to try things and I generally believe any decision made in good faith is better than no decision. My litmus test is was it a reasonable decision given the information available at the time in service of a greater goal. I can live with the consequences of that. If it turns out to be a not so great decision then we can fix it. I’m not going to fire someone for the result when the process was sound.

      That said, this application of AI was profoundly stupid from the outset. You don’t necessarily fire people for a bad result from a reasonable decision making process, but you do fire them for poor judgment and reasoning. There’s nothing that can fix that except for not letting those people make decisions anymore.

      • asveikau an hour ago

        Even from the selfish perspectives of these executives, it can be quite bad to isolate people from the consequences of bad decisions. It will prevent learning from mistakes, and lead to more bad decisions.

        Which I guess is getting at another thing. The failure was predictable. People shouldn't be rewarded for failing to avoid obvious predictable failures. Maintaining their status quo could also be seen as rewarding them.

        • toomuchtodo 33 minutes ago

          If you're unwilling to fall on your sword and face material consequences for decisions that cause quantifiable harm the people who work for you or your customers, you do not belong in a leadership position imho, but that isn't where we are today. The people making these decisions will face no consequences for the harm they cause. Its likely they continue to be employed and receive generous compensation.

          Workers get fired when they are wrong at much smaller scale, why not these people? They are not special, they are simply lucky and connected.

          https://news.ycombinator.com/item?id=42639566 ("Pharaoh must signal, to shareholders, to a board, and to their peers. There will be no consequences for failure to adhere to this proclamation.")

          Salesforce will hire no more software engineers in 2025, says Marc Benioff - https://news.ycombinator.com/item?id=42639417 - January 2025 (390 comments)

          https://www.salesforce.com/company/careers/jobs/?search=soft... (724 results, as of this comment)

      • alpha_squared an hour ago

        While I agree that you don't want to punish people for making bad decisions, I do think there should be a carveout for when those decisions impact people's lives.

        • Forgeties79 11 minutes ago

          Yeah they didn’t like… migrate them to bad software they had to undo or something. They laid off hundreds of people due to overhyped products/trend chasing.

      • markus_zhang 41 minutes ago

        IMO that’s what used to be “accountability”, especially for decision makers.

      • barkerja 33 minutes ago

        It's easy to take that stance in jest .. when it has no material impact on you. But if your life was uprooted by the decision of an executive because they made what was a "good faith" decision for the benefit of the shareholder, then I'd wager you may feel differently.

      • dominotw 35 minutes ago

        > Generally, you don’t want to punish people for making decisions.

        riff-raff cogs get fired for making bad decisions all the time. also if not punished for making decisions. how do execs ever get punished because all they do is make decisions.

      • mothballed an hour ago

        Society is incredibly inconsistent on this point. If a CEO shit-cans 500 people who sacrificed future career prospects for the company and end up destitute, society say's that's capitalism and they need to learn to code in a month or something. If a stay at home wife gets "bored" and divorces her husband of 20 years, he commonly owes her a decade+ of alimony to "make up for the sacrifice and time to get on her feet" or some such.

        As usual it's communism for the plebs and something entirely different for the capital wielding class.

        • boplicity 29 minutes ago

          A job doesn't usually involve a lifetime contract. And if it does, the severance required had better be incredible.

          Nobody should "sacrifice future career prospects" just for a job. And if they do, it's hard to blame the employer on this, especially considering the premise implies they had choice in the matter.

          • mothballed 26 minutes ago

            I'm not sure how on earth you could consider marriage a lifetime contract when it's no-fault divorce at any second. The divorce process is at-will, though it takes some time to finalize.

        • shwaj 42 minutes ago

          I don’t think society is a monolith. Many of those who support your proverbial alimony are also against CEOs acting with impunity.

          • mothballed 38 minutes ago

            Sure, but the interest of "society" is what judges typically claim to represent when they bang that gavil.

            If you wish to change it to "the law of society" which is what "society" backs with violence, go for it.

        • buran77 44 minutes ago

          > As usual it's communism for the plebs and something entirely different for the capital wielding class.

          Bad example. Ask Bezos how much he paid his wife after the divorce.

          • mothballed 30 minutes ago

            It's a good point, the counterpoint is, he really only had to cushion the post-association lifestyle of one of thousands whom became dependent on his amazon business, a tiny fraction. A typical pleb will be held to cushion the lifestyle of nearly everyone who depends on their paycheck if someone decides to terminate the relationship (usually, their spouse and kids -- in USA this doesn't extend to elderly parents though it does in some other countries).

    • cakeface an hour ago

      I don't think it's right to categorize "no consequences".

      Leadership made a decision and that decision was bad. This happens all the time, including allocating budget for staff. Any effective organization is going to judge the outcomes of these types of decisions and it's going to come up in performance and hiring. If this was an isolated situation then possibly they won't fire anyone over it. But you really need the context to judge whether the response was correct.

      Wasting company resources and making the company look bad in the press won't be rewarded, and that includes at the board level to the CEO.

      • pesus an hour ago

        If the only consequence is that they're not rewarded, then it seems like it's very fair to categorize it as "no consequences".

        Even if you categorize missing out on some bonus or something as a consequence, it pales in comparison to the damage they've done and the lives they've severely disrupted and possibly irreparably damaged by firing people on a whim. (And I consider firing people because you fell for the AI hype / obvious marketing to be a whim)

      • luckydata an hour ago

        oh poor babies they got sad their human sacrifices didn't work, that's surely as much punishment as losing your livelihood because a pack of morons act randomly based on feels.

        • grosswait an hour ago

          Life is not fair and there are no guarantees. It’s a hard phase of realization to go through but life’s surprises are easier to get past once you do.

          • G0lg0thvn an hour ago

            Just give up any moral responsibility because life is unfair; what great advice!

          • joshuahaglund an hour ago

            So give up?

            By complaining together, we can create changes that make life more fair.

    • yifanl 2 hours ago

      If they gave the engineers appropriate severance packages, then they're at least out that much as a stupidity tax, but that's probably the most we can expect as far as consequences for the exec suite.

      • drob518 2 hours ago

        There is a huge cost for this either way (severance packages, yes, but also lost productivity, reduced team coherence, etc), but that unfortunately doesn’t necessarily translate to a political cost for the managers involved in pushing the dumb idea, particularly if the CEO was pressuring everyone for cost savings. They will escape by saying, “We did it because everyone else is doing it and we were told it was the right thing. How were we to know that it wouldn’t work?”

        • thewebguyd 2 hours ago

          > We did it because everyone else is doing it and we were told it was the right thing. How were we to know that it wouldn’t work?”

          And why does the board/shareholders allow a CEO to continue into their position by just following everyone else?

          I'm sure things are different at massive scales, but I run my own side business (photography). I watch the local market, and I have the attitude of "Whatever everyone else is doing, I want to do the opposite." and it's worked for me so far. The area doesn't need yet another "dark and moody" photographer with boring sepia edits, blurry photos with a film preset, and the same exact font and colors on the website as everyone else.

          You don't become a pioneer in your industry by just cargo culting everyone else. It's low effort leadership and if I were on the board it certainly would not inspire my confidence in their ability to run a company. You're telling me not a single person at the table asked "Do we have these engineers' institutional knowledge documented somewhere before we fire them all??"

          • boredatoms an hour ago

            Boards are usually filled with ex-CEOs who also thought these dumb bets were good

            • drob518 23 minutes ago

              And the board is pulling down $300k per year or more for sitting in maybe 11 meetings per year and participating in a “comp committee” where they just review data and recommendations from comp consultants and agree to whatever the consultants tell them. So, why rock the boat?

          • ffsm8 an hour ago

            > You don't become a pioneer in your industry by just cargo culting everyone else.

            You usually don't become a CEO of a long established company by being a pioneer either though...

            You may be able to argue this particular case though, as he is a marketing guy and he was a pioneer in marketing as few others capitalized on social media/YouTube when he did.

            But I feel like that's completely unrelated to how adjacent that's to what I'd consider a pioneer in a CEO position. Hence me pushing back a lil

            • drob518 21 minutes ago

              Sometimes you do get the CEO gig for being a pioneer, but then the whole organization thwarts whatever you want to do by repeatedly saying “we don’t do it that way here” and dragging their feet until you get fired.

          • drob518 28 minutes ago

            Let’s be honest about how the incentives work at large companies. The CEO probably has a $10m/yr comp package. The EVPs under him are $3m-$5m each. Nobody is really interested in making the company wildly successful, because that would entail lots of risk. Better to just keep everything moving along at the market average, don’t get fired, and collect the package every year. If you’re lucky, you do this for 3-5 years and you collect another $10-$20m termination package when they fire you. Then you hire an executive headhunter to get you the next gig and you repeat it. So, your main goal is to play defense. Don’t do anything risky that would get you fired. Pay McKinsey to bless whatever you want to do and if it blows up, blame them and call Accenture or Deloitte next time. Rotate between management consultants as required. Buy your tech from IBM, because nobody gets fired for buying IBM. Yes, your whole career will be MEH, but you can vacation all the time at your multiple houses in the Hamptons and Italy.

        • mukbangpervert an hour ago

          There's the added cost that the best people are the least likely to return after a layoff.

          • shuwix an hour ago

            And those which return will have zero loyalty to firm.

            Once you were dumped for AI gamble, you will never do the extra work, because you will probably be dumped in year or so, when someone else will get same or different stupid idea.

            But it's not stupid idea, it's more like desperate attempt to remain in game in competitive market by doing what everyone else does. Idea crafted to final decision by people paid to see a bigger picture ... which unfortunatelly stop seeing smaller things which matters.

            • drob518 10 minutes ago

              Absolutely. And why would you? Companies spend lots of time talking about loyalty and teamwork, but they show their colors when they do these layoffs. Smaller companies, often still run by the founder, can be much better. The only large company I ever saw command any employee loyalty was Hewlett-Packard when Bill and Dave were still running things. At one point, in the 1970s, they needed to cut payroll by 10%, so they asked the employees: we can cut 10% of the people, or everyone can take a 10% temporary pay cut. The employees voted for the pay cut. So, every other Friday, the company was shut down and everyone, all the way up to the CEO took a 10% pay cut. When times improved, they bumped everyone back up to full pay and moved on. That created huge loyalty. Unfortunately, it didn’t last. Bill and Dave passed the reins to others and eventually HP became like all the other companies and fell apart.

            • civet_java 28 minutes ago

              Perhaps if the rank and file at a company see personal consequence for those in the topmost posistions (salary deductions, demotions, or firing) in response to such glaring fuck ups that might even help mitigate some of these morale issues.

        • bijowo1676 an hour ago

          its because CEOs hire mckinsey/deloitte/BCG types for couple millions that give them a 60 slide powerpoint to justify reductions in force.

          the same consultants can be blamed if decision backfires

        • hello4263 an hour ago

          Why do u even bother about lost productivity. Come on dude how many firings need to happen before one has to see the reality. Just do the minimum job required for the position and move on. Loyalty should be both ways. But that's not the case

      • mikepurvis 2 hours ago

        Presumably they're also out the top 10-20% of talent which immediately found jobs elsewhere and would have little interest in returning to Ford to work under such incompetent management.

        • Avicebron 2 hours ago

          This sentiment feels like a relic of a previous age. Yes _maybe_ but it's also equally likely that the best they laid off was on the ropes for months trying to battle ghost job spam and AI filters. It's almost shaming anyone who isn't hired someone immediately as deficient and "not the best". Honestly the conversation should be focused on how the execs can he made responsible.

          • mikepurvis 2 hours ago

            That's fair. My intent was not to shame the "bottom 80%" which is of course most people, but rather to make a call for accountability. Like specifically the execs should have to answer to their board not just for the wasted time and severance packages, but also for the cost of losing some staff permanently with these shenanigans.

          • pojzon an hour ago

            Im not calling for any action, but that kid doing something about Healthcare CEO - that did help.

            • civet_java 22 minutes ago

              I am quite sympathetic to your position. Seeing those who manage to evade accountability consistently paying a heavy personal price was immensely satisfying. But at the same time, I don't think it resulted in any structural changes that minimise the proportion of accountability-evaders plauging society.

              Ideally of course everyone, irrespective of any immutable traits they may have, gets to enjoy a healthy, satisfying, and stable life with plently of avenues for upward mobility. Short of that ideal, a society which equally burdens the rich and poor with devastating, seemingly random, unavoidable life-chaning events is decidedly better than one which only affects the poor.

              So for these reasons I don't advocate for the actions of "the kid" but I don't think the consequences of his actions were in any way "bad" per se.

            • suttontom an hour ago

              How did it help?

        • jghn 2 hours ago

          Or, if they're anything like me, even if I hadn't yet moved along they'd find that for them my price has gone up in the interim time period.

        • calgoo 2 hours ago

          They could always be hired as contractors at x5 the cost for a fixed contract over 2 years to train the ai.

          • thewebguyd 2 hours ago

            Wouldn't be a bad deal tbh depending on age and how much you have already for financial independence in retirement.

            If my employer offered me a deal that would allow me to retire early, comfortably, to train my AI replacement, I'd take it. If they succeed, well I'd have gotten laid off anyway. If they fail, I get to laugh all the way to the bank with my newly found free time.

            • 9dev an hour ago

              Sounds like meta would be just the company for you!

      • freediddy an hour ago

        If they take the job they likely need to give back some or all of the severance package.

      • rootnod3 2 hours ago

        Not really those execs paying that stupidity tax though. They still get their bonuses. Pretty much zero consequences.

    • nnyx an hour ago

      I don't know about you, but if I was fired to be replaced by AI and then my employer came crawling, back tail between their legs, I'm pretty sure I'd start negotiations at an extra zero at the end of my salary.

    • thatfrenchguy an hour ago

      Consequences for American car executives, are you crazy? Have you seen Stellantis cars recently? Large parts of the US (and European most likely) car industry is driving straight into irrelevance

      • helterskelter an hour ago

        On the topic of Stellantis, I rented one recently (through no fault of my own) and when I returned it the guy asked me how it was. I told him I wouldn't drive one of those things again if they paid me, and the guy said "yeah we get that a lot, let me get you the discount".

        It sounded like they had a "Stellantis discount" for people who said something.

        Nice guy, actually.

        • tandr an hour ago

          As far as I can see on Wikipedia page or homepage for Stellantis, they do not make cars under their own name. So, which brand did you rent actually?

          • helterskelter 39 minutes ago

            Jeep Wagoneer, I just remember the Stellantis logo on the infotainment boot screen. I thought it was a Stellantis Wagoneer because the Jeep logo was almost completely absent, at least in memory.

      • mukbangpervert 26 minutes ago

        Stellantis is wild. They went from having a large portfolio of brands, each of which had many popular vehicles in America to having the Chrysler minivan, the Dodge charger, the Jeep Wrangler/Gladiator, and the Ram pickup.

    • eurekin an hour ago

      There never are. Those are going to be viewed as two discreet successful interventions.

      One for lay-offs, because it was the best move at the time with the knowledge they had.

      Second for quick correction, ability to pivot and execute quickly.

      It's been always like that

    • loeg an hour ago

      This is how it has always been? C-suite is incentivized to make big speculative changes; if it goes well, they get credit. If not, oh well.

    • nilkn 36 minutes ago

      That's because the company likely doesn't view it as a mistake. The executives did their job: they tried something the company likely considered reasonable (or even strategically necessary) and pivoted based on results. At the executive level, that's not considered a blunder. What counts as a blunder would be (1) being too cautious to try a change, then falling behind your competitors if that change turned out to be critical or successful; (2) attempting at change, seeing that it didn't work, and refusing to pivot or falling prey to the sunk cost fallacy.

    • giancarlostoro 2 hours ago

      I assume AI lay offs are mostly investor crud anyway. I've never seen them provide any evidence or examples of where AI helped cut those jobs and it always feels like its easier to lie and say you were fired because of AI so that your fired former employees blame AI and not you. Plus, if AI is really making your org more efficient, why aren't you training your employees who are not using it effectively enough? It all smells.

      The retention rates before COVID are back, and companies have way more people than they might need, that's the real reason so many places have started to slash, but blaming AI is easier.

      • ldng an hour ago

        Plus you can't say it's because Trump's terrible economics so safer to blame AI.

        • giancarlostoro 13 minutes ago

          I asked a buddy who works at one of the Big 4 and he said its the remnants of the Great Resignation:

          https://en.wikipedia.org/wiki/Great_Resignation

          Kind of made sense to me, I saw some of those outcomes happen in a former employer as well, they had an influx of income during 2020 that was not going to stay around forever (restaurant industry).

    • baron816 an hour ago

      Why are you assuming this? Because Bloomberg didn’t report the execs’ performance reviews? Maybe they did face consequences and we just don’t know.

      • burnte an hour ago

        > Why are you assuming this? Because Bloomberg didn’t report the execs’ performance reviews? Maybe they did face consequences and we just don’t know.

        Because we've been alive in America long enough to see this cycle thousands of times. The execs rarely face the music for bad decisions. A round of layoffs looks like a failure to us, but to the investors it was a good idea that didn't work out so there's no punishment for trying to save money.

        • dsjoerg an hour ago

          If you allow a likely guess with no evidence to play the role of fact, you're just as bad as the AIs

          • burnte an hour ago

            That's true, but I literally mentioned the decades of experience we've all lived through, so it's not without data. When the guys who made the bad decisions are still at the company and giving interviews then that's a very strong indicator they're still there and not facing repercussions.

          • sscaryterry an hour ago

            America has a convicted felon as president?

      • meigwilym an hour ago

        Conversely, why do you jump to their defence? Large companies treat employees as a cost centre, and if a cheaper alternative becomes available then they're let go. It's not a huge leap of faith to assume so in this case.

      • sscaryterry an hour ago

        Agreed, but what they’ve done isn’t illegal (IANAL). A performance review doesn’t address the irreparable harm these actions may cause.

        It is reasonable to assume, that this could be walked back in such a way that no one is held accountable.

      • quentindanjou an hour ago

        bad performance review and a layoff are completely different worlds.

      • Grombobulous an hour ago

        I imagine our current hyper-corporate landscape would have us making that assumption.

        Are there any recent documented instances of executives being punished in some level of career-affecting way for bad performance?

        Even when they get fired they get golden parachutes.

        Example: Sam Altman founded a complete failure of a location-based social network, where the board tried to remove him twice, lied about being chairman of the YCombinator board, and now gets to be CEO of one of the most valuable companies in the world where the board tried to remove him as CEO once.

        Failing up is very common in our corporate system.

      • glimshe an hour ago

        It seems that you don't understand governance in corporate America. For some education, read "Barbarians at the Gate".

    • pkulak 2 hours ago

      That's how it works for every rich/powerful person in every aspect of their lives; maybe to a slightly lesser degree with health.

    • dsjoerg an hour ago

      > Interestingly, there were no consequences for the execs that made this 'mistake'

      The article makes no such claim. What is your source? Absence of evidence is not evidence of absence. Or, are you just making things up that you believe are likely, like an AI would?

      • taormina an hour ago

        If they didn’t get canned, the slap on the wrist is the cost of doing business. If we all agree to investigate ourselves and we’re all very disappointed in what happened, what a shame!

        If you say something is illegal and costs $X as a fine, you don’t curb behavior, they just bake the fine into their business model.

    • daishi55 an hour ago

      “Consequences for mistakes” is generally not a good way of operating. Kind of the whole idea behind a blameless retro for example.

      • iamflimflam1 an hour ago

        Execs are paid an extraordinary amount of money because they are the ultimate decision makers and should be responsible for their decisions.

    • zzzeek 2 hours ago

      > execs cargo culting on using AI as a pretext for layoffs.

      reading this article I think that is not what happened in this specific case:

      > Over the last three years, Ford says it has hired 350 veteran engineers, many of them former employees and others from suppliers, to help address seemingly intractable quality woes that have cost the automaker billions.

      > “Mistakenly we thought that by just introducing artificial intelligence and ingesting the design requirements that we had, that that would produce a high-quality product,” Poon said. But “we recognized that for us to enhance some of our automation and machine learning and artificial intelligence tools we needed to ensure that they were trained by the most experienced individuals.”

      That is, Ford had been slowly relying more and more on automated tools (if the "rehiring" is over three years, then this all precedes our current "AI" ecosystem) and realized that now that they want to add modern AI tools, they need experienced engineers to train the newer systems, and are hiring people from the open market, where some of these folks were former Ford employees, but nothing like "were laid off due to AI".

      That is this doesnt sound at all like "Ford fired 350 engineers to be replaced with AI and is now backtracking", which is certainly what the headline here implied.

    • suyash an hour ago

      The probably got bonus and promoted since they saved company costs!

    • lenerdenator 2 hours ago

      The saying used to be "with great risk comes great reward".

      Risk is inconvenient to shareholders, who also happen to be the people with the most political power in the US. They're:

      1) retirees living off a pension/retirement fund backed by shares of companies like Ford

      2) investors who have plenty of money to ~~bribe~~ donate to political campaigns or

      3) C-suiters put in place by the other two groups who are compensated primarily in shares.

      These groups are all incentivized to see the risk to their income streams minimized as much as possible. Show me the incentives, and I'll show you the outcomes.

      Thus, we got rid of the risk.

    • elzbardico an hour ago

      Welcome to the Era of the Business Idiot. People who manage stuff without having even the remotest inkling of what the work is.

      Their entire management skill involve the application of one of the following options:

      1 - Fire People

      2 - Spend Money

      3 - Call a meeting

    • cyanydeez 2 hours ago

      corporatism is on equal footing with prosperity gospel.

      • nekusar 2 hours ago

        Yep.

        I'm prosperous because god/market deems me worthy.

    • mannanj an hour ago

      Seems like this is a theme in our culture, maybe it's a world wide trend. The underlying theme I notice is unaccountability and selective application of rules, laws, norms to some people and not others. It seems to me like people with power, and in leadership positions like executives, get to create an environment where they are able to continually extract from a mass of people.

      It reminds me of the conspiracy theories I would hear as a child along the lines of powerful people running the world in shadows. I certainly feel like the ways people like executives keep getting away with unethical and in some cases illegal behavior is there's forces in the shadows supporting their behavior. I was told in history class that throughout history when such types of people arose such as kings in France or massive dictators who conquer countries, that the "good" or "masses" of humans eventually over throw them - well here we are and why isn't that happening?

      I see instead a class of people weak, afraid, and defeated and continually asking others "why aren't you doing anything" without the awareness to see "You are the one who is supposed to do something" edit: applying this to myself, I'm certainly trying. Before I was fired at Capital One (as an engineer) I would continue to ask tough questions of integrity to executives and my team and managers, things about integrity, things about inconsistencies in our stated values and how we were actually delivering work. I took some heat, was not very liked, and took continual abuse from my team until I was eventually kicked out. I am happy to share how little I noticed people who felt uncomfortable with team culture and executive communication were just silent and afraid, and in denial as I got attacked and abused by management.

    • simianwords 2 hours ago

      Is there any consequence for execs who don't layoff when they are supposed to? You have to look at the situation symmetrically.

      • sarchertech an hour ago

        Why does it need to be symmetric? There’s no reason we couldn’t decide that we want to err on the side of employing too many people.

        We already do with legislation that requires severance packages and tax benefits for hiring. Many countries go much further.

        • civet_java 13 minutes ago

          > There’s no reason we couldn’t decide that we want to err on the side of employing too many people.

          One might bring up the personal consequences bourne by surplus employees who're then laid off during the unavoidable corrective phase - or is that not something society should care about? What are you optimising for?

        • simianwords an hour ago

          If its not symmetric then you bias towards status quo which is a really bad way to act as a CEO.

          > There’s no reason we couldn’t decide that we want to err on the side of employing too many people.

          Yeah that's not how a company should run.

    • sneak 2 hours ago

      Layoffs aren’t “playing with people’s lives”. Employment is only by mutual consent and everyone knows that. Consent can be revoked at any time which is why anyone prudent (especially in a software engineering role) isn’t living paycheck to paycheck.

      Don’t blame a customer for the vendor’s irresponsibility.

      • ultrarunner an hour ago

        Unfortunately for this perspective, one side of the equation very much plans their lives around this mutual arrangement. When the other party experiments with the arrangement without deep consideration, I think "playing with people's lives" is very much an apt description.

        Just because I would not be destitute tomorrow does not mean that my life (and those of my family) would not be deeply impacted.

      • jimbokun an hour ago

        That’s true in the US but not in most other rich countries, where there are legal constraints on terminating an employment contract.

    • djha-skin an hour ago

      Punishing leadership for perceived strategy mistakes is a great way to scare good leadership away from working for you.

      • gmd63 an hour ago

        Babying bad leaders who don't take responsibility for their actions is a good way to scare away good employees.

    • eunos 2 hours ago

      The social contract that American society elect (including these non executive engineers) emphasize career flexibility (right-to-work) and returns of capital than job security. Especially during booming economic years.

      • khriss 2 hours ago

        I am not sure engineers in say, Europe have any lower career flexibility. It's a false narrative to claim otherwise.

        • spwa4 2 hours ago

          The frustration of being an engineer in Europe comes from the rules that this implies. Well, aside from the fact that this is mostly gone, but still exists in some big public or banking companies.

          1) you can only get promoted if the company grows and/or someone above you leaves, or dies, or ... Btw it really requires leaving permanently. They leave for 10 years due to being in coma after a traffic accident? Nope.

          2) the oldest person gets promoted (and that means anciennetĂŠ: longest in the company). No arguments, no exceptions. To the point that there are plenty of teams that have a manager (who gets the 10% pay boost) and an actual manager (who makes things work). Often not the same person.

          3) No mobility (technically, yes, there's mobility, BUT your anciennetĂŠ resets in many cases. So it's really stupid to do)

          • teiferer 2 hours ago

            That's not mandated by law though. Shouldn't companies following such stupidity be easily out-competed by those that don't? In he market for their products/services but also in the market for employment.

            • sneak 2 hours ago

              This would be true if the government didn’t have ridiculous outdated requirements for starting new companies.

      • failuser 44 minutes ago

        Career flexibility like Do Not Compete agreements?

        • stale2002 39 minutes ago

          Almost nobody is covered by non compete agreements. And if you think you are, you should just ignore it anyway.

          They are often both illegal and unenforced. Your old employer isn't going to waste time hiring a private detective to track down every former employee's new work place that you didn't include on LinkedIn.

  • migueldeicaza 2 hours ago

    I do wonder if the rehiring was just at a lower compensation level.

    "Welcome back, you are now two levels down"

  • dolphinscorpion 2 hours ago

    They will try it again next year, after they slap an AI camera on the rehired people.

  • simonw 2 hours ago

    This HN headline is editorialized, the Bloomberg headline is "Ford AI Hiccups Push Carmaker to Rehire ‘Gray Beard’ Inspectors".

    The editorialized headline is also misleading: "Ford rehires 350 engineers after AI fails to preserve expertise or train juniors" - there is nothing in the original story that suggests Ford were expecting AI to "train juniors".

    And since the Bloomberg headline is behind a paywall the editorialized headline is most of what we have to go on.

    This Verge story would be a better link: "Ford had to hire back former engineers to fix mistakes made by its automated systems" https://www.theverge.com/transportation/956316/ford-quality-...

    And the crucial detail: nothing indicates Ford laid off the 350 people who were re-hired. It looks to me like it could be bringing back people who retired.

    • justonepost2 2 hours ago

      Cope

      • simonw 2 hours ago

        What exactly am I coping with here?

        The headline gives the impression that Ford fired 350 engineers and tried to get AI to train the replacements and then re-hired them when that didn't work.

        That impression is false, which means we're wasting time having conversations about it.

        (The top comment thread on here right now - https://news.ycombinator.com/item?id=48674446#48675092 - starts with the assumption that Ford execs made the mistake of laying off 350 people and then discusses if they got good severance packages etc. - here's the best comment I've seen calling that out so far: https://news.ycombinator.com/item?id=48674446#48675486)

  • motbus3 an hour ago

    They should charge at least 30% more because now they know that they can't keep production going

  • csours 2 hours ago

    I've lost my ability to believe that things will feel 'normal' at work.

    I no longer want to make connection with any coworkers.

  • wartywhoa23 an hour ago

    I hope those engineers demanded 2x higher salaries this time.

  • gorbachev 2 hours ago

    So...don't buy any Ford vehicles designed and/or manufactured in the last 8 months or so?

  • arjie 2 hours ago

    How interesting. So a Ford car is now more reliable than a Toyota soon after purchase but Toyota didn’t fire anyone and Ford fired, implemented automated reviews, and rehired. So their process didn’t bring them back to neutral. It placed them above the traditionally reliable manufacturers.

    So maybe the key is firing everyone and then rehiring the good guys after you implement automated systems.

    Though I’m somewhat surprised. I didn’t expect Porsches to top a reliability measure. I thought they were in the “fancy but unreliable” bin. Interesting.

    • brianmckenzie 2 hours ago

      I've had two different Porsches, a Cayman S and a Macan. Neither gave me a day of trouble. You just have to do all the maintenance, which is obviously expensive.

    • SoftTalker 2 hours ago

      The Porsche 911 is pretty reliable, it's basically the same car they've made for over 50 years so they've got it figured out.

      • jeffbee 2 hours ago

        This seems like a totally crazy statement. The only common thing that a current and 50-year-old 911 share is that there are six holes in the engine block.

    • Ekaros 2 hours ago

      I wonder if Porsche is allowed to exist in point where they are not fully cost optimised so there is more spend on those slight things that keep reliability. Most other large manufacturer cars seem to be cost optimised while least amount of that is carried over to customers...

    • jeffffff 2 hours ago

      porsche is part of volkswagen, so it's not that surprising that they're decently reliable. i probably see 10 porsches for every ferrari, lamborghini, etc that i see, and i think a large part of that is reliability - even absurdly rich people don't want to deal with an unreliable car when there is a more reliable alternative.

    • realo 2 hours ago

      Maybe... but the re-hiring probably involved very substantial salary raises for the re-hirees.

      An expensive process.

  • flowerthoughts 2 hours ago

    I wonder which of the management consulting companies caused this fire/rehire experiment.

    • dessimus an hour ago

      It's not like those consultants recommended something the CEO and Board didn't want to hear. They are paid to be the shield that blocks the arrows from shareholders. If they can get paid twice, once to recommend laying off 350 engineers and again to later recommend refilling 350 engineers all the better.

  • snootypoot 2 hours ago

    amazing, the same company that says people should not be allowed to repair their own vehicles. henry ford is rolling in his grave.

  • skywhopper 2 hours ago

    The folks who make the decision to throw away these engineers in the first place are the ones who should be laid off.

    • edoceo 2 hours ago

      Nice thing about the C-suite is that you get authority and compensation without responsibility. You just claim responsibility when things are good. And when bad, the underlings who have responsibilities but no authority take the heat.

      • LNSY 2 hours ago

        And this is why the C-suite is the single best target for replacement by AI.

    • LNSY 2 hours ago

      The only job AI's are capable are doing is the role of executive. I think we should replace every C-Suiter with AI.

  • nova22033 2 hours ago

    Were these engineers fired and replaced with AI? Article implies they brought back retired engineers.

  • idontwantthis 3 hours ago

    I hope those engineers made Ford pay out the nose.

    • zuzululu 2 hours ago

      They did not. I been saying for decades that software devs form a union.

      It's just so strange any other profession have unions or bodies that protect their job against this sort of practice.

      if software devs were lawyers then AI would've been banned

      • cbg0 2 hours ago

        You can negotiate your salary even without a union. Also being part of a union doesn't guarantee you won't be laid off because of AI.

        • breakpointalpha 2 hours ago

          A union absolutely can and should protect workers from frivolous layoffs.

          If the company tries to layoff 10% "due to AI" the remaining 90% can strike.

          History is full of union solidarity vs idiotic management.

  • prescriptivist 2 hours ago

    Sorry but this reeks of marketing. To what extent was Ford actually attempting to replace these engineers with AI tools in the last three years or were they just letting them go by attrition? Was this the result of an actual AI influenced layoff? I read both the Verge and the Bloomberg piece and none of this seems to be articulated but it sure does seem to capture a vibe right now that companies are footgunning themselves all over the place with LLMs, despite no evidence of this being related to any of that...

  • vvpan 30 minutes ago

    Do we have any hard data about AI improving any business metrics yet? I am not skeptical that it might, but I have yet to see anything.

  • xyproto an hour ago

    Oh how the wheels have turned.

  • mhurron 2 hours ago

    350 of how many laid off? If 350 is a fraction of the total replaced with AI that's going to be counted as a win for AI reducing costs, they just were a little to ambitious with the initial round. That'll be counted as a learning experience because we're early in the replace people with unintelligent tools process.

  • K0balt 2 hours ago

    This is exactly the idiotic use case of AI coming back to bite them.

    The short sighted gains (and I’ll assume that they are chasing quarterlies as usual) are to be had by firing most of the junior engineers, keeping the seniors because with AI they can n* their productivity.

    Basically you can fire 2x junior engineers for every senior engineer you keep. But the senior engineers are the keystone here, and without juniors eventually becoming senior engineers you’ll eventually be screwed.

    But, that’s a problem for the -next- c-suite gang… so…

  • willmadden 35 minutes ago

    Whoopsie, quick, let's boost our quarterly bonus by 50% for being bold and experimental.

  • catlifeonmars 2 hours ago

    What does it mean to “train the AI”?

  • neversupervised 2 hours ago

    This just feeds a certain narrative and allows people to take exactly the wrong conclusion. Just because there’s some uncertainty at the edge, it doesn’t change where things are going.

  • feverzsj 2 hours ago

    And they just go back to work like nothing happened?

    • dethos 2 hours ago

      That's the interesting question. Are expert engineers willing to go back after being treated that way or knowing what happened to others?

  • stagger87 2 hours ago

    > The return of the veteran engineers at Ford cuts against the prevailing wisdom — and fear — that AI will replace all kinds of knowledge workers. But Ford found the machines couldn’t replace experience.

    I'm not sure this story is illustrative of that, when you have a VP of engineering saying “Over prior years, we didn’t pay as much attention as we should have to the experience of our most knowledgeable engineers that have been with us through many product cycles.”

    He's saving face while almost certainly trying to figure out how to make the new systems work so that next time he won't need to rehire engineers.

    • rapind 2 hours ago

      > He's saving face while almost certainly trying to figure out how to make the new systems work so that next time he won't need to rehire engineers.

      Yup. They jumped the gun. Now they need to hire them back so they can loot their expertise and never hire another senior. I'm not saying this will work, but it's pretty obviously the plan.

    • neilv 2 hours ago

      Pre-AI version: Oops, you laid off the higher-salaried people without having them train their replacements, so bring them back, long enough to do that.

      Now, that training[*] will be for both AI models and lower-salaried hires.

      Perhaps a second mistake by those who thought they didn't need their most experienced people: Now they think they just need to train the AI better, and then new-grad "AI native" hires will be the most cost-effective way to operate/oversee the AI and do whatever it can't.

      [*] edit: originally typed "replacement" when I meant to type "training"

      • teiferer 2 hours ago

        Is there any substantial number of companies actually training AI? Or do you count writing skills files for Claude as "training"? (Cause it really isn't..)

        • boutell an hour ago

          We all know what you mean. But doing what is necessary to make the overall automated system more autonomous = training, at this 30,000 foot altitude.

          • teiferer an hour ago

            Well for grandma on the street I can accept that, but shouldn't at least the tech community be more precise in terminology? "AI" is also a misnomer. So many things in our industry are that it always takes some layers of digging in a new area to understand what they actually mean because the words have shifted their meaning.

            • neilv an hour ago

              I intended for the entire sentence to be in terms of the thinking of top leadership.

              And to gloss over how that improvement would actually happen. (Not knowing what they've currently done and want to do, but for example, guessing: probably in partnership with vendors, consultants, etc., iterative and experimental process and tools improvements, and involving a variety of approaches and refinements.)

            • Chaosvex an hour ago

              Ray tracing says hello.

    • makeitdouble an hour ago

      Yes.

      And for people focusing too much on AI, Xiaomi kicked their first vehicle into production with a fully automated factory three years ago [0]. That's where the industry is going and has tried to go for decades now.

      They might want to also reduced head out on the designing side, but it's also an ongoing trend that started before the AI boom.

      That's not an industry that will keep hiring as much as they did in the past, however it turns out.

      [0] https://youtu.be/v6jb6PP4APc

    • jvanderbot 2 hours ago

      Maybe. That's one interpretation. A lot of hiring/firing decisions get read through the lens of AI, hard pro or hard con. Reality is always a mixed bag. They certainly will want to try to build up a better automated pipeline, but the question is can they, and can they cost-effectively vs hiring a few more people?

    • red75prime an hour ago

      Obviously. It was the goal of automation since its inception: reduce human involvement.

  • gm678 2 hours ago

    > Mistakenly we thought that by just introducing artificial intelligence and ingesting the design requirements that we had, that that would produce a high-quality product.

    Clearly a lot of careful thought went into their strategy of using AI and firing engineers.

    • thewebguyd 2 hours ago

      This idea is everywhere right now, that AI is some magic black box that will solve all your business problems. The sentiment is spreading through the exec team where I work now too. It's like a disease.

      C-suites completely disconnected from reality and assuming we've already achieved ASI/AGI, and marketing teams & business journals are only furthering that narrative.

      It's so weird. I don't know what it is about AI that causes people to throw all thought and caution to the wind and charge forward blind. Its like they've been chomping at the bit for decades to get rid of those pesky humans and are so hyped up over it they can't see clearly anymore.

      • ryandrake 2 hours ago

        "Line must go up, forever."

        These guys have squeezed out every cost and slack from their system. They've found the exact revenue-maximizing prices and segmentation for their products. They've cut quality to the point where customers will just barely not reject their product. They have used every legal and accounting trick at their disposal to keep that line going up. But, next quarter, line must still go up!

        The final massive cost to cut are all those damn human bodies that they they still have to keep around. They've driven down salaries and benefits to the minimum they can get away with, and they've extracted the maximum value from employees they can. But they haven't figured out how to get rid of them entirely. They are staring down the barrel of the gun and just can't see a way to cut this cost further. Now, magic AI comes along, and everyone is saying that the black box can replace those bodies. The C-suites believe it. They have to believe it. Line must go up! This is how they'll do it for a few more quarters. This is why the messaging is so unified across the industry, across every C-suite out there. They all need to believe.

        • mschuster91 an hour ago

          > Line must go up! This is how they'll do it for a few more quarters. This is why the messaging is so unified across the industry, across every C-suite out there. They all need to believe.

          The real danger for the economy is when the runway finally runs out. And I believe we are at a perfect-storm scenario... AI is obviously a giant wash-trading bubble that alone would be sufficient to trigger a repeat of the 2007ff crisis. But on top of that, we got the issue you mentioned, i.e. everyone running out of kool-aid and noticing it too late, with no easy way of turning around, and we got the war risk and supply chain shocks thanks to Iran and Russia, and and and.

          • thewebguyd 23 minutes ago

            And that's how you get a new war. Line must go up isn't only for the corps, its for US GOV debt too. Interest payments are already close to $1 trillion. As soon as GDP growth doesn't stay ahead of the compounding interest, the music stops. The line must go up or you get a sovereign deb crisis. When all other avenues are expended, the gov must force the economy to expand by any means necessary. Historically, that meant war.

      • disgruntledphd2 2 hours ago

        > It's so weird. I don't know what it is about AI that causes people to throw all thought and caution to the wind and charge forward blind. Its like they've been chomping at the bit for decades to get rid of those pesky humans and are so hyped up over it they can't see clearly anymore.

        It's just a hype cycle. In my 15 years in data, I've seen around 3-4. Every time leadership get way too invested in the possibilities, and they waste tons of money on doomed efforts. A good example of the prior one was "Big Data" which was even more pointless than the current AI boom.

        Don't get me wrong, there is valuable tech there (at the very least, being able to reliably generate structured data from unstructured input is incredibly valuable in data), but the current hype is way off the charts.

        • ClarityJones an hour ago

          AI is particularly infectious among C suites, because AI is great at spewing words. A substantial portion of folks in those positions are there because of family connections, existing wealth, etc., and their only contribution to the business is similarly spewing words. They went to good colleges where they excelled at spewing words. They worked cushy / hard jobs where they had to spew the just the right normal predictable words for this context, perhaps at a large volume and with little notice... and the words were hard words... not known to those outside the industry.

          For those that lack initiative, strategy, a real understanding of their business, engineering, etc., the spewing words is the whole thing. It overshadows their entire understanding.

        • simianwords 2 hours ago

          I think you are misleading people by calling it a "hype cycle". There is no going back from this technology. It is going to encroach every part of lives more and more.

          What does hype even mean concretely? I think this is just a coping mechanism if you ask me.

          • alwa an hour ago

            “Hype Cycle” is a Gartner term of art, which they use to describe the way waves of technological innovation penetrate the business world:

            https://www.gartner.com/en/research/methodologies/gartner-hy...

            The idea is there’s a rush of irrational exuberance when an “innovation trigger” makes a new toy looks promising, and everybody rushes to use it for everything, regardless of whether its suitability-for-purpose is proven. Inevitably many of those pioneers find that it’s not good for their particular problems after all; usage reaches a “peak of inflated expectations,” and crashes into a “trough of disillusionment.”

            Then the tech enters a quieter and more gradual “slope of enlightenment” as people work out use cases where the tech actually adds value; then adoption reaches a “plateau of productivity.”

            Worth a glance at the way they map this to prior waves of technological exuberance.

            • simianwords an hour ago

              Motte and Bailey.

              From your video, it looks like your definition of hype involves a situation where eventual adoption increases above what is in the hype today.

              Here's what the parent comment thinks:

              > It's just a hype cycle. In my 15 years in data, I've seen around 3-4. Every time leadership get way too invested in the possibilities, and they waste tons of money on doomed efforts. A good example of the prior one was "Big Data" which was even more pointless than the current AI boom.

              Obviously the parent doesn't think of hype the way you think of it because they claim that big data was pointless -- they don't see the eventual "slope of enlightenment". They think of hype cycle in the colloquial way and I was responding to that.

              I see this all the time in the website and frankly the patronising "but actually hype means something else" is pointless and pedantic. I urge you to respond to words within the context and not bringing in academic definitions.

          • dgellow 2 hours ago

            Hype cycle doesn’t imply the technology has no value. But we should be able to talk about it as the boring, nerdy technology it is without that whole doom trolling and “AI will literally solve everything”

            • red75prime 36 minutes ago

              > the boring, nerdy technology it is

              Er, what? Intricacies of a transformer pipeline might be boring and nerdy, but the results are not. BTW, I've yet to find any strong argument on why the current ML approaches are bounded below the level you find appropriate to be bored.

      • MattGrommes an hour ago

        > It's so weird. I don't know what it is about AI that causes people to throw all thought and caution to the wind and charge forward blind.

        My favorite theory about this is that we're all used to "speech == intelligence" and now that we have something that can produce coherent speech, it seems like it must be intelligent to people who don't know how it works. Even people who know how it works still anthropomorphize it to a weird degree. So a business person sees this thing that's both intelligent (to them) and superhumanly fast and it seems like the ultimate silver bullet.

      • hackingonempty an hour ago

        If you are incapable of doing more than "spring init my_app" then the current models are like magic.

      • greenavocado 2 hours ago

        > I don't know what it is about AI that causes people to throw all thought and caution to the wind and charge forward blind.

        1. Zero personal risk because cargo culting is a valid excuse in Executive World. If investors are on board, its good, no matter how stupid or destructive it actually is.

        2. Top leadership's friendship with the country's leadership equals access to cheap debt financing since money is all fake and generated out of thin air

        3. Too big to fail

      • vrganj 2 hours ago

        Its ideology.

        > Its like they've been chomping at the bit for decades to get rid of those pesky humans and are so hyped up over it they can't see clearly anymore.

        This is precisely it. Here's my analysis:

        AGI is a savior figure for the capitalist class. A tech version of the Second Coming, delivering them from the pesky demands of workers, like a living wage or (gasp!) sick leave.

        That's why they're all so obsessed with it, it has religious-ideological component to them. When you hear them talk about AGI, there's always this weird eschatological vibe with it.

        Unfortunately, they're blinded by their beliefs and can't think things through even one step further. Even if their cyberjesus comes down to them through the machine and replaces all workers, who's gonna buy all their stuff then?

        All they're doing in their capitalist zealotry is ringing in the end of capitalism.

        • zmgsabst an hour ago

          They also don’t seem to realize the AI might take over highly paid executive positions before skilled work.

          Knowledge or skilled workers can be used by the AI for swarm training data generation; what value do the execs have to AI?

          I think the most beautiful part of capitalism is selling elites rope to hang themselves.

    • jayd16 2 hours ago

      Step 1: fire everyone. Step 2: figure out how to use AI.

      In that order, apparently.

      • joelfried 4 minutes ago

        Of course in that order!

        Step 3: Rehire key personnel at lower cost than whomever was fired in Step 1. Step 4: Take credit for cost reductions . . . and give yourself a raise!

      • tanseydavid 2 hours ago

        I don't understand why Ford did not just put the LLM on a PiP.

      • zamalek 2 hours ago

        Alternatively:

        Step 1: 30 minute conversation with AI on how to use AI. Step 2: fire everyone.

    • nosioptar 2 hours ago

      Had a couple of Taurusii back in the day. 100% ended up having a problem where the power steering pump shit the bed because a plastic piece in the pressurized side failed. Paid to repair one, oem pump broke on drive home due to same plastic piece under pressure.

      My point being, Ford's had shit for brains for decades. Its a fucking wonder any of their vehicles make it out of the parking lot.

      • pchristensen 2 hours ago

        Ford invested heavily in reliability in the late 2000s - see e.g. https://www.latimes.com/business/la-xpm-2012-apr-15-la-fi-bo...

      • SoftTalker 2 hours ago

        I had a Focus in the 2000's that was the most reliable car I ever owned. Rust got it eventually but it still started instantly at any temperature and ran like a new car.

        • cactacea 2 hours ago

          It was also designed by European engineers, not in Michigan. Not saying that's the reason the Focus is more reliable than a Taurus but they didn't follow the "typical" Ford design process at the time for that vehicle. For what it is worth I owned a 1992 Taurus and it left me stranded more times than I can count. Just some of the issues I had were a water pump that exploded and a seized A/C compressor.

          • cucumber3732842 an hour ago

            <eyes roll in literal loop>

            Pretty much everything Ford brings to the US that was designed in Europe is loathed by anyone who has to own it out of warranty.

            Turns out that when you have a building full of engineers in Germany or England their domestic engineering culture results in work output not all that different from the sort of stuff people chastise BMW and Land Rover for.

            That said, the Escort, and to a lesser extent the Focus, are generally considered very good vehicles.

        • nosioptar 2 hours ago

          If I had a nickel for every broken focus door handle I've fixed... (There's a weak pin that always breaks.)

          • SoftTalker 2 hours ago

            LOL yeah I had that too. Forgot about it. Cheap fix was an aftermarket door handle from Amazon or RockAuto or someplace like that.

            I'm not saying it was a perfect car. The interior was cheap, the sheet metal seemed to be recycled tin cans, and it definitely showed its age by the time I got rid of it. But that engine and drivetrain seemed to be bulletproof.

            • nosioptar 2 hours ago

              Yeah, the engine and drivetrains are immortal, everything else is constantly dying though.

    • dgellow 2 hours ago

      Earlier this year I’ve been in calls with leaders from top US companies where their strategy was basically “we have to switch absolutely everything to agentic right now, otherwise we are dead”. That was the full thought.

      That made reading their subsequent layoff blog posts pretty depressing

    • LogicFailsMe 5 minutes ago

      Top men.

    • saltcured 2 hours ago

      Well, the business plan came out of this mysterious box, after we fed in the payroll reduction requirement...

  • tossitawayplz 3 hours ago

    I would literally be homeless before I went back to a company that fired me to replace me with AI, then asked me to come back.

    • ryan_n 2 hours ago

      Or maybe people just have bills to pay and/or want to support their families. A little critical thinking and empathy goes a long way...

    • riazrizvi 2 hours ago

      When you first lose everything, in the process you end up having to pawn expensive principles like that, so when other things like this happen, it's easy to seize the opportunity.

    • azan_ 2 hours ago

      Were you ever homeless and starving?

    • mattbettinson 2 hours ago

      I doubt it :)

    • deadbabe 3 hours ago

      How about if they doubled your previous salary?

      • Tade0 2 hours ago

        I guess the crux of the issue is that there's no guarantee that the company would not find a different, equally harebrained, reason to lay GP off.

        • fred_is_fred 2 hours ago

          There's no guarantee in any job that you won't be laid off.

          • Tade0 2 hours ago

            True, but if you already know that a given company tends to fire on a whim, you'd be excused to feel a little bit distrustful.

      • jayd16 2 hours ago

        For how long?

      • bigstrat2003 2 hours ago

        I wouldn't go back, regardless of salary offer, unless I didn't have any other jobs lined up. If I'm not employed than any job (even a bad one) beats being unemployed. But if I was employed, I wouldn't go back to a job where they laid me off for stupid reasons, no matter how much money they offered.

    • McGlockenshire 2 hours ago

      As a homeless person, do not wish homelessness on yourself.

    • xienze 2 hours ago

      Doesn't seem bad to me. Come back for a pay bump and get paid while you search for a new job.

  • tamimio 2 hours ago

    > Artificial intelligence is a fantastic tool, but it’s only as good as the information you use to train it

    I would rephrase it as it’s only as good as you know what you are doing. Even if the trained input is good, keeping it to scope and making sure it delivers without workarounds requires a human brain who have the past experience.

  • conartist6 3 hours ago

    foot, meet gun

  • Noaidi 2 hours ago

    If AI thinks so much faster than humans. does it age fater than humans? and in that case, does AI have dementia already?

  • josefritzishere 2 hours ago

    The impression I'm getting over this huge number of AI roll backs is that AI is useful in some circumstances, but it's just not a cure-all. It is expensive, and increasingly so, straining the ROI scenario. My expectation is that the use-case for successful AI implementations is ultimately going to be narrow.

  • rvz 2 hours ago

    So "AGI" was not found internally at Ford and they didn't know they needed actual engineers to keep the lights on?

    It's OK to just say that the plan was to rehire back the engineers for far less compensation.

  • justonepost2 2 hours ago

    All the people happy about this are just holding back the progress of our species smh.

    won’t someone think of the lightcone!

  • qsxfthnkp2322 2 hours ago

    Management at these USA companies could give zero fucks about you.

    It’s a disease that has spread throughout all of capitalism.

    But that’s USA 250 years.

  • cryo32 3 hours ago

    Quite frankly I’m enjoying the schadenfreude on this one.