Skip to content

Commit

Permalink
Fix document in cnn.md (#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftbabi authored Feb 21, 2021
1 parent ca47ae1 commit 9637bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/cnn.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A simplest example is

```python
cfg = dict(type='Conv3d')
layer = build_norm_layer(cfg, in_channels=3, out_channels=8, kernel_size=3)
layer = build_conv_layer(cfg, in_channels=3, out_channels=8, kernel_size=3)
```

- `build_conv_layer`: Supported types are Conv1d, Conv2d, Conv3d, Conv (alias for Conv2d).
Expand Down

0 comments on commit 9637bcf

Please sign in to comment.