MCPcopy Create free account
hub / github.com/Oneflow-Inc/oneflow / __init__

Method __init__

python/oneflow/nn/modules/pooling.py:823–826  ·  view source on GitHub ↗
(self, output_size)

Source from the content-addressed store, hash-verified

821 """
822
823 def __init__(self, output_size) -> None:
824 super().__init__()
825 assert output_size is not None, "'output_size' cannot be NoneType"
826 self.output_size = _triple(output_size)
827
828 def forward(self, x):
829 assert (

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected