guik
guik

Reputation: 419

Tensorflow Dataset performances?

I am implementing a model inspired by the NMT model. I am using a training set stored as TFRecords files, using a TFRecordDataset to fetch it and feed the model. Following Google's recommendations about input pipeline performances improvement, I have:

However, GPU remains at maximum 40%, and it is barely as slow as when run on CPU. I am thus wondering about the prefetch operation.

Any other advice regarding Dataset speedup would be appreciated.

Upvotes: 1

Views: 398

Answers (1)

guik
guik

Reputation: 419

Apparently, Dataset API runs on CPU and not on GPU, so this answers the question.

Upvotes: 0

Related Questions