- 30 Posts
- 5 Comments
abhi9u@lemmy.worldOPto Technology@lemmy.world•An Analysis of DeepMind's 'Language Modeling Is Compression' PaperEnglish2·2 years agoInteresting. I’m just thinking aloud to understand this.
In this case, the models are looking at a few sequence of bytes in their context and are able to predict the next byte(s) with good accuracy, which allows efficient encoding. Most of our memories are associative, i.e. we associate them with some concept/name/idea. So, do you mean, our brain uses the concept to predict a token which gets decoded in the form of a memory?
abhi9u@lemmy.worldOPto Technology@lemmy.world•An Analysis of DeepMind's 'Language Modeling Is Compression' PaperEnglish2·2 years agoYes. They also mention that using such large models for compression is not practical because their size thwarts any amount of data you might want to compress. But this result gives a good picture into how generalized such large models are, and how well they are able to predict the next tokens for image/audio data at a high accuracy.
abhi9u@lemmy.worldOPto Technology@lemmy.world•An Analysis of DeepMind's 'Language Modeling Is Compression' PaperEnglish3·2 years agoDo you mean the number of tokens in the LLM’s tokenizer, or the dictionary size of the compression algorithm?
The vocab size of the pretrained models is not mentioned anywhere in the paper. Although, they did conduct an experiment where they measured compression performance while using tokenizers of different vocabulary sizes.
If you meant the dictionary size of the compression algorithm, then there was no dictionary because they only used arithmetic coding to do the compression which doesn’t use dictionaries.
abhi9u@lemmy.worldOPto Technology@lemmy.world•How CPython Implements and Uses Bloom Filters for String ProcessingEnglish1·2 years agoI have the same problem. The number of things I want to read and write about is scaling faster than I can tackle them :)
Yes, that makes much more sense.