How to save tensorflow specific variable to local disk as a ndarray?(not layer parameter,just a variable, or tensor) Like :
ux=tf.Variable([10,1600,1,2])
tf.save('ux.npy',ux)
Is there anything like the code above? And after that I can load the ux.npy like:
ux = numpy.load('ux.npy')