fix typo error

This commit is contained in:
WenmuZhou 2021-01-18 18:40:12 +08:00
parent c465f40417
commit c356622147
2 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ class MyBackbone(nn.Layer):
self.conv = nn.xxxx
def forward(self, inputs):
# your necwork forward
# your network forward
y = self.conv(inputs)
return y
```

View File

@ -96,7 +96,7 @@ class MyBackbone(nn.Layer):
self.conv = nn.xxxx
def forward(self, inputs):
# your necwork forward
# your network forward
y = self.conv(inputs)
return y
```