Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 1.12 KB

README.md

File metadata and controls

18 lines (16 loc) · 1.12 KB

PySIDT

This repository contains PySIDT, a package containing a set of low-data machine-learning algorithms for prediction of chemical properties based on the subgraph isomorphic tree generation (SIDT) approach originally developed in Johnson and Green 2024. While the algorithm in that work was specific to rate coefficients, this implementation can be applied to prediction of arbitrary properties. This implementation also incorporates uncertainty prepruning, as detailed in Pang et al. 2024.

Installation from source

  • Install PySIDT from source
    • git clone https://github.com/zadorlab/PySIDT.git
    • cd PySIDT
    • conda env create -f environment.yml
    • conda activate pysidt_env
    • pip install -e .

Install molecule from source to customize atomtypes

  • Install molecule from source
    • git clone https://github.com/ReactionMechanismGenerator/molecule.git
    • cd molecule
    • conda activate pysidt_env
    • make
    • pip install -e .