Reputation: 152
How to save or convert tensorflow dataset as TFRecord file? I would like to convert my data from csv file to TFRecord to speed up training.
titanic = pd.read_csv("https://storage.googleapis.com/tf-datasets/titanic/train.csv")
titanic.head()
Upvotes: 0
Views: 3089
Reputation: 3294
Here is an example of creating TFRecords for object detection:
Modify to suit your own data format
Upvotes: 1