test_ignite.py 2.1 KB
Newer Older
1
2
3
4
5
6
import sys

if sys.version_info.major >= 3:
    import os
    import unittest
    import torch
Gao, Xiang's avatar
Gao, Xiang committed
7
    from ignite.engine import create_supervised_trainer, \
8
        create_supervised_evaluator, Events
9
10
11
12
    import torchani
    import torchani.data

    path = os.path.dirname(os.path.realpath(__file__))
13
    path = os.path.join(path, '../dataset/ani_gdb_s01.h5')
14
    chunksize = 4
15
    threshold = 1e-5
16
17
18
19
20
21
    dtype = torch.float32
    device = torch.device('cpu')

    class TestIgnite(unittest.TestCase):

        def testIgnite(self):
22
23
            shift_energy = torchani.EnergyShifter()
            ds = torchani.data.ANIDataset(
24
                path, chunksize, device=device,
25
                transform=[shift_energy.dataset_subtract_sae])
26
27
            ds = torch.utils.data.Subset(ds, [0])
            loader = torchani.data.dataloader(ds, 1)
28
29
30
31
32
33
34
35
36
37
38
            aev_computer = torchani.SortedAEV(dtype=dtype, device=device)
            nnp = torchani.models.NeuroChemNNP(aev_computer)

            class Flatten(torch.nn.Module):

                def __init__(self, model):
                    super(Flatten, self).__init__()
                    self.model = model

                def forward(self, *input):
                    return self.model(*input).flatten()
39

40
41
42
            nnp = Flatten(nnp)
            batch_nnp = torchani.models.BatchModel(nnp)
            container = torchani.ignite.Container({'energies': batch_nnp})
43
            optimizer = torch.optim.Adam(container.parameters())
Gao, Xiang's avatar
Gao, Xiang committed
44
45
            trainer = create_supervised_trainer(
                container, optimizer, torchani.ignite.energy_mse_loss)
Gao, Xiang's avatar
Gao, Xiang committed
46
            evaluator = create_supervised_evaluator(container, metrics={
Gao, Xiang's avatar
Gao, Xiang committed
47
                'RMSE': torchani.ignite.energy_rmse_metric
Gao, Xiang's avatar
Gao, Xiang committed
48
            })
49
50
51
52
53
54
55
56
57

            @trainer.on(Events.COMPLETED)
            def completes(trainer):
                evaluator.run(loader)
                metrics = evaluator.state.metrics
                self.assertLess(metrics['RMSE'], threshold)
                self.assertLess(trainer.state.output, threshold)

            trainer.run(loader, max_epochs=1000)
58
59
60

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