ADA Lab @ UCSD

 

Project Morpheus

Overview

Applying ML to structured data often involves performing relational operations as part of feature and data engineering. For instance, joins before ML are ubiquitous, since many datasets in the real world are multi-table, while almost all ML toolkits expect single-table inputs. This forces data scientists to join those tables and materialize a single table, which leads to data redundancy and runtime waste. In recent work (Project Orion), we introduced the paradigm of “factorized” ML to mitigate this issue for a few specific ML algorithms by showing how to push ML through joins. But that approach requires a manual rewrite of ML implementations. Such a piecemeal approach creates a massive development overhead when extending factorized ML to other ML algorithms.

In this project, we mitigate the above overhead by leveraging a popular formal algebra to represent the computations of many ML algorithms: linear algebra (LA). We introduce a new logical data type to represent multi-table data and devise a framework of algebraic rewrite rules to convert a large set of LA operations over denormalized data into operations over the base tables. This enables us to automatically factorize several popular ML algorithms, thus unifying and generalizing prior works. Experiments with real-world multi-table datasets show that our approach also yields significant runtimes speed-ups in multiple ML system environments.

We have protoyped Morpheus in the popular R environment. Versions in Python and TensorFlow, as well as Apache SystemML are in the works. This project sets the stage for a holistic unification of relational algebra-based feature and data engineering with LA-based ML to help accelerate ML workloads over structured data.

The ideas from this work have been protoyped and/or adopted for applications at LogicBlox, Microsoft, and Avito.

Downloads (Paper, Code, Data, etc.)

  • Towards A Polyglot Framework for Factorized ML
    David Justo, Shaoqing Yi, Lukas Stadler, Nadia Polikarpova, and Arun Kumar
    VLDB 2021 (Industrial Track; to appear) | Paper PDF | TechReport | Talk video

  • Enabling and Optimizing Non-linear Feature Interactions in Factorized Linear Algebra
    Side Li, Lingjiao Chen, and Arun Kumar
    ACM SIGMOD 2019 | Paper PDF and BibTeX | Code and Data on Github

  • Towards Linear Algebra over Normalized Data
    Lingjiao Chen, Arun Kumar, Jeffrey Naughton, and Jignesh Patel
    VLDB 2017 | Paper PDF | TechReport

  • MorpheusPy: Factorized Machine Learning with NumPy
    Side Li, Arun Kumar
    TechReport

  • MorpheusFlow: a case study of learning over joins with TensorFlow
    Side Li, Arun Kumar
    TechReport

Student Contacts

  • Side Li: s7li [at] eng [dot] ucsd [dot] edu

Acknowledgments

This project is supported in part by Faculty Research Awards form Google Research and Oracle Labs.