pbenner / equitrain

Generic training script for Equiformer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation

pip install torch==2.3.0 torchvision torchaudio -f https://download.pytorch.org/whl/cu121
pip install torch-cluster torch-scatter -f https://data.pyg.org/whl/torch-2.3.0+cu121.html
pip install -e .

Execution

    mkdir data

    equitrain-preprocess \
           --train_file="data-train.xyz" \
           --valid_file="data-valid.xyz" \
           --atomic_numbers="[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 89, 90, 91, 92, 93, 94]" \
           --r_max=4.5 \
           --h5_prefix="data/" \
           --compute_statistics \
           --E0s="average" \
           --seed=42
    mkdir result
    equitrain --train-file data/data-train.h5 --valid-file data/data-valid.h5 --statistics-file data/statistics.json --output-dir result

Multi-GPU execution

train_equiformer.py

from equitrain import get_args_parser
from equitrain import train

def main():

    r = 4.5

    args = get_args_parser().parse_args()
    args.train_file = f'data-r{r}/train.h5'
    args.valid_file = f'data-r{r}/valid.h5'
    args.statistics_file = f'data-r{r}/statistics.json'
    args.output_dir = 'result-test'

    train(args)

if __name__ == "__main__":
    main()
    accelerate launch --num-processes=2 train_equiformer.py

TODO

  • Implement stress predictions

About

Generic training script for Equiformer


Languages

Language:Python 100.0%