I have trained a CNN and created a tensorflow model file (.ckpt).
I have to implement the forward propagation on a hardware using the trained model and for that I need the updated weights and biases (as I got after the training).
However, the .ckpt file has binary encoding.
How do I convert it to some human readable format so I can read the updated model parameters?