PostgresML is a machine learning extension for PostgreSQL that enables you to perform training and inference on text and tabular data using SQL queries. With PostgresML, you can seamlessly integrate machine learning models into your VMware Greenplum database and harness the power of cutting-edge algorithms to process data efficiently.
The postgresml
module provides PostgresML functions for using tens of thousands of pre-trained open source AI/machine learning models in VMware Greenplum. The models are provided by the Hugging Face AI data science platform.
postgresml
ModuleBefore registering the postgresml
module, you must install the Data Science bundle for Python3.11, add the pgml
library to the set of libraries the VMware Greenplum server loads at startup, and set the Python virtual environment:
Install the Data Science bundle for Python 3.11.
For example:
gppkg install DataSciencePython3.11-x.x.x-gp7-el8_x86_64.gppkg
where x.x.x is the version string.
Add the postgresml
library to preload when the VMware Greenplum server starts, using the shared_preload_libraries
server configuration parameter and then restart the cluster.
For example:
gpconfig -c shared_preload_libraries -v 'xxx, pgml'
where xxx represents any existing preloaded libraries.
Set the Python virtual environment.
gpconfig -c pgml.venv -v "$GPHOME/ext/DataSciencePython3.11"
gpstop -air
NoteIf this yields the error message,
[CRITICAL]:-not a valid GUC: pgml.venv
it means you failed to run Step 2, including restarting the cluster, beforehand.
Proceed to the next section to register the postgresml
module.
The postgresml
module is installed when you install Greenplum Database. Before you can use any of the data types, functions, or operators defined in the module, you must register the postgresml
extension in each database in which you want to use the objects:
CREATE EXTENSION pgml;
Refer to Installing Additional Supplied Modules for more information.
The PostgresML
module is installed when you install or upgrade Greenplum Database. A previous version of the extension will continue to work in existing databases after you upgrade Greenplum. To upgrade to the most recent version of the extension, you must:
ALTER EXTENSION pgml UPDATE TO '2.7.13+greenplum.1.0.0';
in every database in which you registered/use the extension.
The postgresml
extension currently supports just a subset of all of the user-defined functions provided by PostgresML. They are these three:
pgml.load_dataset()
: Loads a dataset into tables in VMware Greenplum using the INSERT
SQL command. Read more about loading data here.pgml.embed()
- Generates an embedding for the dataset. Read more about PostgresML embeddings here.pgml.transform()
: Applies a pre-trained transformer to process data. Read more about PostgresML pre-trained models here.pgml.train()
: Handles different training tasks which are configurable with the function parameters. Read more about supervised learning here.pgml.predict()
: Provides online predictions using the best, automatically deployed model for a project. Read more about supervised learning here.VMware anticipates adding support for the additional PostgresML functions in future releases.
pgml.load_dataset(
source TEXT,
subset TEXT,
limit bigint,
kwargs JSONB
)
where:
source
is the name of the data source. subset
is a subset of the data source. The default is NULL
. limit
is a user-defined limit on the number of imported rows. The default is NULL
. kwargs
is a a JSONB object containing optional arguments. The default is an empty object ({}
).
pgml.embed(
transformer TEXT,
inputs TEXT or TEXT[],
kwargs JSONB
)
where:
transformer
is the huggingface sentence-transformer name.inputs
are the text(s) to embed. It can be a single text string or an array of texts.kwargs
is a JSONB object containing optional arguments.pgml.transform(
task TEXT or JSONB,
call JSONB,
inputs TEXT[] or BYTEA[]
)
where:
task
is the task name passed as either a simple text string or, for a more complex task setup, a JSONB object containing a full pipeline and initializer arguments.call
is a JSONB object containing call arguments passed alongside the inputs
values.inputs
is a TEXT[]
or BYTEA[]
array containing inputs for inference.NoteYou must explicitly specify a model when calling
pgml.transform()
; default models are not yet supported.
pgml.train(
project_name TEXT,
task TEXT DEFAULT NULL,
relation_name TEXT DEFAULT NULL,
y_column_name TEXT DEFAULT NULL,
algorithm TEXT DEFAULT 'linear',
hyperparams JSONB DEFAULT '{}'::JSONB,
search TEXT DEFAULT NULL,
search_params JSONB DEFAULT '{}'::JSONB,
search_args JSONB DEFAULT '{}'::JSONB,
test_size REAL DEFAULT 0.25,
test_sampling TEXT DEFAULT 'random',
preprocess JSONB DEFAULT '{}'::JSONB
)
where
project_name
is an easily recognizable identifier to organize your work.task
is the objective of the experiment: regression
, classification
, or cluster
.relation_name
is the Postgres table or view where the training data is stored or defined.y_column_name
is the name of the label column in the training table.algorithm
is the algorithm to train on the dataset, the available algorithms are regression
, classification
, and clustering
.hyperparams
are the hyperparameters to pass to the algorithm for training, JSON formatted.search
indicates, if set, whether or not PostgresML performs a hyperparameter search to find the best hyperparameters for the algorithm.search_params
are the search parameters used in the hyperparameter
search, using the scikit-learn notation, JSON formatted.search_args
are the configuration parameters for the search
, JSON formatted. Currently only n_iter
is supported for random
search.test_size
is the fraction of the dataset to use for the test set and algorithm validation.test_sampling
is the algorithm used to fetch test data from the dataset: random
, first
, or last
.preprocess
are the preprocessing steps to impute NULLS, encode categoricals and scale inputs.For more information about the available algorithms, hyperparameter search, and data pre-processing, visit the official PostgresML Documentation.
select pgml.predict (
project_name TEXT,
features REAL[]
)
where
project_name
is the project name used to train models in pgml.train().features
is an aggregate of feature vectors used to predict novel data pointsThe following example:
# Download the dataset from the internet and create table for it
SELECT pgml.load_dataset('tweet_eval', 'sentiment');
# Generate an embedding for the text
SELECT pgml.embed('distilbert-base-uncased', 'Star Wars christmas special is on Disney')::vector AS embedding;
---------------------------------------------------------------------------------------------
SELECT text, pgml.embed('distilbert-base-uncased', text)
FROM pgml.tweet_eval limit 5;
---------------------------------------------------------------------------------------------
CREATE TABLE tweet_embeddings AS
SELECT text, pgml.embed('distilbert-base-uncased', text) AS embedding
FROM pgml.tweet_eval limit 5;
# Download and run pre-trained models
SELECT pgml.transform(
'translation_en_to_fr',
inputs => ARRAY[
'Welcome to the future!',
'Where have you been all this time?'
]
) AS french;
The following example:
# Obtain training data from a dataset
SELECT * FROM pgml.load_dataset('digits');
SELECT target, image
FROM pgml.digits LIMIT 5;
# Train a model using an algorithm using the default linear algorithm
SELECT * FROM pgml.train(
'Handwritten Digit Image Classifier',
'classification',
'pgml.digits',
'target'
);
# Predict
SELECT
target,
pgml.predict('Handwritten Digit Image Classifier', image) AS prediction
FROM pgml.digits
LIMIT 10;