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实现简单QQ单用户机器人的方法
Jul 03 Python
web.py获取上传文件名的正确方法
Aug 26 Python
python如何爬取个性签名
Jun 19 Python
Python 2.7中文显示与处理方法
Jul 16 Python
Python解决线性代数问题之矩阵的初等变换方法
Dec 12 Python
PythonWeb项目Django部署在Ubuntu18.04腾讯云主机上
Apr 01 Python
Python 中pandas索引切片读取数据缺失数据处理问题
Oct 09 Python
Python3实现mysql连接和数据框的形成(实例代码)
Jan 17 Python
基于python纯函数实现井字棋游戏
May 27 Python
python生成xml时规定dtd实例方法
Sep 21 Python
matplotlib bar()实现多组数据并列柱状图通用简便创建方法
Feb 24 Python
Python使用pyecharts控件绘制图表
Jun 05 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
Zend引擎的发展 [15]
2006/10/09 PHP
PHP CURL获取返回值的方法
2014/05/04 PHP
PHP的switch判断语句的“高级”用法详解
2014/10/01 PHP
php实现的简单中文验证码功能示例
2017/01/03 PHP
php swoole多进程/多线程用法示例【基于php7nts版】
2019/08/12 PHP
Mootools 图片展示插件(lightbox,ImageMenu)收集集合
2010/05/21 Javascript
jQuery获取样式中颜色值的方法
2015/01/29 Javascript
jQuery实现鼠标经过弹出提示信息的地图热点效果
2015/08/07 Javascript
js简单实现Select互换数据的方法
2015/08/17 Javascript
Extjs4.0 ComboBox如何实现三级联动
2016/05/11 Javascript
jQuery模仿京东/天猫商品左侧分类导航菜单效果
2016/06/29 Javascript
JS跨域请求外部服务器的资源
2017/02/06 Javascript
BootStrap表单时间选择器详解
2017/05/09 Javascript
Mint UI 基于 Vue.js 移动端组件库
2017/11/07 Javascript
vue-cli项目优化方法- 缩短首屏加载时间
2018/04/01 Javascript
nodejs实现一个word文档解析器思路详解
2018/08/14 NodeJs
react 中父组件与子组件双向绑定问题
2019/05/20 Javascript
JS+Canvas实现五子棋游戏
2020/08/26 Javascript
Python中实现两个字典(dict)合并的方法
2014/09/23 Python
Python 详解基本语法_函数_返回值
2017/01/22 Python
python中闭包Closure函数作为返回值的方法示例
2017/12/17 Python
python实现K最近邻算法
2018/01/29 Python
使用 Python 处理3万多条数据只要几秒钟
2020/01/19 Python
Pytorch中.new()的作用详解
2020/02/18 Python
django 利用Q对象与F对象进行查询的实现
2020/05/15 Python
python boto和boto3操作bucket的示例
2020/10/30 Python
css3 边框、背景、文本效果的实现代码
2018/03/21 HTML / CSS
ABOUT YOU罗马尼亚:超过600个时尚品牌
2019/09/19 全球购物
俄罗斯连接商品和买家的在线平台:goods.ru
2020/11/30 全球购物
C++是不是类型安全的
2014/02/18 面试题
关爱残疾人演讲稿
2014/05/24 职场文书
运动会横幅标语
2014/06/17 职场文书
课外科技活动总结
2014/08/27 职场文书
2015年计生工作总结范文
2015/04/24 职场文书
小学语文继续教育研修日志
2015/11/13 职场文书
使用redis生成唯一编号及原理示例详解
2021/09/15 Redis