Open wenmin-wu opened 3 years ago
I developed an "Embedding + MLP" neural network and read zipped TFRecords using tf.data.TFRecordDataset, the time consumed per step is about 75ms compared to my i7 chip MBP which only takes 22ms per step, it's almost 4X slower.
tf.data.TFRecordDataset
75ms
22ms
Thank you for reporting this issue! Could you provide a reproducible test case, so we can investigate this locally?
I developed an "Embedding + MLP" neural network and read zipped TFRecords using
tf.data.TFRecordDataset
, the time consumed per step is about75ms
compared to my i7 chip MBP which only takes22ms
per step, it's almost 4X slower.