this post was submitted on 02 Apr 2025
54 points (86.5% liked)

Technology

68245 readers
4285 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Last November, The Bookseller reported Dutch publisher Veen Bosch & Keuning, owned by publishing titan Simon & Schuster, was testing the use of artificial intelligence to help translate several of its books to English.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 1 day ago* (last edited 1 day ago) (4 children)

I use local instances of Aya 32B (and sometimes Deepseek, Qwen, LG Exaone, Japanese finetunes, others depending on the language) to translate stuff, and it is quite different than Google Translate or any machine translation you find online. They get the "meaning" of text instead of transcribing it robotically like Google, and are actually pretty loose with interpretation.

It has soul... sometimes too much. That's the problem: It's great for personal use where it can ocassionally be wrong or flowery, but not good enough for publishing and selling, as the reader isn't necessarily cognisant of errors.

In other words, AI translation should be a tool the reader understands how to use, not something to save greedy publishers a buck.

EDIT: Also, if you train an LLM for some job/concept in pure Chinese, a surprising amount of that new ability will work in English, as if the LLM abstracts language internally. Hence they really (sorta) do a "meaning" translation rather than a strict definitional one... Even when they shouldn't.

Another thing you can do is translate with one local LLM, then load another for a reflection/correction check. This is another point for "open" and local inference, as corporate AI goes for cheapness, and generally tries to restrict you from competitors.

[–] [email protected] 2 points 1 hour ago

I guess that's why I saw someone call them "dazed translations", these models start doing poetry halfway through.

[–] [email protected] 2 points 1 day ago

Or a tool for the translator to save time?

[–] [email protected] 5 points 1 day ago (1 children)

These language models don't get the meaning of anything. They predict the next cluster of letters based on the clusters of letters that have come before. Sorry, but if it feels to you like they're captured the meaning of something, you're being bamboozled

[–] [email protected] 3 points 1 day ago

It’s a metaphor.

They're translating the input tokens to intent in the model's middle layers, which is a bit more precise.

[–] [email protected] 1 points 1 day ago (1 children)

Actually, as to your edit, the it sounds like you're fine-tuning the model for your data, not training it from scratch. So the llm has seen english and chinese before during the initial training. Also, they represent words as vectors and what usually happens is that similiar words' vectors are close together. So subtituting e.g. Dad for Papa looks almost the same to an llm. Same across languages. But that's not understanding, that's behavior that way simpler models also have.

[–] [email protected] 2 points 1 day ago

True! Models not trained on a specific language are generally bad at that language.

However, there are some exceptions, like a Japanese tune of Qwen 32B which dramatically enhances it Japanese, but the training has to be pretty extensive.

And even that aside… the effect is still there. The point it to illustrate that LLMs are sort of "language independent" internally, like you said.