作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想定义一个使用基本数学运算的简单模型。我尝试使用多种方法来实现它,但最明显的方法失败了,我想了解原因。
让我们看一下代码:
import keras.backend as K
from keras.layers import Input, Lambda
from keras.models import Model
import numpy as np
x = Input(shape=(3,))
y = Lambda(lambda x: x ** 2)(x)
print y
# Tensor("lambda_1/pow:0", shape=(?, 3), dtype=float32)
model = Model(inputs=x, outputs=y)
# Works!
y = x ** 2
print y
# Tensor("pow:0", shape=(?, 3), dtype=float32)
model = Model(inputs=x, outputs=y)
# Fails: TypeError: Output tensors to a Model must be Keras tensors.
y = K.pow(x, 2)
print y
# Tensor("Pow:0", shape=(?, 3), dtype=float32)
model = Model(inputs=x, outputs=y)
# Fails: TypeError: Output tensors to a Model must be Keras tensors.
如您所见,所有模型的 y
输出几乎相同,但直观的输出由于某种原因失败了。
最佳答案
收到回复:https://github.com/fchollet/keras/issues/6443#issuecomment-298259821
Here both x and y should be the outputs of Keras layers.
x 是输入层的输出,在上面的例子中,y 是 Lambda 层的输出。也可以编写自定义图层:https://keras.io/layers/writing-your-own-keras-layers/
关于python - Keras 简单数学运算模型失败并显示 "Output tensors to a Model must be Keras tensors",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43538304/
我是一名优秀的程序员,十分优秀!