ORDerly
Chemical reaction data & benchmarks. Extraction and cleaning of data from Open Reaction Database (ORD)
Install / Use
/learn @sustainable-processes/ORDerlyREADME
ORDerly
This is the code for ORDerly: Datasets and benchmarks for chemical reaction data, which has been published in JCIM.
🧪 Cleaning chemical reaction data 🧪
🎯 Chemical Reaction Data Benchmarks 🎯
🤖 Chemical Reaction Transformer Models 🤖
Quick Install
Requires Python 3.10 (Tested on MacOS and Linux)
pip install orderly
🤔 What is this?
Machine learning has the potential to provide tremendous value to chemistry. However, large amounts of clean high-quality data are needed to train models
ORDerly cleans chemical reaction data from the growing Open Reaction Database (ORD).
Use ORDerly to:
- Extract and clean your own datasets.
- Access the ORDerly benchmark datasets for predicting reaction products, conditions, retrosynthesis, and yield.
- Reproduce results from our paper including training a ML model to predict reaction conditions.
📖 Extract and clean a dataset
Download data from ORD
<!-- ```python -m orderly.download.ord``` This will create a folder called ```/data/ord/``` in your current directory, and download the data into ```ord/``` -->Data in ORD format should be placed in a folder called /data/ord/. You can either use your own data, or the open-source ORD data.
To download the ORD data follow the instructions in the ORD repository (i.e. download Git LFS and clone their repository. E.g. brew install git-lfs -> git lfs install -> git lfs pull). Then place the data within a folder called /data/ord/.
Extract data from the ORD files
python -m orderly.extract
If you want to run ORDerly on your own data, and want to specify the input and output path:
python -m orderly.extract --input_path="/data/ord/" --output_path="/data/orderly/"
This will generate a parquet file for each ORD file.
Clean the data
This will produce train and test parquet files, along with a .json file showing the arguments used and a .log file showing the operations run.
python -m orderly.clean
🚀 Download the condition prediction benchmark dataset
Reaction condition prediction is the problem of predicting the things "above the arrow" in chemical reactions.
<!-- Include image of a reactions -->There are three options for donwloading the benchmark.
- If you have orderly installed you can download the benchmark using this command:
python -m orderly.download.benchmark
-
Or you can either download the ORDerly condition prediction benchmark dataset directly
-
Or use the following code to download it (without installing ORDerly). Make sure to install needed dependencies first (shown below).
pip install requests fastparquet pandas
import pathlib
import zipfile
import pandas as pd
import requests
def download_benchmark(
benchmark_zip_file="orderly_benchmark.zip",
benchmark_directory="orderly_benchmark/",
version=2,
):
figshare_url = (
f"https://figshare.com/ndownloader/articles/23298467/versions/{version}"
)
print(f"Downloading benchmark from {figshare_url} to {benchmark_zip_file}")
r = requests.get(figshare_url, allow_redirects=True)
with open(benchmark_zip_file, "wb") as f:
f.write(r.content)
print("Unzipping benchmark")
benchmark_directory = pathlib.Path(benchmark_directory)
benchmark_directory.mkdir(parents=True, exist_ok=True)
with zipfile.ZipFile(benchmark_zip_file, "r") as zip_ref:
zip_ref.extractall(benchmark_directory)
download_benchmark()
train_df = pd.read_parquet("orderly_benchmark/orderly_benchmark_train.parquet")
test_df = pd.read_parquet("orderly_benchmark/orderly_benchmark_test.parquet")
</details>
📋 Reproducing results from paper
To reproduce the results from the paper, please clone the repository, and use poetry to install the requirements (see above). Towards the bottom of the makefile, you will find a comprehensive 8 step list of steps to generate all the datasets and reproduce all results presented in the paper.
Results
We run the condition prediction model on four different datasets, and find that trusting the labelling of the ORD data leads to overly confident test accuracy. We conclude that applying chemical logic to the reaction string is necessary to get a high-quality dataset, and that the best strategy for dealing with rare molecules is to delete reactions where they appear.
Top-3 exact match combination accuracy (%): frequency informed guess // model prediction // AIB%:
| Dataset | A (labeling; rare->"other") | B (labeling; rare->delete rxn) | C (reaction string; rare->"other") | D (reaction string; rare->delete rxn) | |--------------------|--------------------------------|---------------------------------|------------------------------------|--------------------------------------| | Solvents | 47 // 58 // 21% | 50 // 61 // 22% | 23 // 42 // 26% | 24 // 45 // 28% | | Agents | 54 // 70 // 35% | 58 // 72 // 32% | 19 // 39 // 25% | 21 // 42 // 27% | | Solvents & Agents | 31 // 44 // 19% | 33 // 47 // 21% | 4 // 21 // 18% | 5 // 24 // 21% |
Where AIB% is the Average Improvement of the model over the Baseline (i.e. a frequency informed guess), where $A_m$ is the accuracy of the model, and $A_B$ is the accuracy of the baseline:
$AIB = (A_m - A_b) / (1 - A_b)$
Full API documentation
Extraction
There are two different ways to extract data from ORD files, trusting the labelling, or using the reaction string (as specified in the trust_labelling boolean). Below you see all the arguments that can be passed to the extraction script, change as appropriate:
python -m orderly.extract --name_contains_substring="uspto" --trust_labelling=False --output_path="data/orderly/uspto_no_trust" --consider_molecule_names=False
Cleaning
There are also a number of customisable steps for the cleaning:
python -m orderly.clean --output_path="data/orderly/datasets_$(dataset_version)/orderly_no_trust_no_map.parquet" --ord_extraction_path="data/orderly/uspto_no_trust/extracted_ords" --molecules_to_remove_path="data/orderly/uspto_no_trust/all_molecule_names.csv" --min_frequency_of_occurrence=100 --map_rare_molecules_to_other=False --num_product=1 --num_reactant=2 --num_solv=2 --num_agent=3 --num_cat=0 --num_reag=0 --consistent_yield=False --scramble=True --train_size=0.9
A list of solvents (names and SMILES) commonly used in pharmaceutical chemistry can be found at orderly/data/solvents.csv
Regenerate ORDerly benchmarks
Start by extracting all USPTO data:
python -m orderly.extract --name_contains_substring="uspto" --trust_labelling=False --output_path="data/orderly/uspto" --consider_molecule_names=False
If you would like to extract all data in ORD (instead of just USPTO data) simply set name_contains_substring="". Now select your desired dataset:
ORDerly-condition
python -m orderly.clean --output_path="../orderly_generated_datasets/orderly_condition.parquet" --ord_extraction_path="data/orderly/extracted_ords" --molecules_to_remove_path="data/orderly/all_molecule_names.csv" --min_frequency_of_occurrence=100 --map_rare_molecules_to_other=False --set_unresolved_names_to_none_if_mapped_rxn_str_exists_else_del_rxn=True --remove_rxn_with_unresolved_names=False --set_unresolved_names_to_none=False --num_product=1 --num_reactant=2 --num_solv=2 --num_agent=3 --num_cat=0 --num_reag=0 --consistent_yield=False --scramble=False --train_size=0.9 --remove_reactions_with_no_reactants=True --remove_reactions_with_no_products=True --remove_reactions_with_no_solvents=False --remove_reactions_with_no_agents=False
ORDerly-forward
python -m orderly.clean --output_path="../orderly_benchmarks/orderly_forward.parquet" --ord_extraction_path="data/orderly/uspto/extracted_ords" --molecules_to_remove_path="data/orderly/uspto/all_molecule_names.csv" --min_frequency_of_occurrence=0 --map_rare_molecules_to_other=False --num_product=2 --num_reactant=3 --num_solv=3 --num_agent=3 --num_cat=0 --num_reag=0 --consistent_yield=False --scramble=True --train_size=0.9 --remove_reactions_with_no_reactants=True --remove_reactions_with_no_products=True --remove_reactions_with_no_solvents=False --remove_reactions_with_no_agents=False
ORDerly-retro
Related Skills
feishu-drive
345.9k|
things-mac
345.9kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
345.9kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
postkit
PostgreSQL-native identity, configuration, metering, and job queues. SQL functions that work with any language or driver
