File size: 24,422 Bytes
64c992d | 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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 | """
Copyright (c) Facebook, Inc. and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
TODO:
1. Simplify the case when `num_resolutions` == 1.
2. Remove indexing when the shape is the same.
3. Move some functions outside classes and to separate files.
"""
import os
import math
import torch
import torch.nn as nn
try:
from e3nn import o3
from e3nn.o3 import FromS2Grid, ToS2Grid
except ImportError:
pass
from .wigner import wigner_D
from torch.nn import Linear
class CoefficientMappingModule(torch.nn.Module):
"""
Helper module for coefficients used to reshape l <--> m and to get coefficients of specific degree or order
Args:
lmax_list (list:int): List of maximum degree of the spherical harmonics
mmax_list (list:int): List of maximum order of the spherical harmonics
"""
def __init__(
self,
lmax_list,
mmax_list,
):
super().__init__()
self.lmax_list = lmax_list
self.mmax_list = mmax_list
self.num_resolutions = len(lmax_list)
# Temporarily use `cpu` as device and this will be overwritten.
self.device = 'cpu'
# Compute the degree (l) and order (m) for each entry of the embedding
l_harmonic = torch.tensor([], device=self.device).long()
m_harmonic = torch.tensor([], device=self.device).long()
m_complex = torch.tensor([], device=self.device).long()
res_size = torch.zeros([self.num_resolutions], device=self.device).long()
offset = 0
for i in range(self.num_resolutions):
for l in range(0, self.lmax_list[i] + 1):
mmax = min(self.mmax_list[i], l)
m = torch.arange(-mmax, mmax + 1, device=self.device).long()
m_complex = torch.cat([m_complex, m], dim=0)
m_harmonic = torch.cat(
[m_harmonic, torch.abs(m).long()], dim=0
)
l_harmonic = torch.cat(
[l_harmonic, m.fill_(l).long()], dim=0
)
res_size[i] = len(l_harmonic) - offset
offset = len(l_harmonic)
num_coefficients = len(l_harmonic)
# `self.to_m` moves m components from different L to contiguous index
to_m = torch.zeros([num_coefficients, num_coefficients], device=self.device)
m_size = torch.zeros([max(self.mmax_list) + 1], device=self.device).long()
# The following is implemented poorly - very slow. It only gets called
# a few times so haven't optimized.
offset = 0
for m in range(max(self.mmax_list) + 1):
idx_r, idx_i = self.complex_idx(m, -1, m_complex, l_harmonic)
for idx_out, idx_in in enumerate(idx_r):
to_m[idx_out + offset, idx_in] = 1.0
offset = offset + len(idx_r)
m_size[m] = int(len(idx_r))
for idx_out, idx_in in enumerate(idx_i):
to_m[idx_out + offset, idx_in] = 1.0
offset = offset + len(idx_i)
to_m = to_m.detach()
# save tensors and they will be moved to GPU
self.register_buffer('l_harmonic', l_harmonic)
self.register_buffer('m_harmonic', m_harmonic)
self.register_buffer('m_complex', m_complex)
self.register_buffer('res_size', res_size)
self.register_buffer('to_m', to_m)
self.register_buffer('m_size', m_size)
# for caching the output of `coefficient_idx`
self.lmax_cache, self.mmax_cache = None, None
self.mask_indices_cache = None
self.rotate_inv_rescale_cache = None
# Return mask containing coefficients of order m (real and imaginary parts)
def complex_idx(self, m, lmax, m_complex, l_harmonic):
'''
Add `m_complex` and `l_harmonic` to the input arguments
since we cannot use `self.m_complex`.
'''
if lmax == -1:
lmax = max(self.lmax_list)
indices = torch.arange(len(l_harmonic), device=self.device)
# Real part
mask_r = torch.bitwise_and(
l_harmonic.le(lmax), m_complex.eq(m)
)
mask_idx_r = torch.masked_select(indices, mask_r)
mask_idx_i = torch.tensor([], device=self.device).long()
# Imaginary part
if m != 0:
mask_i = torch.bitwise_and(
l_harmonic.le(lmax), m_complex.eq(-m)
)
mask_idx_i = torch.masked_select(indices, mask_i)
return mask_idx_r, mask_idx_i
# Return mask containing coefficients less than or equal to degree (l) and order (m)
def coefficient_idx(self, lmax, mmax):
if (self.lmax_cache is not None) and (self.mmax_cache is not None):
if (self.lmax_cache == lmax) and (self.mmax_cache == mmax):
if self.mask_indices_cache is not None:
return self.mask_indices_cache
mask = torch.bitwise_and(
self.l_harmonic.le(lmax), self.m_harmonic.le(mmax)
)
self.device = mask.device
indices = torch.arange(len(mask), device=self.device)
mask_indices = torch.masked_select(indices, mask)
self.lmax_cache, self.mmax_cache = lmax, mmax
self.mask_indices_cache = mask_indices
return self.mask_indices_cache
# Return the re-scaling for rotating back to original frame
# this is required since we only use a subset of m components for SO(2) convolution
def get_rotate_inv_rescale(self, lmax, mmax):
if (self.lmax_cache is not None) and (self.mmax_cache is not None):
if (self.lmax_cache == lmax) and (self.mmax_cache == mmax):
if self.rotate_inv_rescale_cache is not None:
return self.rotate_inv_rescale_cache
if self.mask_indices_cache is None:
self.coefficient_idx(lmax, mmax)
rotate_inv_rescale = torch.ones((1, (lmax + 1)**2, (lmax + 1)**2), device=self.device)
for l in range(lmax + 1):
if l <= mmax:
continue
start_idx = l ** 2
length = 2 * l + 1
rescale_factor = math.sqrt(length / (2 * mmax + 1))
rotate_inv_rescale[:, start_idx : (start_idx + length), start_idx : (start_idx + length)] = rescale_factor
rotate_inv_rescale = rotate_inv_rescale[:, :, self.mask_indices_cache]
self.rotate_inv_rescale_cache = rotate_inv_rescale
return self.rotate_inv_rescale_cache
def __repr__(self):
return f"{self.__class__.__name__}(lmax_list={self.lmax_list}, mmax_list={self.mmax_list})"
class SO3_Embedding():
"""
Helper functions for performing operations on irreps embedding
Args:
length (int): Batch size
lmax_list (list:int): List of maximum degree of the spherical harmonics
num_channels (int): Number of channels
device: Device of the output
dtype: type of the output tensors
"""
def __init__(
self,
length,
lmax_list,
num_channels,
device,
dtype,
):
super().__init__()
self.num_channels = num_channels
self.device = device
self.dtype = dtype
self.num_resolutions = len(lmax_list)
self.num_coefficients = 0
for i in range(self.num_resolutions):
self.num_coefficients = self.num_coefficients + int(
(lmax_list[i] + 1) ** 2
)
embedding = torch.zeros(
length,
self.num_coefficients,
self.num_channels,
device=self.device,
dtype=self.dtype,
)
self.set_embedding(embedding)
self.set_lmax_mmax(lmax_list, lmax_list.copy())
# Clone an embedding of irreps
def clone(self):
clone = SO3_Embedding(
0,
self.lmax_list.copy(),
self.num_channels,
self.device,
self.dtype,
)
clone.set_embedding(self.embedding.clone())
return clone
# Initialize an embedding of irreps
def set_embedding(self, embedding):
self.length = len(embedding)
self.embedding = embedding
# Set the maximum order to be the maximum degree
def set_lmax_mmax(self, lmax_list, mmax_list):
self.lmax_list = lmax_list
self.mmax_list = mmax_list
# Expand the node embeddings to the number of edges
def _expand_edge(self, edge_index):
embedding = self.embedding[edge_index]
self.set_embedding(embedding)
# Initialize an embedding of irreps of a neighborhood
def expand_edge(self, edge_index):
x_expand = SO3_Embedding(
0,
self.lmax_list.copy(),
self.num_channels,
self.device,
self.dtype,
)
x_expand.set_embedding(self.embedding[edge_index])
return x_expand
# Compute the sum of the embeddings of the neighborhood
def _reduce_edge(self, edge_index, num_nodes):
new_embedding = torch.zeros(
num_nodes,
self.num_coefficients,
self.num_channels,
device=self.embedding.device,
dtype=self.embedding.dtype,
)
new_embedding.index_add_(0, edge_index, self.embedding)
self.set_embedding(new_embedding)
# Reshape the embedding l -> m
def _m_primary(self, mapping):
self.embedding = torch.einsum("nac, ba -> nbc", self.embedding, mapping.to_m)
# Reshape the embedding m -> l
def _l_primary(self, mapping):
self.embedding = torch.einsum("nac, ab -> nbc", self.embedding, mapping.to_m)
# Rotate the embedding
def _rotate(self, SO3_rotation, lmax_list, mmax_list):
if self.num_resolutions == 1:
embedding_rotate = SO3_rotation[0].rotate(self.embedding, lmax_list[0], mmax_list[0])
else:
offset = 0
embedding_rotate = torch.tensor([], device=self.device, dtype=self.dtype)
for i in range(self.num_resolutions):
num_coefficients = int((self.lmax_list[i] + 1) ** 2)
embedding_i = self.embedding[:, offset : offset + num_coefficients]
embedding_rotate = torch.cat([
embedding_rotate,
SO3_rotation[i].rotate(embedding_i, lmax_list[i], mmax_list[i])],
dim=1)
offset = offset + num_coefficients
self.embedding = embedding_rotate
self.set_lmax_mmax(lmax_list.copy(), mmax_list.copy())
# Rotate the embedding by the inverse of the rotation matrix
def _rotate_inv(self, SO3_rotation, mappingReduced):
if self.num_resolutions == 1:
embedding_rotate = SO3_rotation[0].rotate_inv(self.embedding, self.lmax_list[0], self.mmax_list[0])
else:
offset = 0
embedding_rotate = torch.tensor([], device=self.device, dtype=self.dtype)
for i in range(self.num_resolutions):
num_coefficients = mappingReduced.res_size[i]
embedding_i = self.embedding[:, offset : offset + num_coefficients]
embedding_rotate = torch.cat([
embedding_rotate,
SO3_rotation[i].rotate_inv(embedding_i, self.lmax_list[i], self.mmax_list[i])],
dim=1)
offset = offset + num_coefficients
self.embedding = embedding_rotate
# Assume mmax = lmax when rotating back
for i in range(self.num_resolutions):
self.mmax_list[i] = int(self.lmax_list[i])
self.set_lmax_mmax(self.lmax_list, self.mmax_list)
# Compute point-wise spherical non-linearity
def _grid_act(self, SO3_grid, act, mappingReduced):
offset = 0
for i in range(self.num_resolutions):
num_coefficients = mappingReduced.res_size[i]
if self.num_resolutions == 1:
x_res = self.embedding
else:
x_res = self.embedding[:, offset : offset + num_coefficients].contiguous()
to_grid_mat = SO3_grid[self.lmax_list[i]][self.mmax_list[i]].get_to_grid_mat(self.device)
from_grid_mat = SO3_grid[self.lmax_list[i]][self.mmax_list[i]].get_from_grid_mat(self.device)
x_grid = torch.einsum("bai, zic -> zbac", to_grid_mat, x_res)
x_grid = act(x_grid)
x_res = torch.einsum("bai, zbac -> zic", from_grid_mat, x_grid)
if self.num_resolutions == 1:
self.embedding = x_res
else:
self.embedding[:, offset : offset + num_coefficients] = x_res
offset = offset + num_coefficients
# Compute a sample of the grid
def to_grid(self, SO3_grid, lmax=-1):
if lmax == -1:
lmax = max(self.lmax_list)
to_grid_mat_lmax = SO3_grid[lmax][lmax].get_to_grid_mat(self.device)
grid_mapping = SO3_grid[lmax][lmax].mapping
offset = 0
x_grid = torch.tensor([], device=self.device)
for i in range(self.num_resolutions):
num_coefficients = int((self.lmax_list[i] + 1) ** 2)
if self.num_resolutions == 1:
x_res = self.embedding
else:
x_res = self.embedding[:, offset : offset + num_coefficients].contiguous()
to_grid_mat = to_grid_mat_lmax[:, :, grid_mapping.coefficient_idx(self.lmax_list[i], self.lmax_list[i])]
x_grid = torch.cat([x_grid, torch.einsum("bai, zic -> zbac", to_grid_mat, x_res)], dim=3)
offset = offset + num_coefficients
return x_grid
# Compute irreps from grid representation
def _from_grid(self, x_grid, SO3_grid, lmax=-1):
if lmax == -1:
lmax = max(self.lmax_list)
from_grid_mat_lmax = SO3_grid[lmax][lmax].get_from_grid_mat(self.device)
grid_mapping = SO3_grid[lmax][lmax].mapping
offset = 0
offset_channel = 0
for i in range(self.num_resolutions):
from_grid_mat = from_grid_mat_lmax[:, :, grid_mapping.coefficient_idx(self.lmax_list[i], self.lmax_list[i])]
if self.num_resolutions == 1:
temp = x_grid
else:
temp = x_grid[:, :, :, offset_channel : offset_channel + self.num_channels]
x_res = torch.einsum("bai, zbac -> zic", from_grid_mat, temp)
num_coefficients = int((self.lmax_list[i] + 1) ** 2)
if self.num_resolutions == 1:
self.embedding = x_res
else:
self.embedding[:, offset : offset + num_coefficients] = x_res
offset = offset + num_coefficients
offset_channel = offset_channel + self.num_channels
class SO3_Rotation(torch.nn.Module):
"""
Helper functions for Wigner-D rotations
Args:
lmax_list (list:int): List of maximum degree of the spherical harmonics
"""
def __init__(
self,
lmax,
):
super().__init__()
self.lmax = lmax
self.mapping = CoefficientMappingModule([self.lmax], [self.lmax])
def set_wigner(self, rot_mat3x3):
self.device, self.dtype = rot_mat3x3.device, rot_mat3x3.dtype
length = len(rot_mat3x3)
self.wigner = self.RotationToWignerDMatrix(rot_mat3x3, 0, self.lmax)
self.wigner_inv = torch.transpose(self.wigner, 1, 2).contiguous()
self.wigner = self.wigner.detach()
self.wigner_inv = self.wigner_inv.detach()
# Rotate the embedding
def rotate(self, embedding, out_lmax, out_mmax):
out_mask = self.mapping.coefficient_idx(out_lmax, out_mmax)
wigner = self.wigner[:, out_mask, :]
return torch.bmm(wigner, embedding)
# Rotate the embedding by the inverse of the rotation matrix
def rotate_inv(self, embedding, in_lmax, in_mmax):
in_mask = self.mapping.coefficient_idx(in_lmax, in_mmax)
wigner_inv = self.wigner_inv[:, :, in_mask]
wigner_inv_rescale = self.mapping.get_rotate_inv_rescale(in_lmax, in_mmax)
wigner_inv = wigner_inv * wigner_inv_rescale
return torch.bmm(wigner_inv, embedding)
# Compute Wigner matrices from rotation matrix
def RotationToWignerDMatrix(self, edge_rot_mat, start_lmax, end_lmax):
x = edge_rot_mat @ edge_rot_mat.new_tensor([0.0, 1.0, 0.0])
alpha, beta = o3.xyz_to_angles(x)
R = (
o3.angles_to_matrix(
alpha, beta, torch.zeros_like(alpha)
).transpose(-1, -2)
@ edge_rot_mat
)
gamma = torch.atan2(R[..., 0, 2], R[..., 0, 0])
size = (end_lmax + 1) ** 2 - (start_lmax) ** 2
wigner = torch.zeros(len(alpha), size, size, device=self.device)
start = 0
for lmax in range(start_lmax, end_lmax + 1):
block = wigner_D(lmax, alpha, beta, gamma)
end = start + block.size()[1]
wigner[:, start:end, start:end] = block
start = end
return wigner.detach()
class SO3_Grid(torch.nn.Module):
"""
Helper functions for grid representation of the irreps
Args:
lmax (int): Maximum degree of the spherical harmonics
mmax (int): Maximum order of the spherical harmonics
"""
def __init__(
self,
lmax,
mmax,
normalization='integral',
resolution=None,
):
super().__init__()
self.lmax = lmax
self.mmax = mmax
self.lat_resolution = 2 * (self.lmax + 1)
if lmax == mmax:
self.long_resolution = 2 * (self.mmax + 1) + 1
else:
self.long_resolution = 2 * (self.mmax) + 1
if resolution is not None:
self.lat_resolution = resolution
self.long_resolution = resolution
self.mapping = CoefficientMappingModule([self.lmax], [self.lmax])
device = 'cpu'
to_grid = ToS2Grid(
self.lmax,
(self.lat_resolution, self.long_resolution),
normalization=normalization, #normalization="integral",
device=device,
)
to_grid_mat = torch.einsum("mbi, am -> bai", to_grid.shb, to_grid.sha).detach()
# rescale based on mmax
if lmax != mmax:
for l in range(lmax + 1):
if l <= mmax:
continue
start_idx = l ** 2
length = 2 * l + 1
rescale_factor = math.sqrt(length / (2 * mmax + 1))
to_grid_mat[:, :, start_idx : (start_idx + length)] = to_grid_mat[:, :, start_idx : (start_idx + length)] * rescale_factor
to_grid_mat = to_grid_mat[:, :, self.mapping.coefficient_idx(self.lmax, self.mmax)]
from_grid = FromS2Grid(
(self.lat_resolution, self.long_resolution),
self.lmax,
normalization=normalization, #normalization="integral",
device=device,
)
from_grid_mat = torch.einsum("am, mbi -> bai", from_grid.sha, from_grid.shb).detach()
# rescale based on mmax
if lmax != mmax:
for l in range(lmax + 1):
if l <= mmax:
continue
start_idx = l ** 2
length = 2 * l + 1
rescale_factor = math.sqrt(length / (2 * mmax + 1))
from_grid_mat[:, :, start_idx : (start_idx + length)] = from_grid_mat[:, :, start_idx : (start_idx + length)] * rescale_factor
from_grid_mat = from_grid_mat[:, :, self.mapping.coefficient_idx(self.lmax, self.mmax)]
# save tensors and they will be moved to GPU
self.register_buffer('to_grid_mat', to_grid_mat)
self.register_buffer('from_grid_mat', from_grid_mat)
# Compute matrices to transform irreps to grid
def get_to_grid_mat(self, device):
return self.to_grid_mat
# Compute matrices to transform grid to irreps
def get_from_grid_mat(self, device):
return self.from_grid_mat
# Compute grid from irreps representation
def to_grid(self, embedding, lmax, mmax):
to_grid_mat = self.to_grid_mat[:, :, self.mapping.coefficient_idx(lmax, mmax)]
grid = torch.einsum("bai, zic -> zbac", to_grid_mat, embedding)
return grid
# Compute irreps from grid representation
def from_grid(self, grid, lmax, mmax):
from_grid_mat = self.from_grid_mat[:, :, self.mapping.coefficient_idx(lmax, mmax)]
embedding = torch.einsum("bai, zbac -> zic", from_grid_mat, grid)
return embedding
class SO3_Linear(torch.nn.Module):
def __init__(self, in_features, out_features, lmax, bias=True):
super().__init__()
self.in_features = in_features
self.out_features = out_features
self.lmax = lmax
self.linear_list = torch.nn.ModuleList()
for l in range(lmax + 1):
if l == 0:
self.linear_list.append(Linear(in_features, out_features, bias=bias))
else:
self.linear_list.append(Linear(in_features, out_features, bias=False))
def forward(self, input_embedding, output_scale=None):
out = []
for l in range(self.lmax + 1):
start_idx = l ** 2
length = 2 * l + 1
features = input_embedding.embedding.narrow(1, start_idx, length)
features = self.linear_list[l](features)
if output_scale is not None:
scale = output_scale.narrow(1, l, 1)
features = features * scale
out.append(features)
out = torch.cat(out, dim=1)
out_embedding = SO3_Embedding(
0,
input_embedding.lmax_list.copy(),
self.out_features,
device=input_embedding.device,
dtype=input_embedding.dtype
)
out_embedding.set_embedding(out)
out_embedding.set_lmax_mmax(input_embedding.lmax_list.copy(), input_embedding.lmax_list.copy())
return out_embedding
def __repr__(self):
return f"{self.__class__.__name__}(in_features={self.in_features}, out_features={self.out_features}, lmax={self.lmax})"
class SO3_LinearV2(torch.nn.Module):
def __init__(self, in_features, out_features, lmax, bias=True):
'''
1. Use `torch.einsum` to prevent slicing and concatenation
2. Need to specify some behaviors in `no_weight_decay` and weight initialization.
'''
super().__init__()
self.in_features = in_features
self.out_features = out_features
self.lmax = lmax
self.weight = torch.nn.Parameter(torch.randn((self.lmax + 1), out_features, in_features))
bound = 1 / math.sqrt(self.in_features)
torch.nn.init.uniform_(self.weight, -bound, bound)
self.bias = torch.nn.Parameter(torch.zeros(out_features))
expand_index = torch.zeros([(lmax + 1) ** 2]).long()
for l in range(lmax + 1):
start_idx = l ** 2
length = 2 * l + 1
expand_index[start_idx : (start_idx + length)] = l
self.register_buffer('expand_index', expand_index)
def forward(self, input_embedding):
weight = torch.index_select(self.weight, dim=0, index=self.expand_index) # [(L_max + 1) ** 2, C_out, C_in]
out = torch.einsum('bmi, moi -> bmo', input_embedding.embedding, weight) # [N, (L_max + 1) ** 2, C_out]
bias = self.bias.view(1, 1, self.out_features)
out[:, 0:1, :] = out.narrow(1, 0, 1) + bias
out_embedding = SO3_Embedding(
0,
input_embedding.lmax_list.copy(),
self.out_features,
device=input_embedding.device,
dtype=input_embedding.dtype
)
out_embedding.set_embedding(out)
out_embedding.set_lmax_mmax(input_embedding.lmax_list.copy(), input_embedding.lmax_list.copy())
return out_embedding
def __repr__(self):
return f"{self.__class__.__name__}(in_features={self.in_features}, out_features={self.out_features}, lmax={self.lmax})" |