tf.squeeze()

轉載自:http://www.javashuo.com/article/p-mvwbjeqv-bq.htmlhtml

  • 原型

      tf.squeeze(input, squeeze_dims=None, name=None)spa

      從tensor中刪除全部大小是1的維度code

      給定張量輸入,此操做返回相同類型的張量,並刪除全部尺寸爲1的尺寸。 若是不想刪除全部大小是1的維度,能夠經過squeeze_dims指定。htm

 

  • 參數解釋
  1. input: A Tensor. The input to squeeze. 
  2. squeeze_dims: An optional list of ints. Defaults to []. If specified, only squeezes the dimensions listed. The dimension index starts at 0. It is an error to squeeze a dimension that is not 1. 
  3. name: A name for the operation (optional).

 

  • 示例
# 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
shape(squeeze(t)) ==> [2, 3]
Or, to remove specific size 1 dimensions:

# 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
shape(squeeze(t, [2, 4])) ==> [1, 2, 3, 1]
相關文章
相關標籤/搜索