Skip to content

xiaoxj2/chemical_vae

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 😄. 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.
  • tgru_k2_gpu.py - Custom keras layer containing custom teacher forcing/sampling
  • sampled_rnn_tf.py - Custom rnn function for tgru_k2_gpu.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!

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%