Skip to content

Commit f8e2f2d

Browse files
committed
remove init, because empiricism
1 parent fe9b20f commit f8e2f2d

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

se3_transformer_pytorch/se3_transformer_pytorch.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -295,12 +295,6 @@ def __init__(
295295
nn.Linear(mid_dim, num_freq * in_dim * out_dim)
296296
)
297297

298-
self.apply(self.init_)
299-
300-
def init_(self, m):
301-
if isinstance(m, nn.Linear):
302-
nn.init.kaiming_uniform_(m.weight)
303-
304298
def forward(self, x):
305299
y = self.net(x)
306300
return rearrange(y, '... (o i f) -> ... o () i () f', i = self.in_dim, o = self.out_dim)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name = 'se3-transformer-pytorch',
55
packages = find_packages(),
66
include_package_data = True,
7-
version = '0.8.12',
7+
version = '0.8.13',
88
license='MIT',
99
description = 'SE3 Transformer - Pytorch',
1010
author = 'Phil Wang',

0 commit comments

Comments
 (0)