In Tensorflow, get the names of all the Tensors in a graph
I am creating neural nets with Tensorflow
and skflow
; for some reason I want to get the values of some inner tensors for a given input, so I am using myClassifier.get_layer_value(input, "tensorName")
, myClassifier
being a skflow.estimators.TensorFlowEstimator
.