Skip to content

Commit

Permalink
fix typo "wheather" -> "whether" in comment in YOLOXHead Class (#392)
Browse files Browse the repository at this point in the history
* fix typo "wheather" -> "whether" in comment in YOLOXHead Class
  • Loading branch information
developer0hye committed Aug 6, 2021
1 parent a37897a commit 61e4b0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo/MegEngine/python/models/yolo_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(
"""
Args:
act (str): activation type of conv. Defalut value: "silu".
depthwise (bool): wheather apply depthwise conv in conv branch. Defalut value: False.
depthwise (bool): whether apply depthwise conv in conv branch. Defalut value: False.
"""
super().__init__()

Expand Down
2 changes: 1 addition & 1 deletion yolox/models/yolo_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(
"""
Args:
act (str): activation type of conv. Defalut value: "silu".
depthwise (bool): wheather apply depthwise conv in conv branch. Defalut value: False.
depthwise (bool): whether apply depthwise conv in conv branch. Defalut value: False.
"""
super().__init__()

Expand Down

0 comments on commit 61e4b0f

Please sign in to comment.