Tf摘要未给出直方图但保存会话图(预训练模型)

问题描述 投票:1回答:1

我正在进行分析,以显示在线提供的预训练模型的权重分布。它是在CIFAR10上训练的Resnet18模型。

我有以下代码从metackpt恢复模型然后我尝试使用weights创建卷积层的所有biastf.summary.histogram的直方图

`with tf.Session(graph=tf.Graph()) as sess:
            read=tf.train.import_meta_graph(self.paths[0], clear_devices=True)
            try:
                read.restore(sess, tf.train.latest_checkpoint(self.paths[1]))
            except ValueError:
                try:
                    read.restore(sess, self.paths[1])
                except Exception as e:
                    print(e.message)

            # Summaries of weights
            summ_writer = tf.summary.FileWriter(self.sum_path, sess.graph)
            fp_summaries = []
            for lys in tf.trainable_variables():
                lay_nam = lys.name.split("/")[-2]
                if 'kernel' in lys.name:
                    with tf.name_scope(lay_nam+'_hist'):
                        tf_w_hist = tf.summary.histogram('Weights', tf.reshape(lys.eval(), [-1]))
                        fp_summaries.extend([tf_w_hist])
                if 'bias' in lys.name:
                    with tf.name_scope(lay_nam+'_hist'):
                        tf_b_hist = tf.summary.histogram('Bias', lys.eval())
                        fp_summaries.extend([tf_b_hist])
            tf_fp_summaries = tf.summary.merge(fp_summaries)
            # Run the graph
            output, _=sess.run([softmax, tf_fp_summaries], feed_dict={x: self.x_test[0:100, ]})

但是,存储在文件夹中的日志事件仅存储主图。在tensorboard上没有看到直方图。这里可能出了什么问题?

python tensorflow histogram tensorboard summary
1个回答
1
投票

仅将合并的摘要节点传递给sess.run是不够的。您需要获取该评估结果并将其传递给add_summary实例的FileWriter方法。

# evaluate the merged summary node in the graph
output, summ = sess.run([softmax, tf_fp_summaries], ...)
# explicitly write to file
summ_writer.add_summary(summ, global_step)
# optional, force to write to disk
summ_writer.flush()
© www.soinside.com 2019 - 2024. All rights reserved.