Commit c3566221 authored by WenmuZhou's avatar WenmuZhou
Browse files

fix typo error

parent c465f404
...@@ -95,7 +95,7 @@ class MyBackbone(nn.Layer): ...@@ -95,7 +95,7 @@ class MyBackbone(nn.Layer):
self.conv = nn.xxxx self.conv = nn.xxxx
def forward(self, inputs): def forward(self, inputs):
# your necwork forward # your network forward
y = self.conv(inputs) y = self.conv(inputs)
return y return y
``` ```
......
...@@ -96,7 +96,7 @@ class MyBackbone(nn.Layer): ...@@ -96,7 +96,7 @@ class MyBackbone(nn.Layer):
self.conv = nn.xxxx self.conv = nn.xxxx
def forward(self, inputs): def forward(self, inputs):
# your necwork forward # your network forward
y = self.conv(inputs) y = self.conv(inputs)
return y return y
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment