1. 程式人生 > >python學習日記13ValueError: None values not supported 查錯

python學習日記13ValueError: None values not supported 查錯

在修改程式新增程式碼時,忽然報錯ValueError: None values not supported
在報錯的程式碼行查詢,有某個tensor的維度錯誤。可以在console中,做模擬的tensor來試驗
sample=tf.ones([10,1],tf.float32)
tf.Session().run(sample)

tf.shape(tf.placeholder(tf.float32,[None,1]))
對placeholder的理解還要進一步研究