i'am still trying to run Tensorflow with own image data. I was able to create a .tfrecords file with the conevert_to() function from this example link
Now i i'd like to train the network with code from that example link.
But it fails in the read_and_decode() function. My changes in that function are:
label = tf.decode_raw(features['label'], tf.string)
The Error is:
TypeError: DataType string for attr 'out_type' not in list of allowed values: float32, float64, int32, uint8, int16, int8, int64
So how to 1) read and 2) use string labels for training in tensorflow.