• themeatbridge@lemmy.world
    link
    fedilink
    arrow-up
    19
    ·
    12 days ago

    I still double space after a period, because fuck you, it is easier to read. But as a bonus, it helped me prove that something I wrote wasn’t AI. You literally cannot get an AI to add double spaces after a period. It will say “Yeah, OK, I can do that” and then spit out a paragraph without it. Give it a try, it’s pretty funny.

    • TrackinDaKraken@lemmy.world
      link
      fedilink
      English
      arrow-up
      12
      ·
      edit-2
      12 days ago

      So… Why don’t I see double spaces after your periods? Test. For. Double. Spaces.

      EDIT: Yep, double spaces were removed from my test. So, that’s why. Although, they are still there as I’m editing this. So, not removed, just hidden, I guess?

      I still double space after a period, because fuck you, it is easier to read. But as a bonus, it helped me prove that something I wrote wasn’t AI. You literally cannot get an AI to add double spaces after a period. It will say “Yeah, OK, I can do that” and then spit out a paragraph without it. Give it a try, it’s pretty funny.

      • dual_sport_dork 🐧🗡️@lemmy.world
        link
        fedilink
        English
        arrow-up
        13
        ·
        edit-2
        12 days ago

        Web browsers collapse whitespace by default which means that sans any trickery or   deliberately   using    nonbreaking    spaces,   any amount of spaces between words to be reduced into one. Since apparently every single thing in the modern world is displayed via some kind of encapsulated little browser engine nowadays, the majority of double spaces left in the universe that are not already firmly nailed down into print now appear as singles. And thus the convention is almost totally lost.

        • FishFace@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          12 days ago

          HTML rendering collapses whitespace; it has nothing to do with accessibility. I would like to see the research on double-spacing causing rivers, because I’ve only ever noticed them in justified text where I would expect the renderer to be inserting extra space after a full stop compared between words within sentence anyway.

          I’ve seen a lot of dubious legibility claims when it comes to typography including:

          1. serif is more legible
          2. sans-serif is more legible
          3. comic sans is more legible for people with dyslexia

          and so on.

    • CodeInvasion@sh.itjust.works
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      12 days ago

      This is because spaces typically are encoded by model tokenizers.

      In many cases it would be redundant to show spaces, so tokenizers collapse them down to no spaces at all. Instead the model reads tokens as if the spaces never existed.

      For example it might output: thequickbrownfoxjumpsoverthelazydog

      Except it would actually be a list of numbers like: [1, 256, 6273, 7836, 1922, 2244, 3245, 256, 6734, 1176, 2]

      Then the tokenizer decodes this and adds the spaces because they are assumed to be there. The tokenizer has no knowledge of your request, and the model output typically does not include spaces, hence your output sentence will not have double spaces.