keras.layer.input()用法说明


Posted in Python onJune 16, 2020

tenserflow建立网络由于先建立静态的graph,所以没有数据,用placeholder来占位好申请内存。

那么keras的layer类其实是一个方便的直接帮你建立深度网络中的layer的类。

该类继承了object,是个基础的类,后续的诸如input_layer类都会继承与layer

由于model.py中利用这个方法建立网络,所以仔细看一下:他的说明详尽而丰富。

input()这个方法是用来初始化一个keras tensor的,tensor说白了就是个数组。他强大到之通过输入和输出就能建立一个keras模型。shape或者batch shape 必须只能给一个。shape = [None,None,None],会创建一个?*?*?的三维数组。

下面还举了个例子,a,b,c都是keras的tensor, `model = Model(input=[a, b], output=c)`

def Input(shape=None, batch_shape=None,
     name=None, dtype=None, sparse=False,
     tensor=None):
  """`Input()` is used to instantiate a Keras tensor.
  A Keras tensor is a tensor object from the underlying backend
  (Theano, TensorFlow or CNTK), which we augment with certain
  attributes that allow us to build a Keras model
  just by knowing the inputs and outputs of the model.
  For instance, if a, b and c are Keras tensors,
  it becomes possible to do:
  `model = Model(input=[a, b], output=c)`
  The added Keras attributes are:
    `_keras_shape`: Integer shape tuple propagated
      via Keras-side shape inference.
    `_keras_history`: Last layer applied to the tensor.
      the entire layer graph is retrievable from that layer,
      recursively.
  # Arguments
    shape: A shape tuple (integer), not including the batch size.
      For instance, `shape=(32,)` indicates that the expected input
      will be batches of 32-dimensional vectors.
    batch_shape: A shape tuple (integer), including the batch size.
      For instance, `batch_shape=(10, 32)` indicates that
      the expected input will be batches of 10 32-dimensional vectors.
      `batch_shape=(None, 32)` indicates batches of an arbitrary number
      of 32-dimensional vectors.
    name: An optional name string for the layer.
      Should be unique in a model (do not reuse the same name twice).
      It will be autogenerated if it isn't provided.
    dtype: The data type expected by the input, as a string
      (`float32`, `float64`, `int32`...)
    sparse: A boolean specifying whether the placeholder
      to be created is sparse.
    tensor: Optional existing tensor to wrap into the `Input` layer.
      If set, the layer will not create a placeholder tensor.
  # Returns
    A tensor.
  # Example
  ```python
  # this is a logistic regression in Keras
  x = Input(shape=(32,))
  y = Dense(16, activation='softmax')(x)
  model = Model(x, y)
  ```
  """

tip:我们在model.py中用到了shape这个attribute,

input_image = KL.Input(
      shape=[None, None, config.IMAGE_SHAPE[2]], name="input_image")
    input_image_meta = KL.Input(shape=[config.IMAGE_META_SIZE],
                  name="input_image_meta")

阅读input()里面的句子逻辑:

可以发现,进入if语句的情况是batch_shape不为空,并且tensor为空,此时进入if,用assert判断如果shape不为空,那么久会有错误提示,告诉你要么输入shape 要么输入batch_shape, 还提示你shape不包含batch个数,就是一个batch包含多少张图片。

那么其实如果tensor不空的话,我们可以发现,也会弹出这个提示,但是作者没有写这种题型,感觉有点没有安全感。注意点好了

if not batch_shape and tensor is None:
    assert shape is not None, ('Please provide to Input either a `shape`'
                  ' or a `batch_shape` argument. Note that '
                  '`shape` does not include the batch '
                  'dimension.')

如果单纯的按照规定输入shape,举个例子:只将shape输入为None,也就是说tensor的dimension我都不知道,但我知道这是个向量,你看着办吧。

input_gt_class_ids = KL.Input(
shape=[None], name="input_gt_class_ids", dtype=tf.int32)

就会调用Input()函数中的这个判断句式,注意因为shape是个List,所以shape is not None 会返回true。同时有没有输入batch_shape的话,就会用shape的参数去创造一个batch_shape.

if shape is not None and not batch_shape:
batch_shape = (None,) + tuple(shape)

比如如果输入:

shape = (None,)
batch_shape = (None,)+shape
batch_shape
#会得到(None, None)

可以发现,这里要求使用者至少指明你的数据维度,比如图片的话,是三维的,所以shape至少是[None,None,None],而且我认为shape = [None,1] 与shape = [None]是一样的都会创建一个不知道长度的向量。

以上这篇keras.layer.input()用法说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
介绍Python中的文档测试模块
Apr 28 Python
Python模拟登陆淘宝并统计淘宝消费情况的代码实例分享
Jul 04 Python
深入理解Python中的super()方法
Nov 20 Python
Python装饰器用法实例总结
Feb 07 Python
Python Tkinter模块实现时钟功能应用示例
Jul 23 Python
Python的条件锁与事件共享详解
Sep 12 Python
Python3使用腾讯云文字识别(腾讯OCR)提取图片中的文字内容实例详解
Feb 18 Python
python实现银行实战系统
Feb 26 Python
python中如何打包用户自定义模块
Sep 23 Python
PyCharm最新激活码(2020/10/27全网最新)
Oct 27 Python
Python+Matplotlib图像上指定坐标的位置添加文本标签与注释
Apr 11 Python
如何利用python实现列表嵌套字典取值
Jun 10 Python
python适合做数据挖掘吗
Jun 16 #Python
Python+PyQt5+MySQL实现天气管理系统
Jun 16 #Python
Python实现SMTP邮件发送
Jun 16 #Python
python语言中有算法吗
Jun 16 #Python
python爬虫可以爬什么
Jun 16 #Python
通过cmd进入python的步骤
Jun 16 #Python
解决Keras 自定义层时遇到版本的问题
Jun 16 #Python
You might like
php调用mysql存储过程
2007/02/14 PHP
PHP删除HTMl标签的实现代码
2013/06/30 PHP
PHP字符串word末字符实现大小写互换的方法
2014/11/10 PHP
firefox 和 ie 事件处理的细节,研究,再研究 书写同时兼容ie和ff的事件处理代码
2007/04/12 Javascript
JavaScript 浮点数运算 精度问题
2009/10/06 Javascript
jQuery选择器中含有空格的使用示例及注意事项
2013/08/25 Javascript
JS在可编辑的div中的光标位置插入内容的方法
2014/11/20 Javascript
Lua表达式和控制结构学习笔记
2014/12/15 Javascript
JS去除iframe滚动条的方法
2015/04/01 Javascript
浅谈Jquery为元素绑定事件
2015/04/27 Javascript
javascript常用函数(1)
2015/11/04 Javascript
javascript简单实现等比例缩小图片的方法
2016/07/27 Javascript
webpack中CommonsChunkPlugin详细教程(小结)
2017/11/09 Javascript
echarts学习笔记之箱线图的分析与绘制详解
2017/11/22 Javascript
Node.JS循环删除非空文件夹及子目录下的所有文件
2018/03/12 Javascript
vue-router相关基础知识及工作原理
2018/03/16 Javascript
vue.js element-ui tree树形控件改iview的方法
2018/03/29 Javascript
举例讲解Python的Tornado框架实现数据可视化的教程
2015/05/02 Python
Python+matplotlib+numpy实现在不同平面的二维条形图
2018/01/02 Python
python3实现基于用户的协同过滤
2018/05/31 Python
Python使用gRPC传输协议教程
2018/10/16 Python
将python包发布到PyPI和制作whl文件方式
2019/12/25 Python
pandas数据处理之绘图的实现
2020/06/15 Python
解析Python 偏函数用法全方位实现
2020/06/26 Python
Django自带的用户验证系统实现
2020/12/18 Python
python如何调用php文件中的函数详解
2020/12/29 Python
芬兰汽车配件商店:Autonvaraosat24
2017/01/30 全球购物
成人大专自我鉴定范文
2013/10/19 职场文书
大学军训自我鉴定
2013/12/15 职场文书
公司财务流程之主管工作流程
2014/03/03 职场文书
四风问题查摆材料
2014/08/25 职场文书
辩论赛新闻稿
2015/07/17 职场文书
青年志愿者活动感想
2015/08/07 职场文书
2016应届毕业生实习评语
2015/12/01 职场文书
如何让vue长列表快速加载
2021/03/29 Vue.js
简述Java中throw-throws异常抛出
2021/08/07 Java/Android