Posts Scalable in-database machine learning with PL/Python (Postgres Open Silicon Valley 2017)
Post
Cancel

Scalable in-database machine learning with PL/Python (Postgres Open Silicon Valley 2017)

I presented a talk on scalable in-database machine learning using PL/Python at Postgres Open Silicon Valley. As a fan and long time Postgres users, I have greatly benefited by leveraging PL/Python User Defined Functions (UDFs) and User Defined Aggregates (UDAs). These tools greatly enhance the power of a SQL database like Postgres by bringing all the nimbleness of Python and it’s rich ecosystem of libraries.

Below is a short summary of my talk, a link to the source code if you want to take it for a spin yourself and a video recording of my talk.

Scalable in-database ML (GitHub)

Scalable in-database ML (GitHub)

Enterprises who wish to build data driven machine learning applications should have access to technology that enables processing large volumes and flavors (structured, unstructured) of data efficiently and economically. There are vast collections of libraries for several specialized domains in the PyData ecosystem that are almost universally adopted by data scientists and engineers. Harnessing these libraries on a scalable platform/computation framework would help enterprises rapidly derive value from their data. In-database analytics brings computations to where the data resides, thereby reducing transport costs and I/O bottlenecks. PL/Python is a glue that binds the rich set of libraries in the PyData stack with the data residing in a Postgres database. In this talk I’ll demonstrate how to harness the power Python and it’s ecosystem of data science and machine learning libraries to build statistical models for machine learning applications, in database on Postgres. I will begin with an overview of PL/Python on Postgres and describe concepts such as User Defined Functions (UDF) and Aggregates (UDA) in detail. I will then describe data parallel and model parallel machine learning problems with real world applications in Natural Language Processing (NLP) and illustrate with examples how to leverage libraries such as numpy, scipy, scikit-learn for solving them through PL/Python.

This post is licensed under CC BY 4.0 by the author.