You can't unit test for taste

(dev.karltryggvason.com)

96 points | by kalli 1 day ago

15 comments

  • trjordan 1 hour ago
    You can't unit test for taste if you haven't written down what you mean by taste. If you can externalize it, then you can.

    Follow this line of thinking, and the AI-friendly answer is easy: we just have to externalize everything we know, so Claude can implement what I want.

    Except that I can't fully externalize myself. Debugging a system takes more resources than running the system. If I could write down everything I know and hand it to a machine, I'd do that, but it impossible.

    People aren't books or hashmaps. If you want to build something, you need to use the tools, not teach the tools to use you.

    [edit: I'm trying to figure out if there's something to be done about this. Email me if you want to chat -- tr at tern dot sh]

    • giancarlostoro 21 minutes ago
      What's kind of funny is this is how I implemented "gates" for the ticketing system I built for Claude, because Beads would just close tickets without validation. I have tickets that are literally "Human validation" tier, so it will work on the next available thing until I personally tell the model to close it. So, in that spirit, yeah, you can unit test for taste, if you implement external validation.

      Unit test runs, waits for human input before passing or failing, which might seem out of the norm, but we already have QA do manual testing.

    • bonzini 1 hour ago
      It can't be written down as code, that's the point.

      I am more familiar with taste in coding and it can at best be described—that the resulting code is too subtly different from something else in the codebase, that you're masking a different bug, that you're not following what the code tells you. The good part is that while this cannot be unit tested, you can write documentation and code comments about it that tell people what they need to know.

      But for taste of the kind described in the article there's not even a definition. The logic ended up being "trust a bunch of opaque weights the most"

      • Chris2048 50 minutes ago
        Technically, AI is code, just very complex code.

        I'd say there are "simple" simple things you can do though, like take automated screenshots and detect colours for jarring colourschemes.

    • tmoertel 7 minutes ago
      > You can't unit test for taste if you haven't written down what you mean by taste. If you can externalize it, then you can.

      I'm not so sure. For instance, you can write down what it means for a program to be free of XSS and other injection vulnerabilities. Now, how would you unit test for that property?

    • delichon 35 minutes ago
      You may be able to effectively externalize taste by "hot or not" style pair testing. Enough comparisons and I'd expect ML to be able to mimic human taste by latching on to features we're not well aware of influencing us.
      • trjordan 29 minutes ago
        This is RL, right? Like, this is exactly why models have mostly converged around obvious style, because we train them literally on thumbs-up/thumbs-down data of what good behavior and good code looks like.

        And that's why it's so hard to get a model to reproduce the specific taste of a person or an organization. My taste is different than yours, so if we dump our aggregate preferences into RL, in averages out to nothing interesting.

        For the code-writing case, this means you end up reviewing every line of code, looking for places where you'd thumbs-down the code. Not every line of code contains a real decision, though, so it feels like a waste of time.

        • paytonjjones 23 minutes ago
          This is, in short, the big current problem with AI.

          LLMs are built for scale so they've given up on the kind of online learning / "long term memory" processes that would individualize them.

          The LLM is permanently locked to being a really cracked engineer on their first day at your company, looking at your codebase for the first time.

          You can scaffold a bit with .md files, but at the moment they lack the ability to do what humans do: go to sleep, encode things from short to long term memory, and wake up the next day with more specific knowledge baked in.

          • trjordan 17 minutes ago
            100%. The problem with them isn't making sure they're doing the right thing, it's making sure they're not making bad assumptions.

            IMHO this is where code review goes until we fix the individualized model thing: you need to review the decisions the agent made, where you didn't steer. Most will be right. A few will be disastrously wrong. But decision-by-decision is a lot less to review than line-by-line of code.

          • plastic-enjoyer 17 minutes ago
            > LLMs are built for scale so they've given up on the kind of online learning / "long term memory" processes that would individualize them.

            I wonder if this is even desirable from a product perspective. You probably don't want online learning in a product that you are selling because you can't guarantee a consistent quality of the product.

    • pydry 5 minutes ago
      I remember reading an interview with a fireman who described a time when his buddy evacuated a team because he "felt" that a floor would collapse imminently.

      He couldn't articulate why but they trusted his gut and it did collapse.

      A lot of software engineering relies on that kind of intuition and on a good team you can integrate it and benefit from it and avoid all manner of floor collapses.

    • sigbottle 31 minutes ago
      Exactly. Every single philosophical statement in history runs up against the issue where you can just say, "yeah, it's pretty much this. You just need to do <arbitrarily hard unspecified thing that is basically unfalsifiability>". (Including this one)

      And maybe that's just our limits with philosophy, modeling, assumptions, whatever. The danger is not realizing when we're in that zone.

      (Fwiw I think unfalsifiability is a limit with any system - "you didn't compile in my syntax/semantics" is an gotcha that's actually valid and useful, but nobody can really determine the hard line)

  • ChrisMarshallNY 6 minutes ago
    > but it ended up merely in a supporting role

    This has been my experience, as well, but it’s a really big support. It just needs adult supervision. I can’t understand how vibe-coded apps, actually work.

    As far as “taste,” goes, I test my stuff constantly, checking for even minor “friction points,” sometimes, refactoring back to design, in order to resolve issues that many folks would ship. I’m pretty anal, and want my work to be the best experience possible.

    I can’t see any LLM coming close to being able to evaluate the user experience, like I can.

    • paytonjjones 2 minutes ago
      Tools like Playwright and Maestro can already give you a small taste of what that would look like.

      But overall I agree, LLMs are currently awful at being beta testers. They miss the most basic stuff that any human would immediately catch as being poor UX, and for all their visual prowess they are terrible at auditing UI.

  • pjmlp 19 minutes ago
    Exactly one of the reasons I never went down with all the TDD dogma of only writing code to fix broken tests.

    There is a reason conference talks are always about plain algorithms and data structures.

    • bob1029 2 minutes ago
      The biggest flaw I've seen with TDD is the fact that correctness does not compose upward. Every time two units come into contact, you've got an entirely new kind of unit. The tests from constituents do not cover emergent properties of the new things. You will repeat this same exercise the entire way up to the top, and the moment you come into contact with the customer (they want to change everything), the house of cards comes crumbling down and you have to start your agonizingly-slow process all over from the bottom again.

      The only thing that the business seems to care about is top-down UI testing. This is also convenient because you can leave it until the very end after the customer has already seen several prototypes.

      I do think TDD makes sense in isolated scopes (prove this specific custom parser works at the edges), but as the general policy for the entire product it's definitely not a viable practice. Much of the time if comes off as an ego trip to see just how cleverly we can mock something so that we can say we technically tested it.

  • timroman 32 minutes ago
    https://pureinference.com/insights/taste-is-the-new-skill

    I wrote about this a few months back. Rick Rubin is famous for this. I do think it is something that can be trained though, it just needs a lot more context. Taste builds over time through lots of unit tests, through lots of content writing, through an accumulation of product decisions. It’s hard to put it in the individual spec, but it can be teased out of 100 project specs. And when you get to that scale the AI starts to do it pretty well.

    • sesm 24 minutes ago
      > Rick Rubin told Anderson Cooper he has no technical ability. Doesn't play instruments. Can't work a mixing board.

      If you watch his interview on Rick Beato's channel, this myth will fall apart. He plays guitar, had his own punk rock band and his guitar playing is featured on some high-profile records he produced. Also, he has a lot of practical experience with all kinds of studio equipment.

      • timroman 21 minutes ago
        That’s exactly it. His taste isn’t in any one thing. It’s the esoteric and accumulated from a variety of things. You can’t package it up. That’s the point on the project specs. I can never get it right in one, but the arc over 100 becomes visible. Especially to an LLM that has the capacity to intake and understand that.
    • themgt 10 minutes ago
      This is exactly it - the ultimate skill now is to be Rick Rubin with an LLM. Not a comfortable transition as a coder.
  • Gosper 42 minutes ago
    Language count is a decent notoriety signal though pretty coarse. The OP/author should take a look at QRank: https://qrank.toolforge.org/

    > QRank is a ranking signal for Wikidata entities. It gets computed by aggregating page view statistics for Wikipedia, Wikitravel, Wikibooks, Wikispecies and other Wikimedia projects

    from https://github.com/brawer/wikidata-qrank/blob/main/doc/desig...

  • TimXare 55 minutes ago
    Taste is mostly the part of the spec you forgot to write down, plus the part you couldn't write down even if you tried.
  • jpadkins 9 minutes ago
    I think another important question is can you distill taste? (another comment uses the phrase "externalize", which might mean something similar).

    I think people have been trying for the written word, with some degree of success (anti-slop skills). I have been trying for visuals, and it's pretty meh. It's easy to get a multimodal LLM to follow a style guide, but a style guide doesn't capture everything that accounts for taste. And anything that is dynamic (not a screenshot test) seems really hard or really expensive.

  • chantepierre 1 hour ago
    It makes me smile when runners use "X is a marathon, not a sprint" to hint at an effort that accumulates over time and an optimal use of energy.

    I do it too because it's a common expression, and a marathon is of course longer than a sprint, but both have in common that properly raced, they are absolutely brutal efforts that leave you without a single additional drop at the end. The effort length and instantaneous power output changes, of course. Maybe "it's a marathon build, not the race" would be more precise at the loss of nearly all its expressive power (but with a lot more pedanticism points) :-p .

    Nice project !

    • another-dave 1 hour ago
      "The effort length and instantaneous power output changes, of course."

      but that's what the phrase is meant to convey, right?

      Don't run through consumable X (energy/money/etc) like there's no tomorrow - even though there's <some big important milestone> now, we've got dozens more of those that we need to meet, so you're better off getting this one done at 75% than committing 100% to it and failing on all the others.

      • boredumb 1 hour ago
        Don't work 12 hour days to get milestone X out, because there are dozens more milestones so don't get burnt on trying to get this one out yesterday. It would probably be more like, don't use 200% to get this out and then quit or burn yourself to 0% or a few % in a year when we want you to extend and maintain this stuff.
      • chantepierre 1 hour ago
        Yeah you're right, I hear it more like "this is a week long hike, not a sprint" as if a marathon included rest. In any length of racing there's no tomorrow. But I'm doing tongue-in-cheek pedanticness here and will stop that right now !
        • jayd16 9 minutes ago
          In a marathon, not sprinting is the rest.
        • dasil003 30 minutes ago
          I'd wager that if a manager says that they want you to take it more like a real marathon and less like long hike.
  • a_c 58 minutes ago
    I like to think of testing as making sure things not wrong, but not making it right.

    Working, useful, delightful, in that order. Testing can make things more likely to work, that's it.

  • carra 33 minutes ago
    So now we need a framework for unit tastes
  • TestINGNG 42 minutes ago
    [dead]
  • draw_down 58 minutes ago
    [dead]
  • esafak 49 minutes ago
    We can encode taste -- generative AI depends on it. In the worst case, ask people to compare two examples and pick the one with better taste. You can even ask them to rate multiple subjective criteria at once. Use that to learn a scoring function based on the rating labels, and raw features.
  • throw93949444 1 hour ago
    > For example, my native Iceland had a nice mix of nature, historical sites and populated places.

    You absolutely can unit test for taste, just put an agent into loop, and write into prompt what you like. Then do scoring...

    Iceland is really bad example, it basically has one populated site (capital) and circular road that goes around the island.

    • voidUpdate 17 minutes ago
      I'm pretty sure there's more points of interest in the entirety of Iceland than just Reykjavík and Route Number One