定义 TensorFlow 图形并将其保存到磁盘上。

使用 TensorFlow 的 tf.Graph()tf.Session() 函数来定义和运行 TensorFlow 图形,并使用 tf.train.write_graph() 函数将其保存到磁盘上。

import tensorflow as tf

# Define a TensorFlow graph
graph = tf.Graph()
with graph.as_default():
x = tf.placeholder(tf.float32, shape=[None, 200])
W = tf.Variable(tf.zeros([200, 10]))
b = tf.Variable(tf.zeros([10]))
y = tf.nn.softmax(tf.matmul(x, W) + b) # Save the graph to disk
with tf.Session(graph=graph) as sess:
tf.train.write_graph(sess.graph_def, './', 'graph.pb', as_text=False)

使用 TensorFlow 的 tf.lite.TFLiteConverter 类加载图形,并设置转换器的选项。

使用 tf.lite.TFLiteConverter.from_frozen_graph() 函数加载保存的 TensorFlow 图形,并设置转换器的选项。

# Load the graph and create a converter
converter = tf.lite.TFLiteConverter.from_frozen_graph(
graph_def_file='./graph.pb',
output_arrays=['Softmax'],
output_dtype=tf.float32.as_datatype_enum,
inference_type=tf.lite.constants.QUANTIZED_UINT8,
mean=[0.],
std=[255.],
optimizations=[tf.lite.Optimize.DEFAULT]
)

可以调用转换器的 convert() 方法将 TensorFlow 图形转换为 TensorFlow Lite 模型。

# Convert the graph to a TensorFlow Lite model
tflite_model = converter.convert() # Save the TensorFlow Lite model to disk
with open('./model.tflite', 'wb') as f:
f.write(tflite_model)

加载模型执行推理

import tflite_runtime.interpreter as tflite

# Load the TensorFlow Lite model and create an interpreter
interpreter = tflite.Interpreter(model_path='./model.tflite', num_threads=4)
interpreter.allocate_tensors() # Perform inference on a sample input
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()
input_data = np.zeros(input_details[0]['shape'], dtype=np.float32)
interpreter

最新文章

  1. c++ 虚函数和纯虚函数
  2. eclipse导入项目前面有感叹号
  3. ERROR: HHH000123: IllegalArgumentException in class: com.tt.hibernate.helloworld.News, setter method of property: date
  4. 每日学习心得:UEditor样式被过滤无法显示问题
  5. 20145218 《Java程序设计》课程总结
  6. CSS其他
  7. UVaLive 7267 Mysterious Antiques in Sackler Museum (if-else,枚举)
  8. 黑马程序员-hashtable
  9. Android 数据库读取数据显示 [5]
  10. JQuery easyui (2)Droppable(放置)组件
  11. 关于C++中字符的转换
  12. cd命令使用详解
  13. netcore webapi帮助文档设置
  14. Centos7 系统下搭建.NET Core2.0+Nginx+Supervisor+Mysql环境
  15. python大法好——Python 面向对象
  16. 深入理解Adaboost算法
  17. Spring 4 中重定向RedirectAttributes的使用
  18. zabbix 3.2.6+centos 7 +nginx 1.12+ mysql 5.6+ Grafana +php 5.6
  19. MySQL/Oracle视图的创建与使用
  20. C++之基于排序方法求一组数的中位数

热门文章

  1. JAVASCRIPT 对有符号整型、无符号整型、浮点型、十六进制、二进制的数据处理
  2. react框架-this指向问题
  3. Thread 的run方法和start方法的区别
  4. getinstance方法(转)
  5. pycharm开发工具的介绍和使用
  6. WEB攻击与防御技术 pikachu——关于暴力破解
  7. RStudio中有常用的快捷键
  8. html 手机端适配不同手机高度 ,把内容居中显示
  9. qt中的一些对话框(个人备忘录)
  10. 类继承(c++ primer plus)课后习题