Skip to content

Commit e0a6683

Browse files
committed
nn docs
Signed-off-by: Francis Williams <francis@fwilliams.info>
1 parent 26abaef commit e0a6683

File tree

2 files changed

+245
-300
lines changed

2 files changed

+245
-300
lines changed

fvdb/nn/__init__.py

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,13 @@
22
# SPDX-License-Identifier: Apache-2.0
33
#
44
from .modules import (
5-
CELU,
6-
ELU,
7-
GELU,
8-
SELU,
95
AvgPool,
106
BatchNorm,
11-
Dropout,
127
GroupNorm,
13-
InjectFromGrid,
14-
LeakyReLU,
15-
Linear,
168
MaxPool,
17-
ReLU,
18-
Sequential,
19-
Sigmoid,
20-
SiLU,
219
SparseConv3d,
2210
SparseConvTranspose3d,
2311
SyncBatchNorm,
24-
Tanh,
2512
UpsamplingNearest,
2613
)
2714
from .simple_unet import (
@@ -39,20 +26,9 @@
3926
__all__ = [
4027
"AvgPool",
4128
"BatchNorm",
42-
"CELU",
43-
"Dropout",
44-
"ELU",
45-
"GELU",
4629
"GroupNorm",
4730
"InjectFromGrid",
48-
"LeakyReLU",
49-
"Linear",
5031
"MaxPool",
51-
"ReLU",
52-
"SELU",
53-
"Sequential",
54-
"Sigmoid",
55-
"SiLU",
5632
"SimpleUNet",
5733
"SimpleUNetBasicBlock",
5834
"SimpleUNetBottleneck",
@@ -65,6 +41,5 @@
6541
"SparseConv3d",
6642
"SparseConvTranspose3d",
6743
"SyncBatchNorm",
68-
"Tanh",
6944
"UpsamplingNearest",
7045
]

0 commit comments

Comments
 (0)