1
我試圖根據張量流的tutorial將我的數據編碼爲tf.train.Example。 我有,我想傳遞給Example
類的Features
屬性的字符串值,我用下面的代碼:TensorFlow輸入數據協議緩衝區(tf.train.Example)字符串類型爲Feature的TypeError
import tensorflow as tf
tf_example = tf.train.Example()
s1 = "sample string 1"
tf_example.features.feature['str1'].bytes_list.value.extend([s1])
不過,我得到它期待bytes
不str
錯誤:
TypeError: 'sample string 1' has type <class 'str'>, but expected one of: ((<class 'bytes'>,),)
我錯過了什麼?