Reputation: 87
I have some TFRecords files stored on Azure Blob storage. I wonder is there some way to read them directly using tensorflow's Dataset API.
The way I currently use is to download those tfreocrds to local file system and then read from via Dataset API. Is there a more efficient way?
Upvotes: 0
Views: 294
Reputation: 18556
The way to go here is to construct SAS tokens for your files and use the resulting urls to download the files in tensorflow. You can generate the tokens via Azure Portal if you only have a few files, or use something like the Azure CLI.
Upvotes: 0