Efficiently Estimating Mutual Information Between Attributes Across Tables
Aécio Santos, Flip Korn, Juliana Freire
TL;DR
This paper tackles the high cost of discovering relevant external tables for relational data augmentation by estimating the mutual information $I(X;Y)$ over left joins without materializing the full join. It introduces sketch-based sampling methods, LV2SK as a baseline and TUPSK as a superior tuple-based approach, which provide a fixed-size, unbiased-like sample of the join to feed existing MI estimators. Through extensive synthetic and real-data experiments, the authors show that TUPSK consistently yields accurate MI approximations, robust to join-key distributions and data-type mixtures, and improves the reliability of feature rankings for augmentation. The approach enables scalable, MI-driven data discovery in large data lakes and opens paths for more principled, theory-backed data augmentation pipelines with provable sketch properties.
Abstract
Relational data augmentation is a powerful technique for enhancing data analytics and improving machine learning models by incorporating columns from external datasets. However, it is challenging to efficiently discover relevant external tables to join with a given input table. Existing approaches rely on data discovery systems to identify joinable tables from external sources, typically based on overlap or containment. However, the sheer number of tables obtained from these systems results in irrelevant joins that need to be performed; this can be computationally expensive or even infeasible in practice. We address this limitation by proposing the use of efficient mutual information (MI) estimation for finding relevant joinable tables. We introduce a new sketching method that enables efficient evaluation of relationship discovery queries by estimating MI without materializing the joins and returning a smaller set of tables that are more likely to be relevant. We also demonstrate the effectiveness of our approach at approximating MI in extensive experiments using synthetic and real-world datasets.
