Elektrine lite

← Feed

@ramin_hal9001@fe.disroot.org

Post #216986

2026-02-02 08:39 UTC

@screwlisp@gamerplus.org I should also say, LLMs also work on non-textual information like images and and sound. That is the advantage of using purely statistical methods, rather than the symbolic method you described. You can easily interface a LLM with a neural network that decomposes an image or sound into quanta that can be mapped onto the vectors that encode some “meaning” of words/tokens in a sentence, so you can prompt an LLM to create an image from text, or to create a textual description of an image. Statistical methods can also create a “sentiment” vector for passages of text, finding some way to encode the meaning of a textual passage into a number that you can use to compare to other numbers to decide if two passages are similar in meaning. This is useful for quickly searching through a large text corpus. Most modern chat bots do this, it is what they call “Retrieval Augmented Generation.” They use sentiment analysis to find text passages that seem like they may be related to your prompt, and use the “similar in sentiment” text passages to augment your prompt before then constructing an output. The purely symbolic language models with sparse matrices would probably be much more energy efficient, but the trade-off is that you lose the ability interface with neural networks trained on image or audio signals and also the ability to perform sentiment analysis. @AmenZwa@mathstodon.xyz @aartaka@merveilles.town @dougmerritt@mathstodon.xyz @kentpitman@climatejustice.social @neauoire@merveilles.town @rwxrwxrwx@mathstodon.xyz

Replies (1)

  • @screwlisp@gamerplus.org 2026-02-02 22:03

    @ramin_hal9001 Thanks for your memory. I am increasingly thinking that sharing and sharing between particular programmers' original neural networks is important. The reason I say that the equation I am using is an implementation of deep learning, I specifically mean that it is equivalent to a conventional feedforward neural network of a single hidden layer (with odd activation function) - Krotov and Hopfield, 2016. It is possible to choose an "attention" update function as well (Ramsauer 2020)

    Open ##1376969