https://github.com/aspuru-guzik-group/chemical_vae

Code for 10.1021/acscentsci.7b00572, now running on Keras 2.0 and Tensorflow

https://github.com/aspuru-guzik-group/chemical_vae

Science Score: 33.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 2 DOI reference(s) in README
  • Academic publication links
    Links to: arxiv.org, acs.org
  • Committers with academic emails
    1 of 2 committers (50.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.0%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Code for 10.1021/acscentsci.7b00572, now running on Keras 2.0 and Tensorflow

Basic Info
  • Host: GitHub
  • Owner: aspuru-guzik-group
  • License: apache-2.0
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 38.1 MB
Statistics
  • Stars: 518
  • Watchers: 34
  • Forks: 188
  • Open Issues: 41
  • Releases: 0
Created over 8 years ago · Last pushed over 3 years ago
Metadata Files
Readme License

README.md

chemical VAE

This repository contains the framework and code for constructing a variational autoencoder (VAE) for use with molecular SMILES, as described in doi:10.1021/acscentsci.7b00572, with preprint at https://arxiv.org/pdf/1610.02415.pdf.

In short, molecular SMILES are encoded into a code vector representation, and can be decoded from the code representation back to molecular SMILES. The autoencoder may also be jointly trained with property prediction to help shape the latent space. The new latent space can then be optimized upon to find the molecules with the most optimized properties of interest.

In our example, we perform encoding/decoding with the ZINC dataset, and shape the latent space on prediction on logP, QED, and SAS properties.

Upcoming updates:

  • [ ] Updated Docker environment
  • [ ] Improved tutorial

Questions, problems?

Make a github issue :smile:. Please be as clear and descriptive as possible.

How to install

Requirements:

An Anaconda python environment is recommend. Check the environment.yml file, but primarily: - Python >= 3.5 - Keras >= 2.0.0 && <= 2.0.7 - Tensorflow == 1.1 - RDKit - Numpy

Jupyter notebook is required to run the ipynb examples. Make sure that the Keras backend is set to use Tensorflow

via Anaconda (recommended way)

Create a conda enviroment: conda env create -f environment.yml source activate chemvae python setup.py install

via pip

Assuming you have all the requirements:

pip install git+https://github.com/aspuru-guzik-group/chemical_vae.git

Example: ZINC dataset

This repository contains an example of how to run the autoencoder on the zinc dataset.

First, take a look at the zinc directory. Parameters are set in the following jsons - exp.json - Sets parameters for location of data, global experimental parameters number of epochs to run, properties to predict etc.

For a full description of all the parameters, see hyperparameters.py ; parameters set in exp.json will overwrite parameters in hyperparameters.py, and parameters set in params.json will overwrite parameters in both exp.json and hyperparameters.py

Once you have set the parameters, run the autoencoder using the command from directory with exp.json:

python -m chemvae.train_vae

(Make sure you copy examples directories to not overwrite the trained weights (*.h5))

Components

train_vae.py : main script for training variational autoencoder Accepts arguments -d ... Example of how to run (with example directory here)

  • models.py - Library of models, contains the encoder, decoder and property prediction models.
  • tgruk2gpu.py - Custom keras layer containing custom teacher forcing/sampling
  • sampledrnntf.py - Custom rnn function for tgruk2gpu.py, written in tensorflow backend.
  • hyperparameters.py - Some default parameter settings for the autoencoder
  • mol_utils.py - library for parsing SMILES into one-hot encoding and vice versa
  • mol_callbacks.py - library containing callbacks used by train_vae.py
    • Includes Weight_Annealer callback, which is used to update the weight of the KL loss component
  • vae_utils.py - utility functions for an autoencoder object, used post processing.

Authors:

This software is written by Jennifer Wei, Benjamin Sanchez-Lengeling, Dennis Sheberla, Rafael Gomez-Bomberelli, and Alan Aspuru-Guzik (alan@aspuru.com). It is based on the work published in https://arxiv.org/pdf/1610.02415.pdf by

Feel free to reach out to us with any questions!

Funding acknowledgements

"This work was supported by the Computational Chemical Sciences Program funded by the U.S.Department of Energy, Office of Science, Basic Energy Sciences, under Award #DE- FG02-17ER16362"

Owner

  • Name: Aspuru-Guzik group repo
  • Login: aspuru-guzik-group
  • Kind: organization

GitHub Events

Total
  • Watch event: 44
  • Fork event: 9
Last Year
  • Watch event: 44
  • Fork event: 9

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 18
  • Total Committers: 2
  • Avg Commits per committer: 9.0
  • Development Distribution Score (DDS): 0.222
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
benjamin sanchez b****n@g****m 14
Jennifer Wei j****i@f****u 4
Committer Domains (Top 20 + Academic)

Dependencies

requirements.txt pypi
  • Keras ==2.0.7
  • PyYAML *
  • numpy *
  • pandas ==0.19.2
  • tensorflow_gpu ==1.1.0
setup.py pypi
  • keras <=2.0.7
environment.yml pypi