-
大小: 1KB文件类型: .py金币: 2下载: 1 次发布日期: 2021-06-18
- 语言: Python
- 标签: tensorflow ckpt pb 模型转化
资源简介
把tensorflow保存的checkpoint类型模型冻结,转化为.pb模型输出。调用方法参见我的博文https://blog.csdn.net/weixin_41864878/article/details/84957681
代码片段和文件信息
import argparse
import tensorflow as tf
from tensorflow.python.framework import graph_util
def freeze_graph(input_checkpointoutput_graph output_node_names):
‘‘‘
To convert the TensorFlow checkpoint files to froze graph
:param input_checkpoint:
:param output_graph:
:return:
‘‘‘
saver = tf.train.import_meta_graph(input_checkpoint + ‘.meta‘ clear_devices=True)
with tf.Session() as sess:
saver.restore(sess input_checkpoint)
output_graph_def = graph_util.convert_variables_to_constants(
sess=sess
input_graph_def=sess.graph_def# :sess.graph_def
output_node_names=output_node_names.split(““))#
with tf.gfile.GFile(output_graph “wb“) as f:
相关资源
- tensorflow制作自己的灰度图像数据集并
- anaconda下安装tensorflow(注:不同版本
- 北京大学曹健老师-人工智能实践:
- Deep Learning With Python - Jason Brownlee
- Python-自然场景文本检测PSENet的一个
- Python-高效准确的EAST文本检测器的一个
- Python-TensorFlow弱监督图像分割
- Python-基于tensorflow实现的用textcnn方法
- Python-subpixel利用Tensorflow的一个子像素
- 【官方文档】TensorFlow Python API docume
- Python PyGame and Raspberry Pi Game Developmen
-
tensorflow画风迁移代码 st
yle transfer - h5py-2.8.0-cp37-cp37m-linux_aarch64.whl
- 简单粗暴 TensorFlow
- [PDF] Reinforcement Learning With Open AI Tens
- tensorflow目标检测代码
- 基于Python的手写字体识别系统
- 基于Tensorflow的人脸识别源码
- python TensorFlow 官方文档中文版
- Python-在TensorFlow中实现实现图像卷积网
- tensorflow-1.9.0-cp37-cp37m-win_amd64.whl
- Faster-RCNN-TensorFlow-Python3.5-master
- 聊天机器人tensorflow
- caffe模型转化为tensorflow模型
- Python-一个非常简单的BiLSTMCRF模型用于
- Python-Tensorflow仿AlphaGo框架实现的AI围棋
- Mask R-CNN源码(TensorFlow版本)
- 基于python3 tensorflow DBN_and_RNN的实现
- tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
- Hands-On Machine Learning with Scikit-Learn an
评论
共有 条评论