Skip to content

Commit 3ad183d

Browse files
committed
typo
1 parent 57c89ca commit 3ad183d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/model_constructor/convmixer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ def __init__(self, dim: int, depth: int,
7575
Adopted from https://github.com/tmp-iclr/convmixer
7676
7777
Args:
78-
dim (int): Dimention of model.
78+
dim (int): Dimension of model.
7979
depth (int): Depth of model.
8080
kernel_size (int, optional): Kernel size. Defaults to 9.
8181
patch_size (int, optional): Patch size. Defaults to 7.
8282
n_classes (int, optional): Number of classes. Defaults to 1000.
8383
act_fn (nn.Module, optional): Activation function. Defaults to nn.GELU().
8484
stem (nn.Module, optional): You can path different first layer..
85-
stem_ks (int, optional): If stem_ch not 0 - kernel size for adittional layer. Defaults to 1.
86-
bn_1st (bool, optional): If True - BatchNorm befor activation function. Defaults to False.
87-
pre_act (bool, optional): If True - activatin function befor convolution layer. Defaults to False.
85+
stem_ks (int, optional): If stem_ch not 0 - kernel size for additional layer. Defaults to 1.
86+
bn_1st (bool, optional): If True - BatchNorm before activation function. Defaults to False.
87+
pre_act (bool, optional): If True - activation function before convolution layer. Defaults to False.
8888
init_func (Callable, optional): External function for init model.
8989
9090
"""

0 commit comments

Comments
 (0)