diff options
author | SsnL <tongzhou.wang.1994@gmail.com> | 2017-09-18 16:44:39 -0700 |
---|---|---|
committer | Soumith Chintala <soumith@gmail.com> | 2017-09-30 16:57:51 -0400 |
commit | d5a7e304fa858136eeffa1ebe35e22ed886bf256 (patch) | |
tree | 431df44eae5aa63ebc9c1f0c9f81eac57f3da3ee /docs/source | |
parent | 7ff9e0eb6c61855ba9721b3fdfa28c20c527cf4b (diff) | |
download | pytorch-d5a7e304fa858136eeffa1ebe35e22ed886bf256.tar.gz pytorch-d5a7e304fa858136eeffa1ebe35e22ed886bf256.tar.bz2 pytorch-d5a7e304fa858136eeffa1ebe35e22ed886bf256.zip |
added volumetric adaptive max pooling
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/nn.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/source/nn.rst b/docs/source/nn.rst index e405caf72c..55a0d73414 100644 --- a/docs/source/nn.rst +++ b/docs/source/nn.rst @@ -162,6 +162,12 @@ Pooling Layers .. autoclass:: AdaptiveMaxPool2d :members: +:hidden:`AdaptiveMaxPool3d` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. autoclass:: AdaptiveMaxPool3d + :members: + :hidden:`AdaptiveAvgPool1d` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -781,6 +787,11 @@ Pooling functions .. autofunction:: adaptive_max_pool2d +:hidden:`adaptive_max_pool3d` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. autofunction:: adaptive_max_pool3d + :hidden:`adaptive_avg_pool1d` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |