Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HIPS/neural-fingerprint
Convolutional nets which can take molecular graphs of arbitrary size as input.
https://github.com/HIPS/neural-fingerprint
Last synced: 2 months ago
JSON representation
Convolutional nets which can take molecular graphs of arbitrary size as input.
- Host: GitHub
- URL: https://github.com/HIPS/neural-fingerprint
- Owner: HIPS
- License: mit
- Created: 2014-06-19T16:47:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-23T17:41:49.000Z (almost 7 years ago)
- Last Synced: 2024-08-01T17:27:08.835Z (5 months ago)
- Language: TeX
- Homepage:
- Size: 50 MB
- Stars: 494
- Watchers: 58
- Forks: 160
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- awesome-graph-classification - [Python Reference
- StarryDivineSky - HIPS/neural-fingerprint
README
Neural Graph Fingerprints
=============This software package implements convolutional nets which can take molecular graphs of arbitrary size as input.
These are useful for predicting the properties of novel molecules, and are designed to be a drop-in replacement for Morgan or ECFP fingerprints.The paper describing the algorithm used is:
[Convolutional Networks on Graphs for Learning Molecular Fingerprints](http://arxiv.org/pdf/1509.09292.pdf)
by
David Duvenaud, Dougal Maclaurin, Jorge Aguilera-Iparraguirre, Rafael Gómez-Bombarelli, Timothy Hirzel, Alán Aspuru-Guzik, and Ryan P. Adams.
## How to install
This package requires:
* Scipy version >= 0.15.0
* [RDkit](http://www.rdkit.org/docs/Install.html)
* [Autograd](http:github.com/HIPS/autograd) (Just run `pip install autograd`)## Examples
This package includes a [regression example](examples/regression.py) and a [visualization example](examples/visualization.py) in the examples directory.
## Authors
This software was primarily written by [David Duvenaud](https://www.cs.toronto.edu/~duvenaud/), [Dougal Maclaurin](https://dougalmaclaurin.com/), and [Ryan P. Adams](http://www.seas.harvard.edu/directory/~rpa).
Please feel free to submit any bugs or feature requests.
We'd also love to hear about your experiences with this package in general.
Drop us an email!We want to thank Jennifer Wei for helpful contributions and advice, and Analog Devices International and Samsung Advanced Institute of Technology for their generous support.
## TensorFlow and Theano implementations
A Tensorflow implementation of a closely-related algorithm can be found at [https://github.com/momeara/DeepSEA](https://github.com/momeara/DeepSEA)
and a Theano implementation can be found at [https://github.com/debbiemarkslab/neural-fingerprint-theano](https://github.com/debbiemarkslab/neural-fingerprint-theano)