"docs/source/Installation.md" did not exist on "cf367df964c68cf0811ed57a09c45b62759b6575"
test_permutation.py 4.47 KB
Newer Older
Geoffrey Yu's avatar
Geoffrey Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2021 AlQuraishi Laboratory
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from pathlib import Path
import pickle
import torch
import torch.nn as nn
import numpy as np
import unittest
from openfold.config import model_config
from openfold.data import data_transforms
from openfold.model.model import AlphaFold
Geoffrey Yu's avatar
Geoffrey Yu committed
24
from openfold.utils.loss import AlphaFoldMultimerLoss
Geoffrey Yu's avatar
Geoffrey Yu committed
25
26
from openfold.utils.tensor_utils import tensor_tree_map
from tests.config import consts
27
28
29
import logging
logger = logging.getLogger(__name__)
import os
Geoffrey Yu's avatar
Geoffrey Yu committed
30
31
32
33
34
35
36
37
38
39
40
41
from tests.data_utils import (
    random_template_feats,
    random_extra_msa_feats,
)
class TestPermutation(unittest.TestCase):
    def setUp(self):
        """
        Firstly setup model configs and model as in
        test_model.py

        In the test case, use PDB ID 1e4k as the label
        """
42
        self.test_data_dir = os.path.join(os.getcwd(),"tests/test_data")
Geoffrey Yu's avatar
Geoffrey Yu committed
43
44
        self.label_ids = ['label_1','label_1','label_2','label_2','label_2']
        self.asym_id = [1]*9+[2]*9+[3]*13+[4]*13 + [5]*13
Geoffrey Yu's avatar
Geoffrey Yu committed
45
    def test_dry_run(self):
46
47
        n_seq = consts.n_seq
        n_templ = consts.n_templ
Geoffrey Yu's avatar
Geoffrey Yu committed
48
        n_res = len(self.asym_id)
49
50
        n_extra_seq = consts.n_extra

Geoffrey Yu's avatar
Geoffrey Yu committed
51
52
53
54
55
56
        c = model_config(consts.model, train=True)
        c.model.evoformer_stack.no_blocks = 4  # no need to go overboard here
        c.model.evoformer_stack.blocks_per_ckpt = None  # don't want to set up
        # deepspeed for this test

        model = AlphaFold(c)
Geoffrey Yu's avatar
Geoffrey Yu committed
57
        multimer_loss = AlphaFoldMultimerLoss(c)
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
        example_label = [pickle.load(open(os.path.join(self.test_data_dir,f"{i}.pkl"),'rb')) 
                         for i in self.label_ids]
        batch = {}
        tf = torch.randint(c.model.input_embedder.tf_dim - 1, size=(n_res,))
        batch["target_feat"] = nn.functional.one_hot(
            tf, c.model.input_embedder.tf_dim
        ).float()
        batch["aatype"] = torch.argmax(batch["target_feat"], dim=-1)
        batch["residue_index"] = torch.arange(n_res)

        batch["msa_feat"] = torch.rand((n_seq, n_res, c.model.input_embedder.msa_dim))
        t_feats = random_template_feats(n_templ, n_res)
        batch.update({k: torch.tensor(v) for k, v in t_feats.items()})
        extra_feats = random_extra_msa_feats(n_extra_seq, n_res)
        batch.update({k: torch.tensor(v) for k, v in extra_feats.items()})
        batch["msa_mask"] = torch.randint(
            low=0, high=2, size=(n_seq, n_res)
        ).float()
        batch["seq_mask"] = torch.randint(low=0, high=2, size=(n_res,)).float()
        batch.update(data_transforms.make_atom14_masks(batch))
        batch["no_recycling_iters"] = torch.tensor(2.)
Geoffrey Yu's avatar
Geoffrey Yu committed
79

80
81
82
83
84
        if consts.is_multimer:
            #
            # Modify asym_id, entity_id and sym_id so that it encodes 
            # 2 chains
            # #
Geoffrey Yu's avatar
Geoffrey Yu committed
85
            asym_id = self.asym_id
86
87
            batch["asym_id"] = torch.tensor(asym_id,dtype=torch.float64)
            # batch["entity_id"] = torch.randint(0, 1, size=(n_res,))
Geoffrey Yu's avatar
Geoffrey Yu committed
88
            batch['entity_id'] = torch.tensor([1]*18+[2]*39,dtype=torch.float64)
89
            batch["sym_id"] = torch.tensor(asym_id,dtype=torch.float64)
Geoffrey Yu's avatar
Geoffrey Yu committed
90
            # batch["num_sym"] = torch.tensor([1]*18+[2]*13,dtype=torch.int64) # currently there are just 2 chains
91
92
93
94
            batch["extra_deletion_matrix"] = torch.randint(0, 2, size=(n_extra_seq, n_res))
        add_recycling_dims = lambda t: (
            t.unsqueeze(-1).expand(*t.shape, c.data.common.max_recycling_iters)
        )
Geoffrey Yu's avatar
Geoffrey Yu committed
95
96
97
        add_batch_size_dimension = lambda t: (
            t.unsqueeze(0)
        )
Geoffrey Yu's avatar
Geoffrey Yu committed
98
        batch = tensor_tree_map(add_recycling_dims, batch)
Geoffrey Yu's avatar
Geoffrey Yu committed
99
100
101
        batch = tensor_tree_map(add_batch_size_dimension, batch)
        for k,v in batch.items():
            print(f"{k}:{v.shape}")
102
        with torch.no_grad():
Geoffrey Yu's avatar
Geoffrey Yu committed
103
            out = model(batch)
Geoffrey Yu's avatar
Geoffrey Yu committed
104
105
106
            print(f"finished foward on batch with batch_size dim")
            # permutated_labels = multimer_loss(out,(batch,example_label))
            # print(f"permuated_labels is {type(permutated_labels)} and keys are:\n {permutated_labels.keys()}")