Skip to content

Commit

Permalink
fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
WenmuZhou committed Jan 18, 2021
1 parent c465f40 commit c356622
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/doc_ch/add_new_algorithm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -300,4 +300,4 @@ Optimizer:
regularizer:
name: 'L2'
factor: 0
```
```
4 changes: 2 additions & 2 deletions doc/doc_en/add_new_algorithm_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -301,4 +301,4 @@ Optimizer:
regularizer:
name: 'L2'
factor: 0
```
```

0 comments on commit c356622

Please sign in to comment.