test_msa.py 7.66 KB
Newer Older
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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.

import torch
import numpy as np
import unittest
18
19
20
21
22
23
24
25
26
27
28
29
30
from openfold.model.msa import (
    MSARowAttentionWithPairBias,
    MSAColumnAttention,
    MSAColumnGlobalAttention,
)
from openfold.utils.tensor_utils import tree_map
import tests.compare_utils as compare_utils
from tests.config import consts

if(compare_utils.alphafold_is_installed()):
    alphafold = compare_utils.import_alphafold()
    import jax
    import haiku as hk
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
31
32
33
34


class TestMSARowAttentionWithPairBias(unittest.TestCase):
    def test_shape(self): 
35
36
37
38
39
        batch_size = consts.batch_size
        n_seq = consts.n_seq
        n_res = consts.n_res
        c_m = consts.c_m
        c_z = consts.c_z
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
40
41
        c = 52
        no_heads = 4
42
        chunk_size=None
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
43

44
        mrapb = MSARowAttentionWithPairBias(c_m, c_z, c, no_heads, chunk_size)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
45

46
47
        m = torch.rand((batch_size, n_seq, n_res, c_m))
        z = torch.rand((batch_size, n_res, n_res, c_z))
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
48
49
50
51
52
53
54

        shape_before = m.shape
        m = mrapb(m, z)
        shape_after = m.shape

        self.assertTrue(shape_before == shape_after)

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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
    @compare_utils.skip_unless_alphafold_installed()
    def test_compare(self):
        def run_msa_row_att(msa_act, msa_mask, pair_act):
            config = compare_utils.get_alphafold_config()
            c_e = config.model.embeddings_and_evoformer.evoformer
            msa_row = alphafold.model.modules.MSARowAttentionWithPairBias(
                c_e.msa_row_attention_with_pair_bias, 
                config.model.global_config
            )
            act = msa_row(
                msa_act=msa_act, msa_mask=msa_mask, pair_act=pair_act
            )
            return act
        
        f = hk.transform(run_msa_row_att)

        n_res = consts.n_res
        n_seq = consts.n_seq

        msa_act = np.random.rand(n_seq, n_res, consts.c_m).astype(np.float32)
        msa_mask = np.random.randint(
            low=0, high=2, size=(n_seq, n_res)
        ).astype(np.float32)
        pair_act = np.random.rand(n_res, n_res, consts.c_z).astype(np.float32)

        # Fetch pretrained parameters (but only from one block)]
        params = compare_utils.fetch_alphafold_module_weights(
            "alphafold/alphafold_iteration/evoformer/evoformer_iteration/" +
            "msa_row_attention"
        )
        params = tree_map(lambda n: n[0], params, jax.numpy.DeviceArray)

        out_gt = f.apply(
            params, None, msa_act, msa_mask, pair_act
        ).block_until_ready()
        out_gt = torch.as_tensor(np.array(out_gt))

        model = compare_utils.get_global_pretrained_openfold()
        out_repro = model.evoformer.blocks[0].msa_att_row(
            torch.as_tensor(msa_act).cuda(), 
            torch.as_tensor(pair_act).cuda(), 
            torch.as_tensor(msa_mask).cuda(),
        ).cpu()

        self.assertTrue(torch.all(torch.abs(out_gt - out_repro) < consts.eps))

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
101
102
103

class TestMSAColumnAttention(unittest.TestCase):
    def test_shape(self): 
104
105
106
107
        batch_size = consts.batch_size
        n_seq = consts.n_seq
        n_res = consts.n_res
        c_m = consts.c_m
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
108
109
110
111
112
        c = 44
        no_heads = 4

        msaca = MSAColumnAttention(c_m, c, no_heads)

113
        x = torch.rand((batch_size, n_seq, n_res, c_m))
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
114
115
116
117
118
119
120

        shape_before = x.shape
        x = msaca(x)
        shape_after = x.shape

        self.assertTrue(shape_before == shape_after)

121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
    @compare_utils.skip_unless_alphafold_installed()
    def test_compare(self):
        def run_msa_col_att(msa_act, msa_mask):
            config = compare_utils.get_alphafold_config()
            c_e = config.model.embeddings_and_evoformer.evoformer
            msa_col = alphafold.model.modules.MSAColumnAttention(
                c_e.msa_column_attention, 
                config.model.global_config
            )
            act = msa_col(
                msa_act=msa_act, msa_mask=msa_mask
            )
            return act
        
        f = hk.transform(run_msa_col_att)

        n_res = consts.n_res
        n_seq = consts.n_seq

        msa_act = np.random.rand(n_seq, n_res, consts.c_m).astype(np.float32)
        msa_mask = np.random.randint(
            low=0, high=2, size=(n_seq, n_res)
        ).astype(np.float32)

        # Fetch pretrained parameters (but only from one block)]
        params = compare_utils.fetch_alphafold_module_weights(
            "alphafold/alphafold_iteration/evoformer/evoformer_iteration/" +
            "msa_column_attention"
        )
        params = tree_map(lambda n: n[0], params, jax.numpy.DeviceArray)

        out_gt = f.apply(
            params, None, msa_act, msa_mask
        ).block_until_ready()
        out_gt = torch.as_tensor(np.array(out_gt))

        model = compare_utils.get_global_pretrained_openfold()
        out_repro = model.evoformer.blocks[0].msa_att_col(
            torch.as_tensor(msa_act).cuda(), 
            torch.as_tensor(msa_mask).cuda(),
        ).cpu()

        self.assertTrue(torch.all(torch.abs(out_gt - out_repro) < consts.eps))

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
165
166
167

class TestMSAColumnGlobalAttention(unittest.TestCase):
    def test_shape(self): 
168
169
170
171
        batch_size = consts.batch_size
        n_seq = consts.n_seq
        n_res = consts.n_res
        c_m = consts.c_m
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
172
173
174
175
176
        c = 44
        no_heads = 4

        msagca = MSAColumnGlobalAttention(c_m, c, no_heads)

177
        x = torch.rand((batch_size, n_seq, n_res, c_m))
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
178
179
180
181
182
183
184

        shape_before = x.shape
        x = msagca(x)
        shape_after = x.shape

        self.assertTrue(shape_before == shape_after)

185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
    @compare_utils.skip_unless_alphafold_installed()
    def test_compare(self):
        def run_msa_col_global_att(msa_act, msa_mask):
            config = compare_utils.get_alphafold_config()
            c_e = config.model.embeddings_and_evoformer.evoformer
            msa_col = alphafold.model.modules.MSAColumnGlobalAttention(
                c_e.msa_column_attention, 
                config.model.global_config,  
                name="msa_column_global_attention"
            )
            act = msa_col(msa_act=msa_act, msa_mask=msa_mask)
            return act
        
        f = hk.transform(run_msa_col_global_att)
    
        n_res = consts.n_res
        n_seq = consts.n_seq
        c_e = consts.c_e
    
        msa_act = np.random.rand(n_seq, n_res, c_e)
        msa_mask = np.random.randint(low=0, high=2, size=(n_seq, n_res))
    
        # Fetch pretrained parameters (but only from one block)]
        params = compare_utils.fetch_alphafold_module_weights(
            "alphafold/alphafold_iteration/evoformer/extra_msa_stack/" +
            "msa_column_global_attention"
        )
        params = tree_map(lambda n: n[0], params, jax.numpy.DeviceArray)
        
        out_gt = f.apply(
            params, None, msa_act, msa_mask
        ).block_until_ready()
        out_gt = torch.as_tensor(np.array(out_gt.block_until_ready()))
    
        model = compare_utils.get_global_pretrained_openfold()
        out_repro = model.extra_msa_stack.stack.blocks[0].msa_att_col(
            torch.as_tensor(msa_act, dtype=torch.float32).cuda(), 
            mask=torch.as_tensor(msa_mask, dtype=torch.float32).cuda(), 
        ).cpu()
    
        self.assertTrue(torch.max(torch.abs(out_gt - out_repro) < consts.eps))

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
227
228
229

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