Confusion about using fluid.layers functions in dygraph mode
Created by: AndersonZhangyq
In example code, I found that some funcion in fluid.layers is used in dygraph mode, especially activation function like relu, tanh.
And I found some operations are available in fluid.layers
while no counterpart could be found in fluid.dygraph.nn
, such as fluid.layers.pool3d
.
Is it ok (gradient with be passed correctly as least) to assume that we can use all funcion in fluid.layers in dygraph mode?