Fast Molecular Property Prediction with mordredcommunity
Project description
Fast Molecular Property Prediction with mordredcommunity
Announcement - Open Beta!
fastprop is currently in the version 1 open beta!
Please try fastprop on your datasets and let us know what you think.
Feature requests and bug reports are very appreciated!
Installing fastprop
fastprop supports Mac, Windows, and Linux on Python versions 3.8 to 3.11 (except 3.11 on Windows).
As dependencies gradually begin to support Python 3.12 it will be added.
Installing from pip or conda is the best way to get fastprop, but if you need to check out a specific GitHub branch or you want to contribute to fastprop a source installation is recommended.
pip [recommended]
fastprop is available via PyPI with pip install fastprop.
To make extending fastprop easier and keep the installation size down, dependencies required for hyperparameter optimization and SHAP analysis are optional.
They can be installed with pip install fastprop[hopt], pip install fastprop[shap], or pip install fastprop[shap,hopt] to install them both.
If you want to use fastprop but not write new code on top of it, you may want to install these now - you can always do so later, however, and fastprop will remind you.
conda - coming soon!
fastprop is available from conda-forge with conda install -c conda-forge fastprop.
Source
To install fastprop from GitHub directly you can:
- Run
pip install https://github.com/JacksonBurns/fastprop.git@mainto install from themainbranch (or specify any other branch you like) - Clone the repository with
git clone https://github.com/JacksonBurns/fastprop.git, navigate tofastpropwithcd fastprop, and runpip install .
To contribute to fastprop please follow this tutorial (or something similar) to set up a forked version of fastprop and open a pull request (similar to above option 2).
All contributions are appreciated!
See Developing fastprop for more details.
About fastprop
fastprop is a package for performing deep-QSPR (Quantitative Structure-Property Relationship) with minimal user intervention.
By passing in a list of SMILES strings, fastprop will automatically generate and cache a set of molecular descriptors using mordredcommunity and train an FNN to predict the corresponding properties.
See the examples and benchmarks directories to see how to run training - the rest of this documentation will focus on how you can run, configure, and customize fastprop.
Paper
An academic paper has been prepared which describes the fastprop approach and walks through the benchmarks in greater detail.
See the paper directory for more information.
fastprop Framework
There are four distinct steps in fastprop that define its framework:
- Featurization - transform the input molecules (as SMILES strings) into an array of molecular descriptors which are saved
- Preprocessing - clean the descriptors by removing or imputing missing values then rescaling the remainder
- Training - send the processed input to the neural network, which is a sample FNN (sequential fully-connected layers with an activation function between)
- Prediction - save the trained model for future use
Configurable Parameters
-
Featurization
- Input CSV file: comma separated values (CSV) file (with headers) containing SMILES strings representing the molecules and the targets
- SMILES column name: name of the column containing the SMILES strings
- Target column name(s): name(s) of the columns containing the targets
and
- Which
mordreddescriptors to calculate: 'all' or 'optimized' (a smaller set of descriptors; faster, but less accurate). - Enable/Disable caching of calculated descriptors:
fastpropwill by default cache calculated descriptors based on the input filename and warn the user when it loads descriptors from the file rather than calculating on the fly
or
- Load precomputed descriptors: filepath to where descriptors are already cached either manually or by
fastprop
-
Preprocessing
- Enable/Disable re-scaling of parameters between 0 and 1 (enabled by default and highly recommended)
- Enable/Disable dropping of zero-variance parameters (disabled by default; faster, but often less accurate)
- Enable/Disable dropping of co-linear descriptors (disabled by default; faster, decreased accuracy)WIP - not configurable:
fastpropwill always drop columns with no values and impute missing values with the mean per-column
-
Training
- Number of Repeats: How many times to split/train/test on the dataset (increments random seed by 1 each time).
- Number of FNN layers (default 2; repeated fully connected layers of hidden size)
- Hidden Size: number of neurons per FNN layer (default 1800)
or
- Hyperparameter optimization: runs hyperparameter optimization identify the optimal number of layers and hidden size
generic NN training parameters
- Output Directory
- Learning rate
- Batch size
- Checkpoint file to resume from (optional)WIP - Problem type (one of: regression, binary, multiclass, multilabel)
-
Prediction
- Input SMILES: either a single SMILES or a CSV file
- Output format: filepath to write the results or nothing, defaults to stdout
- Checkpoints directory: directory where previously trained model(s) are
Relationship to Chemprop
In addition to having a similar name, fastprop and Chemprop do a similar things: map chemical structures to their corresponding properties in a user-friendly way using machine learning.
I (@JacksonBurns) am also a developer of Chemprop so some code is inevitably shared between the two (fastprop->Chemprop and vice versa).
fastprop feels a lot like Chemprop but without a lot of the clutter.
The fast in fastprop (both in usage and execution time) comes from the basic architecture, the use of caching, and the reduced configurability of fastprop (i.e. I hope you like MSE loss for regression tasks, because that's the only training metric fastprop will use).
Using fastprop
fastprop can be run from the command line or as a Python module.
Regardless of the method of use the parameters described in Configurable Parameters can be modified.
Some system-specific configuration options can be specified in a .fastpropconfig file - see the example file.
Command Line
After installation, fastprop is accessible from the command line via fastprop subcommand, where subcommand is either train, predict, or shap.
traintakes in the parameters described in Configurable Parameters sections 1, 2, and 3 (featurization, preproccessing, and training) and trainsfastpropmodel(s) on the input data.predictuses the output of a call totrainto make prediction on arbitrary SMILES strings.shapperforms SHAP analysis on a trained model to determine which of the input features are important.
Try fastprop --help or fastprop subcommand --help for more information and see below.
Configuration File [recommended]
See examples/example_fastprop_train_config.yaml for configuration files that show all options that can be configured during training.
It is everything shown in the Configurable Parameters section.
Arguments
All of the options shown in the Configuration File section can also be passed as command line flags instead of written to a file.
When passing the arguments, replace all _ (underscore) with - (hyphen), i.e. fastprop train --number-epochs 100
See fastprop train --help or fastprop predict --help for more information.
fastprop shap and fastprop predict have only a couple arguments and so do not use configuration files.
Python Module
This section documents where the various modules and functions used in fastprop are located.
Check each file listed for more information, as each contains additional inline documentation useful for development as a Python module.
To use the core fastprop model and dataloaders in your own work, consider looking at shap.py or train.py which show how to import and instantiate the relevant classes.
fastprop
defaults: contains the functioninit_loggerused to initialize loggers in different submodules, as well as the default configuration for training.fastprop_core: the model itself, data PyTorch Lightning dataloader, and convenience functions.hopt: hyperparameter optimization using Optuna and Ray[tune], used by the CLI.train: performs model training, used by the CLI.predict: loads models from their checkpoint and config files and runs inference, used by the CLI.shap: performs SHAP analysis on a previously trained model, used by the CLI.preprocessing: performs all of the preprocessing described above.
fastprop.utils
calculate_descriptors: wraps themordredcommunitydescriptor calculator.linear_baseline: trains a basic linear model on the same inputs tofastpropto act as a baseline.descriptor_lists: hardcoded lists of all of the descriptors implemented inmordredcommunity.select_descriptors: the script to retrieve themordredcommunitymodules based on the strings in the above file (mordredcommunityhas a weird interface; thus, it is wrapped).load_data: short wrappers topandasCSV loading utility, but specialized for the output frommordredcommunityandfastprop.validate_config: WIP validate the input from the command line.
fastprop.cli
`fastprop_cli`` contains all the CLI code which is likely not useful in use from a script. If you wish to extend the CLI, check the inline documentation there.
Benchmarks
The benchmarks directory contains the scripts needed to perform the studies (see benchmarks/README.md for more detail, they are a great way to learn how to use fastprop) as well as the actual results, which are also summarized here.
See the benchmarks or the paper for additional details for each benchmark, including a better description of what the 'literature best' is as well as more information about the reported performance metric.
Regression
| Benchmark | Number Samples (k) | Metric | Literature Best | fastprop |
Chemprop | Speedup |
|---|---|---|---|---|---|---|
| QM9 | ~130 | L1 | 0.0047 $^a$ | 0.0063 | 0.0081 $^a$ | ~ |
| OCELOTv1 | ~25 | GEOMEAN(L1) | 0.128 $^b$ | 0.148 | 0.140 $^b$ | ~ |
| QM8 | ~22 | L1 | 0.016 $^a$ | 0.016 | 0.019 $^a$ | ~ |
| ESOL | ~1.1 | L2 | 0.55 $^c$ | 0.57 | 0.67 $^c$ | ~ |
| FreeSolv | ~0.6 | L2 | 1.29 $^d$ | 1.06 | 1.37 $^d$ | ~ |
| Flash | ~0.6 | MAPE/RMSE | 2.5/13.2 $^e$ | 2.7/13.5 | ~/21.2 $^x$ | 5m43s/1m20s |
| YSI | ~0.4 | MdAE/MAE | 2.9~28.6 $^f$ | 8.3/20.2 | ~/21.8 $^x$ | 4m3s/2m15s |
| HOPV15 Subset | ~0.3 | L1 | 1.32 $^g$ | 1.44 | WIP | WIP |
| Fubrain | ~0.3 | L2 | 0.44 $^h$ | 0.19 | 0.22 $^x$ | 5m11s/54s |
| PAH | ~0.06 | R2 | 0.99 $^g$ | 0.96 | 0.75 $^x$ | 36s/2m12s |
Classification
| Benchmark | Number Samples (k) | Metric | Literature Best | fastprop |
Chemprop | Speedup |
|---|---|---|---|---|---|---|
| HIV (binary) | ~41 | AUROC | 0.81 $^a$ | 0.81 | 0.77 $^a$ | ~ |
| HIV (ternary) | ~41 | AUROC | ~ | 0.83 | WIP | ~ |
| QuantumScents | ~3.5 | AUROC | 0.88 $^j$ | 0.91 | 0.85 $^j$ | ~ |
| SIDER | ~1.4 | AUROC | 0.67 $^c$ | 0.66 | 0.57 $^c$ | ~ |
| Pgp | ~1.3 | AUROC | WIP | 0.93 | WIP | ~ |
| ARA | ~0.8 | Acc./AUROC | 0.91/0.95 $^k$ | 0.88/0.95 | 0.82/0.90 $^x$ | 16m54s/2m7s |
References
- a: UniMol (10.26434/chemrxiv-2022-jjm0j-v4)
- b: MHNN (10.48550/arXiv.2312.13136)
- c: CMPNN (10.5555/3491440.3491832)
- d: DeepDelta (10.1186/s13321-023-00769-x)
- e: Saldana et al. (10.1021/ef200795j)
- f: Das et al. (10.1016/j.combustflame.2017.12.005)
- g: Eibeck et al. (10.1021/acsomega.1c02156)
- h: Esaki et al. (10.1021/acs.jcim.9b00180)
- i: Arockiaraj et al. (10.1080/1062936X.2023.2239149)
- j: Burns et al. (10.1021/acs.jcim.3c01338)
- k: DeepAR (10.1186/s13321-023-00721-z)
- x: Run in this repository, see
benchmarks.
Developing fastprop
Bug reports, feature requests, and pull requests are welcome and encouraged!
fastprop is built around PyTorch lightning, which defines a rigid API for implementing models that is followed here.
See the section on the package layout for information on where all the other functions are, and check out the docstrings and inline comments in each file for more information on what each does.
Note that the pyproject.toml defines optional dev and bmark packages, which will get you setup with the same dependencies used for CI and benchmarking.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastprop-1.0.0b1.tar.gz.
File metadata
- Download URL: fastprop-1.0.0b1.tar.gz
- Upload date:
- Size: 37.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96e3077e1e932dbbb18a873bd66b075b9f4b9f7a6d5c9fb08a134710032fa066
|
|
| MD5 |
30704642900e72b67c60994955229073
|
|
| BLAKE2b-256 |
f5302d89faa578367c20fd400536aba2c98b0fe0f74329944dd4bf25c2c4dd35
|
File details
Details for the file fastprop-1.0.0b1-py3-none-any.whl.
File metadata
- Download URL: fastprop-1.0.0b1-py3-none-any.whl
- Upload date:
- Size: 37.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df27965f8fa5728918e2f321dd567070cfe0e6a746a56a3ad1f88e23e339f9fc
|
|
| MD5 |
dc15970a5152ac918cd68249d5150077
|
|
| BLAKE2b-256 |
85322880afe188eb36068e020ca0178df9cc06b06abfd4db287000462d7c2f20
|