developer0hye commited on
Commit
a522a10
·
1 Parent(s): 26bd2a0

fix typo "wheather" -> "whether" in comment in YOLOXHead Class (#392)

Browse files
demo/MegEngine/python/models/yolo_head.py CHANGED
@@ -26,7 +26,7 @@ class YOLOXHead(M.Module):
26
  """
27
  Args:
28
  act (str): activation type of conv. Defalut value: "silu".
29
- depthwise (bool): wheather apply depthwise conv in conv branch. Defalut value: False.
30
  """
31
  super().__init__()
32
 
 
26
  """
27
  Args:
28
  act (str): activation type of conv. Defalut value: "silu".
29
+ depthwise (bool): whether apply depthwise conv in conv branch. Defalut value: False.
30
  """
31
  super().__init__()
32
 
yolox/models/yolo_head.py CHANGED
@@ -29,7 +29,7 @@ class YOLOXHead(nn.Module):
29
  """
30
  Args:
31
  act (str): activation type of conv. Defalut value: "silu".
32
- depthwise (bool): wheather apply depthwise conv in conv branch. Defalut value: False.
33
  """
34
  super().__init__()
35
 
 
29
  """
30
  Args:
31
  act (str): activation type of conv. Defalut value: "silu".
32
+ depthwise (bool): whether apply depthwise conv in conv branch. Defalut value: False.
33
  """
34
  super().__init__()
35