|
1 |
| -# TorchMD-net |
| 1 | +# TorchMD-NET |
2 | 2 |
|
3 |
| -TorchMD-Net provides state-of-the-art graph neural networks and equivariant transformer neural networks potentials for learning molecular potentials. It offers an efficient and fast implementation and it is integrated in GPU-accelerated molecular dynamics code like [ACEMD](https://www.acellera.com/products/molecular-dynamics-software-gpu-acemd/) and [OpenMM](https://www.openmm.org). See the full paper at https://arxiv.org/abs/2202.02541. |
| 3 | +TorchMD-NET provides state-of-the-art graph neural networks and equivariant transformer neural networks potentials for learning molecular potentials. It offers an efficient and fast implementation and it is integrated in GPU-accelerated molecular dynamics code like [ACEMD](https://www.acellera.com/products/molecular-dynamics-software-gpu-acemd/) and [OpenMM](https://www.openmm.org). See the full paper at https://arxiv.org/abs/2202.02541. |
4 | 4 |
|
5 | 5 | ## Installation
|
6 |
| -Create a new conda environment using Python 3.8 via |
7 |
| -``` |
8 |
| -conda create --name torchmd python=3.8 |
9 |
| -conda activate torchmd |
10 |
| -``` |
11 | 6 |
|
12 |
| -### Install PyTorch |
13 |
| -Then, install PyTorch according to your hardware specifications (more information [here](https://pytorch.org/get-started/locally/#start-locally)), e.g. for CUDA 11.1 and the most recent version of PyTorch use |
| 7 | +Clone the repository: |
14 | 8 | ```
|
15 |
| -conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia |
| 9 | +git clone https://github.com/torchmd/torchmd-net.git |
| 10 | +cd torchmd-net |
16 | 11 | ```
|
17 |
| -### Install PyTorch Geometric |
18 |
| -Install `pytorch-geometric` with its dependencies through |
| 12 | + |
| 13 | +Create a Conda environment and activate it: |
19 | 14 | ```
|
20 |
| -conda install pytorch-geometric -c rusty1s -c conda-forge |
| 15 | +conda env create -f environment.yml |
| 16 | +conda activate torchmd-net |
21 | 17 | ```
|
22 |
| -To install PyTorch Geometric via pip or for PyTorch < 1.8, see https://github.com/rusty1s/pytorch_geometric#installation. |
23 | 18 |
|
24 |
| -### Install TorchMD-Net |
25 |
| -Download and install the `torchmd-net` repository via |
| 19 | +Install TorchMD-NET into the Conda environment: |
26 | 20 | ```
|
27 |
| -git clone https://github.com/compsciencelab/torchmd-net.git |
28 |
| -pip install -e torchmd-net/ |
| 21 | +pip install -e . |
29 | 22 | ```
|
30 | 23 |
|
31 | 24 | ## Performance
|
32 |
| -The TorchMD-net equivariant Transformer (ET) is competitive with previous methods on the MD17 benchmark dataset. |
| 25 | +The TorchMD-NET equivariant Transformer (ET) is competitive with previous methods on the MD17 benchmark dataset. |
33 | 26 |
|
34 | 27 |
|
35 | 28 | 
|
|
0 commit comments