test_ensemble.py 1.54 KB
Newer Older
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
import unittest
import pickle
import os
import torch
import torchani

path = os.path.dirname(os.path.realpath(__file__))
N = 97


class TestEnsemble(unittest.TestCase):

    def setUp(self):
        self.tol = 1e-5
        self.conformations = 20

    def _test_molecule(self, coordinates, species):
        prefix = torchani.buildin_model_prefix
        n = torchani.buildin_ensembles
        aev = torchani.SortedAEV(device=torch.device('cpu'))
        coordinates, species = aev.sort_by_species(coordinates, species)
        ensemble = torchani.ModelOnAEV(aev, derivative=True,
                                       from_nc=prefix,
                                       ensemble=n)
        models = [torchani.ModelOnAEV(aev, derivative=True,
                  from_nc=prefix + '{}/networks/'.format(i)) for i in range(n)]

        energy1, force1 = ensemble(coordinates, species)
        energy2, force2 = zip(*[m(coordinates, species) for m in models])
        energy2 = sum(energy2) / n
        force2 = sum(force2) / n
        energy_diff = (energy1 - energy2).abs().max().item()
        force_diff = (force1 - force2).abs().max().item()
        self.assertLess(energy_diff, self.tol)
        self.assertLess(force_diff, self.tol)

    def testGDB(self):
        for i in range(N):
            datafile = os.path.join(path, 'test_data/{}'.format(i))
            with open(datafile, 'rb') as f:
                coordinates, species, _, _, _, _ = pickle.load(f)
                self._test_molecule(coordinates, species)


if __name__ == '__main__':
    unittest.main()