提交 f94a0cce 编写于 作者: Y Yu Yang 提交者: GitHub

Merge pull request #922 from reyoung/feature/fix_bugs_in_math

Fix bad import name in trainer_config_helpers.
......@@ -22,4 +22,4 @@ from optimizers import *
from attrs import *
# This will enable operator overload for LayerOutput
import math
import math as layer_math
from paddle.trainer_config_helpers import *
from paddle.trainer_config_helpers import math
settings(batch_size=1000, learning_rate=1e-5)
x = data_layer(name='data', size=100)
x = math.exp(x)
x = math.log(x)
x = math.abs(x)
x = math.sigmoid(x)
x = math.square(x)
x = math.square(x)
x = layer_math.exp(x)
x = layer_math.log(x)
x = layer_math.abs(x)
x = layer_math.sigmoid(x)
x = layer_math.square(x)
x = layer_math.square(x)
y = 1 + x
y = y + 1
y = x + y
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册