mri

How to store a NifTi as a TFRecord

How to store a NifTi as a TFRecord Patrick Sadil 2022-04-23 A recent project required sending brain images to TensorFlow. Unfortunately, the data exceeded memory and so during training would need to be read from the disk. Poking around the TF documentation, it seems like a recommended way to do this is to store the images as a TFRecord. The steps for doing that are collected in this gist1. There are five main steps