- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我应该什么时候使用 Input
我什么时候应该使用 InputLayer
?在 source code有一个描述,但我不确定它是什么意思。
输入层:
Layer to be used as an entry point into a graph. It can either wrap an existing tensor (pass an
input_tensor
argument) or create its a placeholder tensor (pass argumentsinput_shape
orbatch_input_shape
as well asdtype
).
Input()
is used to instantiate a Keras tensor. A Keras tensor is a tensor object from the underlying backend (Theano or TensorFlow), which we augment with certain attributes that allow us to build a Keras model just by knowing the inputs and outputs of the model.
最佳答案
我想 InputLayer
已与 Graph 模型一起弃用。我建议您使用 Input,正如 Keras 文档中的所有示例所示。
关于tensorflow - Keras:layers.Input 和 layers.InputLayer 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44499755/
我正在使用简单的猫与狗数据集在 Google Colab 上尝试新添加的 TPU 支持。 在创建了一个简单的 CNN 之后,我尝试将模型导出到 TPU。但它因错误而失败 TypeError: Chec
我想从另一个 CNN 构建一个 CNN 来提取图像的特征向量。这个想法只是采用第一个 CNN 的前 13 层并用这些层构建第二个。 我正在使用配备 GPU 的 Google Colab 笔记本 fro
我遇到以下错误:https://pastebin.com/X7146Ury运行此 script 时. AttributeError: 'InputLayer' object has no attrib
我应该什么时候使用 Input我什么时候应该使用 InputLayer ?在 source code有一个描述,但我不确定它是什么意思。 输入层: Layer to be used as an ent
尝试将我的 Keras 模型转换为 CoreML 模型时,出现错误“InputLayer 对象没有属性‘inbound_nodes’”。 这是我的代码: loaded_model = loa
Keras 模型可以通过函数式 API 用作 Tensor 上的 Tensorflow 函数,如所述 here . 所以我们可以这样做: from keras.layers import InputL
我是机器学习新手。我正在关注这个tutorial关于微调 VGG16 模型。 使用以下代码可以很好地加载模型: vgg_model = tensorflow.keras.applications.vg
我试图理解 Sequential API(即 Sequential())和 Function API(即 Model())之间的关系,用于在Keras。特别是,我对使用 Function API 生成
我对 keras 和 TensorFlow 非常陌生, 当尝试将 Keras 模型(在新的 iOS IA 框架上编译并正常工作)转换为要在 Android 中使用的 tensorflow 模型时,我缺
我正在尝试将 vgg16 层添加到顺序模型,但出现问题标题中提到的错误 from keras.applications.vgg16 import VGG16 from tensorflow.contr
我是一名优秀的程序员,十分优秀!