提交 85f5818d 编写于 作者: W Wang Huan

modify doc for bilinear_tensor_product, test=develop

上级 09f19532
...@@ -13228,10 +13228,11 @@ def bilinear_tensor_product(x, ...@@ -13228,10 +13228,11 @@ def bilinear_tensor_product(x,
Examples: Examples:
.. code-block:: python .. code-block:: python
import paddle.fluid as fluid import paddle
layer1 = fluid.data("t1", shape=[-1, 5], dtype="float32") paddle.enable_static()
layer2 = fluid.data("t2", shape=[-1, 4], dtype="float32") layer1 = paddle.static.data("t1", shape=[-1, 5], dtype="float32")
tensor = fluid.layers.bilinear_tensor_product(x=layer1, y=layer2, size=1000) layer2 = paddle.static.data("t2", shape=[-1, 4], dtype="float32")
tensor = paddle.static.nn.bilinear_tensor_product(x=layer1, y=layer2, size=1000)
""" """
helper = LayerHelper('bilinear_tensor_product', **locals()) helper = LayerHelper('bilinear_tensor_product', **locals())
dtype = helper.input_dtype('x') dtype = helper.input_dtype('x')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册