File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
python/paddle/fluid/layers Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -361,6 +361,12 @@ conv2d
361
361
.. autofunction :: paddle.fluid.layers.conv2d
362
362
:noindex:
363
363
364
+ conv3d
365
+ ------
366
+
367
+ .. autofunction :: paddle.fluid.layers.conv3d
368
+ :noindex:
369
+
364
370
sequence_pool
365
371
-------------
366
372
@@ -385,6 +391,12 @@ pool2d
385
391
.. autofunction :: paddle.fluid.layers.pool2d
386
392
:noindex:
387
393
394
+ pool3d
395
+ ------
396
+
397
+ .. autofunction :: paddle.fluid.layers.pool3d
398
+ :noindex:
399
+
388
400
batch_norm
389
401
----------
390
402
@@ -403,6 +415,13 @@ conv2d_transpose
403
415
.. autofunction :: paddle.fluid.layers.conv2d_transpose
404
416
:noindex:
405
417
418
+ conv3d_transpose
419
+ ----------------
420
+
421
+ .. autofunction :: paddle.fluid.layers.conv2d_transpose
422
+ :noindex:
423
+
424
+
406
425
sequence_expand
407
426
---------------
408
427
Original file line number Diff line number Diff line change @@ -1722,7 +1722,7 @@ def pool2d(input,
1722
1722
if not isinstance (use_cudnn , bool ):
1723
1723
raise ValueError ("use_cudnn should be True or False" )
1724
1724
1725
- l_type = 'conv2d '
1725
+ l_type = 'pool2d '
1726
1726
1727
1727
helper = LayerHelper (l_type , ** locals ())
1728
1728
dtype = helper .input_dtype ()
You can’t perform that action at this time.
0 commit comments