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中的身份运算符的使用方法
Oct 13 Python
Python数组遍历的简单实现方法小结
Apr 27 Python
python实现kMeans算法
Dec 21 Python
Python使用matplotlib绘制正弦和余弦曲线的方法示例
Jan 06 Python
Win8.1下安装Python3.6提示0x80240017错误的解决方法
Jul 31 Python
python得到qq句柄,并显示在前台的方法
Oct 14 Python
解决pycharm运行时interpreter为空的问题
Oct 29 Python
阿里云ECS服务器部署django的方法
Aug 29 Python
python数据持久存储 pickle模块的基本使用方法解析
Aug 30 Python
python实现单链表的方法示例
Sep 03 Python
Pyqt助手安装PyQt5帮助文档过程图解
Nov 20 Python
python中操作文件的模块的方法总结
Feb 04 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
echo, print, printf 和 sprintf 区别
2006/12/06 PHP
PHP,ASP.JAVA,JAVA代码格式化工具整理
2010/06/15 PHP
php实现执行某一操作时弹出确认、取消对话框
2013/12/30 PHP
ThinkPHP多表联合查询的常用方法
2020/03/24 PHP
php按字符无乱码截取中文的方法
2015/03/27 PHP
PHP中返回引用类型的方法
2015/04/03 PHP
php简单判断文本编码的方法
2015/07/30 PHP
PHP精确计算功能示例
2016/11/29 PHP
实例讲解PHP中使用命名空间
2019/01/27 PHP
解决php用mysql方式连接数据库出现Deprecated报错问题
2019/12/25 PHP
使用JavaScript库还是自己写代码?
2010/01/28 Javascript
不用构造函数(Constructor)new关键字也能实现JavaScript的面向对象
2013/01/11 Javascript
js 程序执行与顺序实现详解
2013/05/13 Javascript
用javascript添加控件自定义属性解析
2013/11/25 Javascript
动态创建script标签实现跨域资源访问的方法介绍
2014/02/28 Javascript
SuperSlide2实现图片滚动特效
2014/06/20 Javascript
jQuery插件ajaxFileUpload使用详解
2017/01/10 Javascript
微信小程序实现带刻度尺滑块功能
2017/03/29 Javascript
值得分享和收藏的xmlplus组件学习教程
2017/05/05 Javascript
神级程序员JavaScript300行代码搞定汉字转拼音
2017/05/20 Javascript
详解关于JSON.parse()和JSON.stringify()的性能小测试
2019/03/14 Javascript
微信小程序云开发使用方法新手初体验
2019/05/16 Javascript
[55:48]VGJ.S vs TNC Supermajor 败者组 BO3 第二场 6.6
2018/06/07 DOTA
Python基于scipy实现信号滤波功能
2019/05/08 Python
使用python快速实现不同机器间文件夹共享方式
2019/12/22 Python
python GUI库图形界面开发之PyQt5多行文本框控件QTextEdit详细使用方法实例
2020/02/28 Python
CSS3实现滚动条动画效果代码分享
2016/08/03 HTML / CSS
英国健康和美容技术产品购物网站:CurrentBody
2019/07/17 全球购物
英国最大的在线照明商店:Litecraft
2020/08/31 全球购物
大学生党员个人剖析材料
2014/10/08 职场文书
群众路线调研报告范文
2014/11/03 职场文书
安全教育主题班会教案
2015/08/12 职场文书
廉政党课工作报告案例
2019/06/21 职场文书
python爬取豆瓣电影TOP250数据
2021/05/23 Python
HTML5 新增内容和 API详解
2021/11/17 HTML / CSS
python使用torch随机初始化参数
2022/03/22 Python