Skip to content

Commit

Permalink
Update convnext.py
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
hvgazula authored Mar 20, 2024
1 parent dffbaa4 commit d90c580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nobrainer/models/convnext.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Block(layers.Layer):

def __init__(self, dim, drop_path=0.0, layer_scale_init_value=1e-6, prefix=""):
super().__init__()
self.dwconv = DepthwiseConv3d(kernel_size=7, padding="same") # depthwise conv
self.dwconv = DepthwiseConv3D(kernel_size=7, padding="same") # depthwise conv
self.norm = layers.LayerNormalization(epsilon=1e-6)
# pointwise/1x1x1 convs, implemented with linear layers
self.pwconv1 = layers.Dense(4 * dim)
Expand Down

0 comments on commit d90c580

Please sign in to comment.