Formatting fixes (#1606)

This commit is contained in:
Angelos Katharopoulos
2024-11-20 15:30:36 -08:00
committed by GitHub
parent cb431dfc9f
commit d8c824c594
2 changed files with 25 additions and 20 deletions

View File

@@ -450,6 +450,7 @@ class AvgPool3d(_Pool3d):
>>> pool = nn.AvgPool3d(kernel_size=2, stride=2)
>>> pool(x)
"""
def __init__(
self,
kernel_size: Union[int, Tuple[int, int, int]],