91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TensorFlow用expand_dim()來增加維度的方法

發布時間:2020-10-05 21:30:29 來源:腳本之家 閱讀:573 作者:jasonzzj 欄目:開發技術

TensorFlow中,想要維度增加一維,可以使用tf.expand_dims(input, dim, name=None)函數。當然,我們常用tf.reshape(input, shape=[])也可以達到相同效果,但是有些時候在構建圖的過程中,placeholder沒有被feed具體的值,這時就會包下面的錯誤:TypeError: Expected binary or unicode string, got 1

在這種情況下,我們就可以考慮使用expand_dims來將維度加1。比如我自己代碼中遇到的情況,在對圖像維度降到二維做特定操作后,要還原成四維[batch, height, width, channels],前后各增加一維。如果用reshape,則因為上述原因報錯

one_img2 = tf.reshape(one_img, shape=[1, one_img.get_shape()[0].value, one_img.get_shape()[1].value, 1])

用下面的方法可以實現:

one_img = tf.expand_dims(one_img, 0)
one_img = tf.expand_dims(one_img, -1) #-1表示最后一維

在最后,給出官方的例子和說明

# 't' is a tensor of shape [2]
shape(expand_dims(t, 0)) ==> [1, 2]
shape(expand_dims(t, 1)) ==> [2, 1]
shape(expand_dims(t, -1)) ==> [2, 1]

# 't2' is a tensor of shape [2, 3, 5]
shape(expand_dims(t2, 0)) ==> [1, 2, 3, 5]
shape(expand_dims(t2, 2)) ==> [2, 3, 1, 5]
shape(expand_dims(t2, 3)) ==> [2, 3, 5, 1]

Args:

input: A Tensor.
dim: A Tensor. Must be one of the following types: int32, int64. 0-D (scalar). Specifies the dimension index at which to expand the shape of input.
name: A name for the operation (optional).

Returns:

A Tensor. Has the same type as input. Contains the same data as input, but its shape has an additional dimension of size 1 added.

以上這篇TensorFlow用expand_dim()來增加維度的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湖州市| 仁化县| 博野县| 观塘区| 嘉峪关市| 赣州市| 东乡| 镇雄县| 永济市| 贺兰县| 清镇市| 汝南县| 成安县| 晴隆县| 庐江县| 筠连县| 闸北区| 遂平县| 镇安县| 康保县| 佳木斯市| 纳雍县| 措勤县| 龙江县| 曲阜市| 保定市| 三门县| 获嘉县| 兴山县| 犍为县| 兖州市| 安塞县| 浮山县| 南澳县| 佛冈县| 萝北县| 格尔木市| 花莲市| 双峰县| 温州市| 吴忠市|