this post was submitted on 04 Nov 2024
10 points (77.8% liked)

Ask Lemmy

26701 readers
1575 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about US Politics.


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

[AI] Why are most LLMs decoder-only, and not encoder-only or encoder-decoder, in relation to transformer type?

you are viewing a single comment's thread
view the rest of the comments
[–] dsilverz@thelemmy.club 8 points 1 day ago

Basically, as far as I read, different kinds of transformers serve different kinds of purposes:

  • A Decoder-only is used for generative word output (auto-completion), when the model receives an input prompt and outputs generated words based on it.

  • An Encoder-only is used for things such as classification and sentiment analysis, when the model receives an input text and outputs a classification vector.

  • An Encoder-Decoder is used for translating texts from one language to other, because it firstly encodes (hence, it classifies) then decodes (hence, it generates words).

How LLMs can translate and can kinda of "analyze the sentiment" of a given text, I'm not really sure (possibly the training data allows is so huge that decoders can achieve the encoding function) but the "basic" generation of words is a decoder thing.