Skip to content

Latest commit

 

History

History

tensorflow

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

基于TF的一些东西

使用inspect_checkpoint来查看ckpt里的内容 打印节点信息

from tensorflow.python.tools import inspect_checkpoint as chkp
from tensorflow.python.framework import meta_graph
input_graph_def = meta_graph.read_meta_graph_file("model2.ckpt.meta").graph_def
for node in input_graph_def.node:
    print(node.name)

Tensorboard

tensorboard --logdir=/Users/fire/A

pb2onnx

https://github.com/onnx/tensorflow-onnx

剪枝

Basic

Demo

Resource