欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

keras.layer.input()用法說明

 更新時(shí)間:2020年06月16日 15:23:38   作者:TinaO-O  
這篇文章主要介紹了keras.layer.input()用法說明,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧

tenserflow建立網(wǎng)絡(luò)由于先建立靜態(tài)的graph,所以沒有數(shù)據(jù),用placeholder來占位好申請(qǐng)內(nèi)存。

那么keras的layer類其實(shí)是一個(gè)方便的直接幫你建立深度網(wǎng)絡(luò)中的layer的類。

該類繼承了object,是個(gè)基礎(chǔ)的類,后續(xù)的諸如input_layer類都會(huì)繼承與layer

由于model.py中利用這個(gè)方法建立網(wǎng)絡(luò),所以仔細(xì)看一下:他的說明詳盡而豐富。

input()這個(gè)方法是用來初始化一個(gè)keras tensor的,tensor說白了就是個(gè)數(shù)組。他強(qiáng)大到之通過輸入和輸出就能建立一個(gè)keras模型。shape或者batch shape 必須只能給一個(gè)。shape = [None,None,None],會(huì)創(chuàng)建一個(gè)?*?*?的三維數(shù)組。

下面還舉了個(gè)例子,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:我們?cè)趍odel.py中用到了shape這個(gè)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()里面的句子邏輯:

可以發(fā)現(xiàn),進(jìn)入if語(yǔ)句的情況是batch_shape不為空,并且tensor為空,此時(shí)進(jìn)入if,用assert判斷如果shape不為空,那么久會(huì)有錯(cuò)誤提示,告訴你要么輸入shape 要么輸入batch_shape, 還提示你shape不包含batch個(gè)數(shù),就是一個(gè)batch包含多少?gòu)垐D片。

那么其實(shí)如果tensor不空的話,我們可以發(fā)現(xiàn),也會(huì)彈出這個(gè)提示,但是作者沒有寫這種題型,感覺有點(diǎn)沒有安全感。注意點(diǎn)好了

  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.')

如果單純的按照規(guī)定輸入shape,舉個(gè)例子:只將shape輸入為None,也就是說tensor的dimension我都不知道,但我知道這是個(gè)向量,你看著辦吧。

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

就會(huì)調(diào)用Input()函數(shù)中的這個(gè)判斷句式,注意因?yàn)閟hape是個(gè)List,所以shape is not None 會(huì)返回true。同時(shí)有沒有輸入batch_shape的話,就會(huì)用shape的參數(shù)去創(chuàng)造一個(gè)batch_shape.

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

比如如果輸入:

shape = (None,)
batch_shape = (None,)+shape
batch_shape
#會(huì)得到(None, None)

可以發(fā)現(xiàn),這里要求使用者至少指明你的數(shù)據(jù)維度,比如圖片的話,是三維的,所以shape至少是[None,None,None],而且我認(rèn)為shape = [None,1] 與shape = [None]是一樣的都會(huì)創(chuàng)建一個(gè)不知道長(zhǎng)度的向量。

以上這篇keras.layer.input()用法說明就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Python 最強(qiáng)編輯器詳細(xì)使用指南(PyCharm )

    Python 最強(qiáng)編輯器詳細(xì)使用指南(PyCharm )

    這篇文章主要介紹了Python 最強(qiáng)編輯器詳細(xì)使用指南(PyCharm),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-09-09
  • Flask如何接收前端ajax傳來的表單(包含文件)

    Flask如何接收前端ajax傳來的表單(包含文件)

    這篇文章主要介紹了Flask如何接收前端ajax傳來的表單(包含文件),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • python實(shí)現(xiàn)數(shù)字華容道

    python實(shí)現(xiàn)數(shù)字華容道

    這篇文章主要為大家詳細(xì)介紹了python實(shí)現(xiàn)數(shù)字華容道,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-04-04
  • python集合用法實(shí)例分析

    python集合用法實(shí)例分析

    這篇文章主要介紹了python集合用法,較為詳細(xì)的分析了Python中集合的常見用法,需要的朋友可以參考下
    2015-05-05
  • python實(shí)現(xiàn)從pdf文件中提取文本,并自動(dòng)翻譯的方法

    python實(shí)現(xiàn)從pdf文件中提取文本,并自動(dòng)翻譯的方法

    今天小編就為大家分享一篇python實(shí)現(xiàn)從pdf文件中提取文本,并自動(dòng)翻譯的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2018-11-11
  • Django多個(gè)app urls配置代碼實(shí)例

    Django多個(gè)app urls配置代碼實(shí)例

    這篇文章主要介紹了Django多個(gè)app urls配置代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-11-11
  • Python讀取nc文件的多種方式總結(jié)

    Python讀取nc文件的多種方式總結(jié)

    Python中讀取NetCDF文件有多種方法,包括使用netCDF4、xarray、h5py、SciPy和Pseudonetcdf等庫(kù),文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-09-09
  • Python內(nèi)建函數(shù)之raw_input()與input()代碼解析

    Python內(nèi)建函數(shù)之raw_input()與input()代碼解析

    這篇文章主要介紹了Python內(nèi)建函數(shù)之raw_input()與input()代碼解析,具有一定參考價(jià)值,需要的朋友可以了解下。
    2017-10-10
  • Python和java?如何相互調(diào)用

    Python和java?如何相互調(diào)用

    這篇文章主要介紹了Python和java?如何相互調(diào)用,下面文章見到那的對(duì)Python和java?相互調(diào)用的方法做了個(gè)小總結(jié),具有一定的參考價(jià)值,需要的小伙伴可以參考一下,希望對(duì)你有所幫助
    2021-12-12
  • python把1變成01的步驟總結(jié)

    python把1變成01的步驟總結(jié)

    在本文里我們給學(xué)習(xí)python的朋友們整理了關(guān)于python把1變成01的步驟總結(jié)內(nèi)容,有需要的朋友們學(xué)習(xí)下。
    2019-02-02

最新評(píng)論