1. 首页
  2. 数据库
  3. 其它
  4. TensorFlow实现打印每一层的输出

TensorFlow实现打印每一层的输出

上传者: 2020-12-31 00:31:55上传 PDF文件 35.74KB 热度 16次
在test.py中可以通过如下代码直接生成带weight的pb文件,也可以通过tf官方的freeze_graph.py将ckpt转为pb文件。 constant_graph = graph_util.convert_variables_to_constants(sess, sess.graph_def,['net_loss/inference/encode/conv_output/conv_output']) with tf.gfile.FastGFile('net_model.pb', mode='wb') as f: f.write(constant_graph.Se
用户评论