tf.tile()用法
版權宣告:本文為博主原創文章,未經博主允許不得轉載。 https://blog.csdn.net/Eric_LH/article/details/79074583
tile() 平鋪之意,用於在同一維度上的複製
tf.tile(
input, #輸入
multiples, #同一維度上覆制的次數
name=None
)
# a = tf.constant([1,2],name='a')
# b= tf.tile(a,[1,2])
# sess = tf.Session()
# print(sess.run(b))
# [[1,2]
[1,2]]
error:ValueError: Shape must be rank 1 but is rank 2 for ‘Tile’ (op: ‘Tile’) with input shapes: [2], [2].
import tensorflow as tf
a = tf.constant([[1,2]],name='a')
b= tf.tile(a,[1,2])
sess = tf.Session()
print(sess.run(b))
output:
[[1 2 1 2]]
import tensorflow as tf
a = tf.constant([[1,2]],name='a')
b= tf.tile(a,[2,1])
sess = tf.Session()
print(sess.run(b))
output:
[[1 2]
[1 2]]
參考部落格:
http://blog.csdn.net/xwd18280820053/article/details/72867818
--------------------- 本文來自 Eric_LH 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/eric_lh/article/details/79074583?utm_source=copy
相關文章
- tf.tile()進行張量擴充套件套件
- Qdrant用法;Qdrant在langchain裡的用法LangChain
- Yii2-application用法 (Yii::$app用法)APP
- Cmake用法
- JavaScript用法JavaScript
- iostat用法iOS
- JOptionPane用法
- seqkit用法
- typedef用法
- union用法
- enum用法
- GPG 用法
- sessionStorage 用法Session
- localStorage 用法
- SQLserver With As 用法SQLServer
- WebSocket 用法Web
- Screen 用法
- replace()用法
- VotingClassifier用法GC
- Hydra用法
- unique 用法
- __kindof用法
- requestAnimationFrame用法requestAnimationFrame
- JavaScript this用法JavaScript
- SVN用法
- static用法
- getComputedStyle() 用法
- JSONP 用法JSON
- phpstrtr()用法PHP
- crm用法
- sed用法
- supervisor用法
- allure用法(一)-配置資訊及基本用法
- RDD用法與例項(五):glom的用法
- python match用法Python
- GORM基本用法GoORM
- Opentelemetry collector用法
- createjs tween用法JS