dynamics 0.1.8

Molecular dynamics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This is the entry point for a standalone application to train a neural net model
//! to provide Amber-style force field paramers for small organic molecules not present in
//! Amber's GAFF2.dat. It generates per-atom FF name and partial charge, and per-molecule
//! FRCMOD-style overrides for bonded params. (Generally Dihedral and improper angles)
//!
//! Releavnt code is in teh `partial_charge_inference` folder`. We seem to need this entry point at the top level
//! to work properly.
//!
//! Run `cargo b --release --bin train --features "train-bin"`

mod partial_charge_inference;

fn main() {
    if let Err(e) = partial_charge_inference::train::run_training() {
        eprintln!("Error training: {e}");
    }
}