Accurate AutoML with ZairaChem
We present ZairaChem, Ersilia's modeling pipeline for chemistry data
Last updated
Was this helpful?
We present ZairaChem, Ersilia's modeling pipeline for chemistry data
Last updated
Was this helpful?
is 's AutoML tool for supervised learning of small molecule activity and property data. In the field of computer-aided drug discovery, this task is known as Quantitiative Structure Activity/Property Relationship Modeling (QSAR/QSPR).
ZairaChem offers a relatively complex ensemble modeling pipeline, showing robust performance over a wide set of tasks. If, instead, you want to build quick baseline models, we recommend to check , the light-weight modeling tool of Ersilia.
Currently, ZairaChem is focused on binary classification tasks. We presented ZairaChem in a joint publication with the (South Africa). Please cite: .
In brief, in ZairaChem molecules are represented numerically using a combination of distinct descriptors, including physicochemical parameters (), 2D structural fingerprints (), inferred bioactivity profiles (), graph-based embeddings (), and chemical language models (). Any other descriptor from the can be selected. The rationale is that combining multiple descriptors will enhance applicability over a broad range of tasks, ranging from aqueous solubility predictions to phenotypic outcomes. Subsequently, an array of AI/ML algorithms is applied using modern AutoML techniques aimed at yielding accurate models without the need for human intervention (i.e. algorithm choice, hyperparameter tuning, etc.). The AutoML frameworks , , , and are incorporated, covering mostly tree-based methods (Random Forest, XGBoost, etc.) and neural network architectures.
ZairaChem can be installed as follows:
A Conda environment called zairachem
will be created. Start by activating this environment:
Check that ZairaChem has been installed properly. The following will display the command-line interface (CLI) options.
To get started, let's use a classification task from .
This file can be split into train and test sets.
The command above will generate two files in the current folder, named train.csv
and test.csv
. By default, the train:test ratio is 80:20.
You can train a model as follows:
This command will run the full ZairaChem pipeline and produce a model
folder with processed data, model checkpoints, and reports.
You can then run predictions on the test set:
ZairaChem will run predictions using the checkpoints stored in model
and store results in the test
directory. Several performance plots will be generated alongside prediction outputs.
Internally, the ZairaChem pipeline consists of the following steps:
session
: a session is initialized pointing to the necessary system paths.
setup
: data is processed and stored in a cleaned form.
describe
: molecular descriptors are calculated.
estimate
: models are trained or predictions are done on trained models.
pool
: results from multiple models from the ensemble are aggregated.
report
: output data is assembled in a spreadsheet, and plots are created for easy inpection of results.
finish
: the session is closed and residual files are deleted.
You can start a ZairaChem training session as follows:
Likewise, you can start a prediction session:
The session
command will simply create the necessary folders and a session log.
In this step, data preparation is done, including:
Identification of relevant columns (compound identifier, SMILES, and value) in the input file.
Chemical structure standardization.
Deduplication.
Data balancing and augmentation using a reference set of molecules (e.g. ChEMBL).
Binarization when a cutoff is specified.
Transformation (Guassianization) of continuous data.
Folds and clusters assignments.
Give an initialized session (fit or predict), data preparation will be done accordingly. To perform this step, simply run:
Most data generated in the setup
step will be stored in model/data
(fit) or test/data
(predict). The most important file in this folder is data.csv
, containg the result of the data preparation step. Other files are generated, like mapping.csv
, which match data.csv
to the row indices of the input file.
Several operations are performed for each of the descriptors, including:
Calculation of descriptors for each molecule using the Ersilia Model Hub.
Removal of constant-value columns and columns with a high degree of missing values.
Imputation of the rest missing values.
Robust scaling of contiuous descriptors.
In addition, a reference descriptor is calculated (Grover). To this reference descriptors, the following dimentionality reduction techniques are applied:
UMAP
PCA
Optionally, supervised versions of thesealgorithms are applied:
Supervised UMAP
LolP
All of the above can be performed by running the following command:
This step is aimed at training AutoML models based on the descriptors calculated above.
The following supervised models are applied:
Baseline LazyQSAR models (based on Morgan fingerprints and classic descriptors).
FLAML models on each of the pre-calculated descriptors.
AutoGluon model based on the manifolds of the reference embedding.
Keras Tuner fully-connected network based on the reference embedding.
MolMap convolutional neural network.
All of these steps can be performed with the following command.
In the pooling step, results from the estimators above are aggregated. A weighted average is applied, based on the expected performance of each of the individual estimators.
Pooling can be performed with the following command:
ZairaChem provides automated performance reports as well as a output table.
Output table
Performance table
Plots
The finish command simply offers options for cleaning
It is possible to run a specific step from a previous session. In this case, simply initialize the session pointing to the relevant folders:
ZairaChem will automatically identify the session as training (fit) task or as a prediction task.
Once the session has been set, you can run the command of choice. For example:
In the session file, multiple steps are specified. Each step in ZairaChem has an associated name. You can restart the pipeline at any given step.
distill
(mainly based on the package; integration in progress ): lightweight versions of the models are created for quick prediction.
In the describe
step, small molecule descriptors are calculated. ZairaChem provides a set of default descriptors, including the , Grover embeddings and Morgan fingerprints and Mordred descriptors.
Other descriptors can be easily incorporated thanks to the . They can be specified in a parameters.json
file.
Please note that calculating some descriptors (for example, GROVER) may be a slow procedure. However, the Ersilia backend is linked to an in-house caching library called that is able to access pre-calculated data. At the moment, Isaura works on local caching. However, we are currently setting up a cloud-based database in order to facilite access to pre-calculations stored online.
ZairaChem models are computationally demanding. At the end of the procedure, our goal is to provide a distilled model. This distilledm model is stored in an interoperable format (ONNX) and can be deployed as an AWS lambda. The Ersilia package for creating distilled models is called .