python - Reset weights of a pretrained incetion_v3 model in Tensorflow -
i have pretrained inception_v3 model , use function load frozen weights
tf.import_graph_def(graph_def)
for task, want change/reset weights of inception_v3 model.
i able variables
op = sess.graph.get_operations()
on other hand, want variables have weights. in case, tf.trainable_variables()
returns none
.
tl;dr: want extract weight , bias variables frozen graph
Comments
Post a Comment