Skip to content

Commit

Permalink
Fixing docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqwang committed Oct 10, 2021
1 parent 41cf50c commit bdbdfa4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions yolort/v5/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Conv(nn.Module):
"""
Standard convolution
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
k (int): kernel
Expand Down Expand Up @@ -87,7 +87,7 @@ class DWConv(Conv):
"""
Depth-wise convolution class.
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
k (int): kernel
Expand All @@ -105,7 +105,7 @@ class Bottleneck(nn.Module):
"""
Standard bottleneck
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
shortcut (bool): shortcut
Expand All @@ -130,7 +130,7 @@ class BottleneckCSP(nn.Module):
"""
CSP Bottleneck https://github.com/WongKinYiu/CrossStagePartialNetworks
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
n (int): number
Expand Down Expand Up @@ -162,7 +162,7 @@ class C3(nn.Module):
"""
CSP Bottleneck with 3 convolutions
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
n (int): number
Expand Down Expand Up @@ -225,7 +225,7 @@ class Focus(nn.Module):
"""
Focus wh information into c-space
Attributes:
Args:
c1 (int): ch_in
c2 (int): ch_out
k (int): kernel
Expand Down

0 comments on commit bdbdfa4

Please sign in to comment.