fix typo error
This commit is contained in:
parent
c465f40417
commit
c356622147
|
@ -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
|
||||||
```
|
```
|
||||||
|
@ -300,4 +300,4 @@ Optimizer:
|
||||||
regularizer:
|
regularizer:
|
||||||
name: 'L2'
|
name: 'L2'
|
||||||
factor: 0
|
factor: 0
|
||||||
```
|
```
|
||||||
|
|
|
@ -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
|
||||||
```
|
```
|
||||||
|
@ -301,4 +301,4 @@ Optimizer:
|
||||||
regularizer:
|
regularizer:
|
||||||
name: 'L2'
|
name: 'L2'
|
||||||
factor: 0
|
factor: 0
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue