README.md 4.59 KB
Newer Older
Xiang Gao's avatar
Xiang Gao committed
1
# <img src=https://raw.githubusercontent.com/aiqm/torchani/master/logo1.png width=180/>  Accurate Neural Network Potential on PyTorch
Gao, Xiang's avatar
Gao, Xiang committed
2

3
4
5
6
7
8
Metrics:

![PyPI](https://img.shields.io/pypi/v/torchani.svg)
![PyPI - Downloads](https://img.shields.io/pypi/dm/torchani.svg)

Checks:
9
10
11

[![Actions Status](https://github.com/aiqm/torchani/workflows/docs/badge.svg)](https://github.com/aiqm/torchani/actions)
[![Actions Status](https://github.com/aiqm/torchani/workflows/flake8/badge.svg)](https://github.com/aiqm/torchani/actions)
12
[![Actions Status](https://github.com/aiqm/torchani/workflows/mypy/badge.svg)](https://github.com/aiqm/torchani/actions)
13
14
15
[![Actions Status](https://github.com/aiqm/torchani/workflows/runnable%20submodules/badge.svg)](https://github.com/aiqm/torchani/actions)
[![Actions Status](https://github.com/aiqm/torchani/workflows/tools/badge.svg)](https://github.com/aiqm/torchani/actions)
[![Actions Status](https://github.com/aiqm/torchani/workflows/unit%20tests/badge.svg)](https://github.com/aiqm/torchani/actions)
16
[![CodeFactor](https://www.codefactor.io/repository/github/aiqm/torchani/badge/master)](https://www.codefactor.io/repository/github/aiqm/torchani/overview/master)
Gao, Xiang's avatar
Gao, Xiang committed
17
[![Total alerts](https://img.shields.io/lgtm/alerts/g/aiqm/torchani.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/aiqm/torchani/alerts/)
Gao, Xiang's avatar
Gao, Xiang committed
18

19
Deploy:
20

21
22
[![Actions Status](https://github.com/aiqm/torchani/workflows/deploy-docs/badge.svg)](https://github.com/aiqm/torchani/actions)
[![Actions Status](https://github.com/aiqm/torchani/workflows/deploy-pypi/badge.svg)](https://github.com/aiqm/torchani/actions)
23

24
25
26
27
28
We only provide compatibility with nightly PyTorch, but you can check if stable PyTorch happens to be supported by looking at the following badge:

[![Actions Status](https://github.com/aiqm/torchani/workflows/stable-torch/badge.svg)](https://github.com/aiqm/torchani/actions)


Gao, Xiang's avatar
Gao, Xiang committed
29
TorchANI is a pytorch implementation of ANI. It is currently under alpha release, which means, the API is not stable yet. If you find a bug of TorchANI, or have some feature request, feel free to open an issue on GitHub, or send us a pull request.
Gao, Xiang's avatar
Gao, Xiang committed
30

Xiang Gao's avatar
Xiang Gao committed
31
32
<img src=https://raw.githubusercontent.com/aiqm/torchani/master/logo2.png width=500/>

Gao, Xiang's avatar
Gao, Xiang committed
33
34
# Install

35
TorchANI requires the latest preview version of PyTorch. You can install PyTorch by the following commands (assuming cuda10):
Gao, Xiang's avatar
Gao, Xiang committed
36

Richard Xue's avatar
Richard Xue committed
37
```bash
38
pip install numpy
39
pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu100/torch_nightly.html
Richard Xue's avatar
Richard Xue committed
40
```
41

42
43
If you updated TorchANI, you may also need to update PyTorch:

Richard Xue's avatar
Richard Xue committed
44
```bash
45
pip install --upgrade --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu100/torch_nightly.html
46
```
Gao, Xiang's avatar
Gao, Xiang committed
47

48
After installing the correct PyTorch, you can install TorchANI by:
Gao, Xiang's avatar
Gao, Xiang committed
49
50

```bash
51
pip install torchani
Gao, Xiang's avatar
Gao, Xiang committed
52
53
```

54
See also [PyTorch's official site](https://pytorch.org/get-started/locally/) for instructions of installing latest preview version of PyTorch.
Gao, Xiang's avatar
Gao, Xiang committed
55

56
57
58
59
60
61
To run the tests and examples, you must manually download a data package

```bash
./download.sh
```

Gao, Xiang's avatar
Gao, Xiang committed
62
# Paper
63
TorchANI [Preprint](https://chemrxiv.org/articles/TorchANI_A_Free_and_Open_Source_PyTorch_Based_Deep_Learning_Implementation_of_the_ANI_Neural_Network_Potentials/12218294)
Gao, Xiang's avatar
Gao, Xiang committed
64

65
* Gao X, Ramezanghorbani F, Isayev O, Smith JS, Roitberg AE. TorchANI: A Free and Open Source PyTorch Based Deep Learning Implementation of the ANI Neural Network Potentials. [![DOI for Citing](https://img.shields.io/badge/DOI-10.26434%2Fchemrxiv.12218294.v1-green.svg)](https://doi.org/10.26434/chemrxiv.12218294.v1)
Gao, Xiang's avatar
Gao, Xiang committed
66

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
See also: [isayev/ASE_ANI](https://github.com/isayev/ASE_ANI)

# Develop

To install TorchANI from GitHub:

```bash
git clone https://github.com/aiqm/torchani.git
cd torchani
pip install -e .
```

After TorchANI has been installed, you can build the documents by running `sphinx-build docs build`. But make sure you
install dependencies:
```bash
pip install sphinx sphinx-gallery pillow matplotlib sphinx_rtd_theme
```

85
86
To manually run unit tests, do `python setup.py nosetests`

87
88
89
90
If you opened a pull request, you could see your generated documents at https://aiqm.github.io/torchani-test-docs/ after you `docs` check succeed.
Keep in mind that this repository is only for the purpose of convenience of development, and only keeps the latest push.
The CI runing for other pull requests might overwrite this repository. You could rerun the `docs` check to overwrite this repo to your build.

Gao, Xiang's avatar
Gao, Xiang committed
91
# Note to TorchANI developers
Gao, Xiang's avatar
Gao, Xiang committed
92
93
94
95
96

Never commit to the master branch directly. If you need to change something, create a new branch, submit a PR on GitHub.

You must pass all the tests on GitHub before your PR can be merged.

Gao, Xiang's avatar
Gao, Xiang committed
97
Code review is required before merging pull request.