-
Notifications
You must be signed in to change notification settings - Fork 2
/
_dimenet_conv.py
400 lines (337 loc) · 18.9 KB
/
_dimenet_conv.py
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
47
48
49
50
51
52
53
54
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
import tensorflow as tf
from kgcnn.layers.base import GraphBaseLayer
from kgcnn.layers.modules import Dense, LazyMultiply, LazyAdd
from kgcnn.layers.aggr import AggregateLocalEdges
from kgcnn.layers.gather import GatherNodesOutgoing
from kgcnn.layers.mlp import GraphMLP
from kgcnn.layers.update import ResidualLayer
from kgcnn.ops.polynom import spherical_bessel_jn_zeros, spherical_bessel_jn_normalization_prefactor, \
tf_spherical_bessel_jn, tf_spherical_harmonics_yl
@tf.keras.utils.register_keras_serializable(package='kgcnn', name='DimNetInteractionPPBlock')
class DimNetInteractionPPBlock(GraphBaseLayer):
"""DimNetPP Interaction Block as defined by `DimNetPP <https://arxiv.org/abs/2011.14115>`_ .
Args:
emb_size: Embedding size used for the messages
int_emb_size (int): Embedding size used for interaction triplets
basis_emb_size: Embedding size used inside the basis transformation
num_before_skip: Number of residual layers in interaction block before skip connection
num_after_skip: Number of residual layers in interaction block before skip connection
use_bias (bool, optional): Use bias. Defaults to True.
pooling_method (str): Pooling method information for layer. Default is 'sum'.
activation (str): Activation function. Default is "kgcnn>swish".
kernel_regularizer: Kernel regularization. Default is None.
bias_regularizer: Bias regularization. Default is None.
activity_regularizer: Activity regularization. Default is None.
kernel_constraint: Kernel constrains. Default is None.
bias_constraint: Bias constrains. Default is None.
kernel_initializer: Initializer for kernels. Default is 'kgcnn>glorot_orthogonal'.
bias_initializer: Initializer for bias. Default is 'zeros'.
"""
def __init__(self, emb_size,
int_emb_size,
basis_emb_size,
num_before_skip,
num_after_skip,
use_bias=True,
pooling_method="sum",
activation='kgcnn>swish', # default is 'kgcnn>swish'
kernel_regularizer=None,
bias_regularizer=None,
activity_regularizer=None,
kernel_constraint=None,
bias_constraint=None,
kernel_initializer="kgcnn>glorot_orthogonal", # default is 'kgcnn>glorot_orthogonal'
bias_initializer='zeros',
**kwargs):
super(DimNetInteractionPPBlock, self).__init__(**kwargs)
self.use_bias = use_bias
self.pooling_method = pooling_method
self.emb_size = emb_size
self.int_emb_size = int_emb_size
self.basis_emb_size = basis_emb_size
self.num_before_skip = num_before_skip
self.num_after_skip = num_after_skip
kernel_args = {"kernel_regularizer": kernel_regularizer, "activity_regularizer": activity_regularizer,
"bias_regularizer": bias_regularizer, "kernel_constraint": kernel_constraint,
"bias_constraint": bias_constraint, "kernel_initializer": kernel_initializer,
"bias_initializer": bias_initializer}
# Transformations of Bessel and spherical basis representations
self.dense_rbf1 = Dense(basis_emb_size, use_bias=False, **kernel_args)
self.dense_rbf2 = Dense(emb_size, use_bias=False, **kernel_args)
self.dense_sbf1 = Dense(basis_emb_size, use_bias=False, **kernel_args)
self.dense_sbf2 = Dense(int_emb_size, use_bias=False, **kernel_args)
# Dense transformations of input messages
self.dense_ji = Dense(emb_size, activation=activation, use_bias=True, **kernel_args)
self.dense_kj = Dense(emb_size, activation=activation, use_bias=True, **kernel_args)
# Embedding projections for interaction triplets
self.down_projection = Dense(int_emb_size, activation=activation, use_bias=False, **kernel_args)
self.up_projection = Dense(emb_size, activation=activation, use_bias=False, **kernel_args)
# Residual layers before skip connection
self.layers_before_skip = []
for i in range(num_before_skip):
self.layers_before_skip.append(
ResidualLayer(emb_size, activation=activation, use_bias=True, **kernel_args))
self.final_before_skip = Dense(emb_size, activation=activation, use_bias=True, **kernel_args)
# Residual layers after skip connection
self.layers_after_skip = []
for i in range(num_after_skip):
self.layers_after_skip.append(
ResidualLayer(emb_size, activation=activation, use_bias=True, **kernel_args))
self.lay_add1 = LazyAdd()
self.lay_add2 = LazyAdd()
self.lay_mult1 = LazyMultiply()
self.lay_mult2 = LazyMultiply()
self.lay_gather = GatherNodesOutgoing() # Are edges here
self.lay_pool = AggregateLocalEdges(pooling_method=pooling_method)
def call(self, inputs, **kwargs):
"""Forward pass.
Args:
inputs: [edges, rbf, sbf, angle_index]
- edges (tf.RaggedTensor): Edge embeddings of shape (batch, [M], F)
- rbf (tf.RaggedTensor): Radial basis features of shape (batch, [M], F)
- sbf (tf.RaggedTensor): Spherical basis features of shape (batch, [K], F)
- angle_index (tf.RaggedTensor): Angle indices referring to two edges of shape (batch, [K], 2)
Returns:
tf.RaggedTensor: Updated edge embeddings.
"""
x, rbf, sbf, id_expand = inputs
# Initial transformation
x_ji = self.dense_ji(x, **kwargs)
x_kj = self.dense_kj(x, **kwargs)
# Transform via Bessel basis
rbf = self.dense_rbf1(rbf, **kwargs)
rbf = self.dense_rbf2(rbf, **kwargs)
x_kj = self.lay_mult1([x_kj, rbf], **kwargs)
# Down-project embeddings and generate interaction triplet embeddings
x_kj = self.down_projection(x_kj, **kwargs)
x_kj = self.lay_gather([x_kj, id_expand], **kwargs)
# Transform via 2D spherical basis
sbf = self.dense_sbf1(sbf, **kwargs)
sbf = self.dense_sbf2(sbf, **kwargs)
x_kj = self.lay_mult1([x_kj, sbf], **kwargs)
# Aggregate interactions and up-project embeddings
x_kj = self.lay_pool([rbf, x_kj, id_expand], **kwargs)
x_kj = self.up_projection(x_kj, **kwargs)
# Transformations before skip connection
x2 = self.lay_add1([x_ji, x_kj], **kwargs)
for layer in self.layers_before_skip:
x2 = layer(x2, **kwargs)
x2 = self.final_before_skip(x2, **kwargs)
# Skip connection
x = self.lay_add2([x, x2],**kwargs)
# Transformations after skip connection
for layer in self.layers_after_skip:
x = layer(x, **kwargs)
return x
def get_config(self):
config = super(DimNetInteractionPPBlock, self).get_config()
config.update({"use_bias": self.use_bias, "pooling_method": self.pooling_method, "emb_size": self.emb_size,
"int_emb_size": self.int_emb_size, "basis_emb_size": self.basis_emb_size,
"num_before_skip": self.num_before_skip, "num_after_skip": self.num_after_skip})
conf_dense = self.dense_ji.get_config()
for x in ["kernel_regularizer", "activity_regularizer", "bias_regularizer", "kernel_constraint",
"bias_constraint", "kernel_initializer", "bias_initializer", "activation"]:
config.update({x: conf_dense[x]})
return config
@tf.keras.utils.register_keras_serializable(package='kgcnn', name='DimNetOutputBlock')
class DimNetOutputBlock(GraphBaseLayer):
"""DimNetPP Output Block as defined by `DimNetPP <https://arxiv.org/abs/2011.14115>`_ .
Args:
emb_size (list): List of node embedding dimension.
out_emb_size (list): List of edge embedding dimension.
num_dense (list): Number of dense layer for MLP.
num_targets (int): Number of output target dimension. Defaults to 12.
use_bias (bool, optional): Use bias. Defaults to True.
kernel_initializer: Initializer for kernels. Default is 'glorot_orthogonal' with fallback 'orthogonal'.
output_kernel_initializer: Initializer for last kernel. Default is 'zeros'.
bias_initializer: Initializer for bias. Default is 'zeros'.
activation (str): Activation function. Default is 'kgcnn>swish'.
kernel_regularizer: Kernel regularization. Default is None.
bias_regularizer: Bias regularization. Default is None.
activity_regularizer: Activity regularization. Default is None.
kernel_constraint: Kernel constrains. Default is None.
bias_constraint: Bias constrains. Default is None.
pooling_method (str): Pooling method information for layer. Default is 'mean'.
"""
def __init__(self, emb_size,
out_emb_size,
num_dense,
num_targets=12,
use_bias=True,
output_kernel_initializer="zeros", kernel_initializer='kgcnn>glorot_orthogonal',
bias_initializer='zeros',
activation='kgcnn>swish',
kernel_regularizer=None, bias_regularizer=None, activity_regularizer=None,
kernel_constraint=None, bias_constraint=None,
pooling_method="sum",
**kwargs):
"""Initialize layer."""
super(DimNetOutputBlock, self).__init__(**kwargs)
self.pooling_method = pooling_method
self.emb_size = emb_size
self.out_emb_size = out_emb_size
self.num_dense = num_dense
self.num_targets = num_targets
self.use_bias = use_bias
kernel_args = {"kernel_regularizer": kernel_regularizer, "activity_regularizer": activity_regularizer,
"kernel_constraint": kernel_constraint, "bias_initializer": bias_initializer,
"bias_regularizer": bias_regularizer, "bias_constraint": bias_constraint, }
self.dense_rbf = Dense(emb_size, use_bias=False, kernel_initializer=kernel_initializer, **kernel_args)
self.up_projection = Dense(out_emb_size, use_bias=False, kernel_initializer=kernel_initializer, **kernel_args)
self.dense_mlp = GraphMLP([out_emb_size] * num_dense, activation=activation,
kernel_initializer=kernel_initializer, use_bias=use_bias, **kernel_args)
self.dimnet_mult = LazyMultiply()
self.pool = AggregateLocalEdges(pooling_method=self.pooling_method)
self.dense_final = Dense(num_targets, use_bias=False, kernel_initializer=output_kernel_initializer,
**kernel_args)
def build(self, input_shape):
"""Build layer."""
super(DimNetOutputBlock, self).build(input_shape)
def call(self, inputs, **kwargs):
"""Forward pass.
Args:
inputs: [nodes, edges, tensor_index, state]
- nodes (tf.RaggedTensor): Node embeddings of shape (batch, [N], F)
- edges (tf.RaggedTensor): Edge or message embeddings of shape (batch, [M], F)
- rbf (tf.RaggedTensor): Edge distance basis of shape (batch, [M], F)
- tensor_index (tf.RaggedTensor): Edge indices referring to nodes of shape (batch, [M], 2)
Returns:
tf.RaggedTensor: Updated node embeddings of shape (batch, [N], F_T).
"""
# Calculate edge Update
n_atoms, x, rbf, idnb_i = inputs
g = self.dense_rbf(rbf, **kwargs)
x = self.dimnet_mult([g, x], **kwargs) #
x = self.pool([n_atoms, x, idnb_i], **kwargs)
x = self.up_projection(x, **kwargs)
x = self.dense_mlp(x, **kwargs)
x = self.dense_final(x, **kwargs)
return x
def get_config(self):
config = super(DimNetOutputBlock, self).get_config()
conf_mlp = self.dense_mlp.get_config()
for x in ["kernel_regularizer", "activity_regularizer", "bias_regularizer", "kernel_constraint",
"bias_constraint", "kernel_initializer", "bias_initializer", "activation"]:
config.update({x: conf_mlp[x][0]})
conf_dense_output = self.dense_final.get_config()
config.update({"output_kernel_initializer": conf_dense_output["kernel_initializer"]})
config.update({"pooling_method": self.pooling_method, "use_bias": self.use_bias})
config.update({"emb_size": self.emb_size, "out_emb_size": self.out_emb_size, "num_dense": self.num_dense,
"num_targets": self.num_targets})
return config
@tf.keras.utils.register_keras_serializable(package='kgcnn', name='EmbeddingDimeBlock')
class EmbeddingDimeBlock(tf.keras.layers.Layer):
"""Custom Embedding Block of `DimNetPP <https://arxiv.org/abs/2011.14115>`__ .
Naming of inputs here should match keras Embedding layer.
Args:
input_dim (int): Integer. Size of the vocabulary, i.e. maximum integer index + 1.
output_dim (int): Integer. Dimension of the dense embedding.
embeddings_initializer: Initializer for the embeddings matrix (see keras.initializers).
embeddings_regularizer: Regularizer function applied to the embeddings matrix (see keras.regularizers).
embeddings_constraint: Constraint function applied to the embeddings matrix (see keras.constraints).
"""
def __init__(self,
input_dim, # Vocabulary
output_dim, # Embedding size
embeddings_initializer='uniform',
embeddings_regularizer=None,
embeddings_constraint=None,
**kwargs):
super(EmbeddingDimeBlock, self).__init__(**kwargs)
self._supports_ragged_inputs = True
self.output_dim = output_dim
self.input_dim = input_dim
self.embeddings_initializer = tf.keras.initializers.get(embeddings_initializer)
self.embeddings_regularizer = tf.keras.regularizers.get(embeddings_regularizer)
self.embeddings_constraint = tf.keras.constraints.get(embeddings_constraint)
# Original implementation used initializer:
# embeddings_initializer = {'class_name': 'RandomUniform', 'config': {'minval': -1.7320508075688772,
# 'maxval': 1.7320508075688772, 'seed': None}}
self.embeddings = self.add_weight(name="embeddings", shape=(self.input_dim + 1, self.output_dim),
dtype=self.dtype, initializer=self.embeddings_initializer,
regularizer=self.embeddings_regularizer,
constraint=self.embeddings_constraint,
trainable=True)
def call(self, inputs, **kwargs):
"""Embedding of inputs. Forward pass."""
out = tf.gather(self.embeddings, tf.cast(inputs, dtype=tf.int32))
return out
def get_config(self):
config = super(EmbeddingDimeBlock, self).get_config()
config.update({"input_dim": self.input_dim, "output_dim": self.output_dim,
"embeddings_initializer": tf.keras.initializers.serialize(self.embeddings_initializer),
"embeddings_regularizer": tf.keras.regularizers.serialize(self.embeddings_regularizer),
"embeddings_constraint": tf.keras.constraints.serialize(self.embeddings_constraint)
})
return config
@tf.keras.utils.register_keras_serializable(package='kgcnn', name='SphericalBasisLayer')
class SphericalBasisLayer(GraphBaseLayer):
r"""Expand a distance into a Bessel Basis with :math:`l=m=0`, according to
`Klicpera et al. 2020 <https://arxiv.org/abs/2011.14115>`__ .
Args:
num_spherical (int): Number of spherical basis functions
num_radial (int): Number of radial basis functions
cutoff (float): Cutoff distance c
envelope_exponent (int): Degree of the envelope to smoothen at cutoff. Default is 5.
"""
def __init__(self, num_spherical,
num_radial,
cutoff,
envelope_exponent=5,
**kwargs):
super(SphericalBasisLayer, self).__init__(**kwargs)
assert num_radial <= 64
self.num_radial = num_radial
self.num_spherical = num_spherical
self.cutoff = cutoff
self.inv_cutoff = tf.constant(1 / cutoff, dtype=tf.float32)
self.envelope_exponent = envelope_exponent
# retrieve formulas
self.bessel_n_zeros = spherical_bessel_jn_zeros(num_spherical, num_radial)
self.bessel_norm = spherical_bessel_jn_normalization_prefactor(num_spherical, num_radial)
self.layer_gather_out = GatherNodesOutgoing()
@tf.function
def envelope(self, inputs):
p = self.envelope_exponent + 1
a = -(p + 1) * (p + 2) / 2
b = p * (p + 2)
c = -p * (p + 1) / 2
env_val = 1 / inputs + a * inputs ** (p - 1) + b * inputs ** p + c * inputs ** (p + 1)
return tf.where(inputs < 1, env_val, tf.zeros_like(inputs))
def call(self, inputs, **kwargs):
"""Forward pass.
Args:
inputs: [distance, angles, angle_index]
- distance (tf.RaggedTensor): Edge distance of shape (batch, [M], 1)
- angles (tf.RaggedTensor): Angle list of shape (batch, [K], 1)
- angle_index (tf.RaggedTensor): Angle indices referring to edges of shape (batch, [K], 2)
Returns:
tf.RaggedTensor: Expanded angle/distance basis. Shape is (batch, [K], #Radial * #Spherical)
"""
inputs = self.assert_ragged_input_rank(inputs)
edge, edge_part = inputs[0].values, inputs[0].row_splits
angles, angle_part = inputs[1].values, inputs[1].row_splits
d = edge
d_scaled = d[:, 0] * self.inv_cutoff
rbf = []
for n in range(self.num_spherical):
for k in range(self.num_radial):
rbf += [self.bessel_norm[n, k] * tf_spherical_bessel_jn(d_scaled * self.bessel_n_zeros[n][k], n)]
rbf = tf.stack(rbf, axis=1)
d_cutoff = self.envelope(d_scaled)
rbf_env = d_cutoff[:, None] * rbf
ragged_rbf_env = tf.RaggedTensor.from_row_splits(rbf_env, edge_part, validate=self.ragged_validate)
rbf_env = self.layer_gather_out([ragged_rbf_env, inputs[2]], **kwargs).values
# rbf_env = tf.gather(rbf_env, id_expand_kj[:, 1])
cbf = [tf_spherical_harmonics_yl(angles[:, 0], n) for n in range(self.num_spherical)]
cbf = tf.stack(cbf, axis=1)
cbf = tf.repeat(cbf, self.num_radial, axis=1)
out = rbf_env * cbf
out = tf.RaggedTensor.from_row_splits(out, angle_part, validate=self.ragged_validate)
return out
def get_config(self):
"""Update config."""
config = super(SphericalBasisLayer, self).get_config()
config.update({"num_radial": self.num_radial, "cutoff": self.cutoff,
"envelope_exponent": self.envelope_exponent, "num_spherical": self.num_spherical})
return config