this post was submitted on 15 Jul 2024
125 points (100.0% liked)

Technology

37573 readers
562 users here now

A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.

Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.

Subcommunities on Beehaw:


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 25 points 2 months ago* (last edited 2 months ago) (4 children)

Machine learning and compression have always been closely tied together. It's trying to learn the "rules" that describe the data rather than memorizing all the data.

I remember implementing a paper older than me in our "Information Theory" course at university that treated the creation of a decision tree as compression. Their algorithm considered sending the decisions tree and all the exceptions to the decision tree and the tree itself. If a node in the tree increased the overall message size, it would simply be pruned. This way they ensured that you wouldn't make conclusions while having very little data and would only add the big patterns in the data.

Fundamentally it is just compression, it's just a way better method of compression than all the models that we had before.

EDIT: The paper I'm talking about is "Inferring decision trees using the minimum description length principle" - L. Ross Quinlan & Ronald L. Rivest

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

Too lazy to check, but is this the Rivest from the RSA algorithm?

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

Oh I never knew, but it seems true. On his Wikipedia page both researches are mentioned. It's so impressive how these researchers are behind so many different but interesting papers.

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

Yup it seems crazy to me how deep insights one needs to have to be able to, say, connect the dots between compression and machine learning. And now it looks to me like he has done a lot of the foundational work in these fields. Super cool stuff

load more comments (2 replies)