91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現keras .h5轉移動端的.tflite文件

發布時間:2020-07-22 11:05:42 來源:億速云 閱讀:267 作者:小豬 欄目:開發技術

小編這次要給大家分享的是如何實現keras .h5轉移動端的.tflite文件,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

以前tensorflow有bug 在winodws下無法轉,但現在好像沒有問題了,代碼如下

將keras 下的mobilenet_v2轉成了tflite

from keras.backend import clear_session
import numpy as np
import tensorflow as tf
clear_session()
np.set_printoptions(suppress=True)
input_graph_name = "../models/weights.best_mobilenet224.h6"
output_graph_name = input_graph_name[:-3] + '.tflite'
converter = tf.lite.TFLiteConverter.from_keras_model_file(model_file=input_graph_name)
converter.post_training_quantize = True
#在windows平臺這個函數有問題,無法正常使用
tflite_model = converter.convert()
open(output_graph_name, "wb").write(tflite_model)
print ("generate:",output_graph_name)

補充知識:如何把Tensorflow模型轉換成TFLite模型

深度學習迅猛發展,目前已經可以移植到移動端使用了,TensorFlow推出的TensorFlow Lite就是一款把深度學習應用到移動端的框架技術。

使用TensorFlowLite 需要tflite文件模型,這個模型可以由TensorFlow訓練的模型轉換而成。所以首先需要知道如何保存訓練好的TensorFlow模型。

一般有這幾種保存形式:

1、Checkpoints

2、HDF5

3、SavedModel等

保存與讀取CheckPoint

當模型訓練結束,可以用以下代碼把權重保存成checkpoint格式

model.save_weights('./MyModel',True)

checkpoints文件僅是保存訓練好的權重,不帶網絡結構,所以做predict時需要結合model使用

如:

model = keras_segmentation.models.segnet.mobilenet_segnet(n_classes=2, input_height=224, input_width=224)
model.load_weights('./MyModel')

保存成H5

把訓練好的網絡保存成h6文件很簡單

model.save('MyModel.h6')

H5轉換成TFLite

這里是文章主要內容

我習慣使用H5文件轉換成tflite文件

官網代碼是這樣的

converter = tf.lite.TFLiteConverter.from_keras_model_file('newModel.h6')
tflite_model = converter.convert()
open("converted_model.tflite", "wb").write(tflite_model)

但我用的keras 2.2.4版本會報下面錯誤,好像說是新版的keras把relu6改掉了,找不到方法

ValueError: Unknown activation function:relu6

于是需要自己定義一個relu6

import tensorflow as tf
from tensorflow.python.keras import backend as K
from tensorflow.python.keras.utils import CustomObjectScope

def relu6(x):
 return K.relu(x, max_value=6)

with CustomObjectScope({'relu6': relu6}):
  converter = tf.lite.TFLiteConverter.from_keras_model_file('newModel.h6')
  tflite_model = converter.convert()
  open("newModel.tflite", "wb").write(tflite_model)

看到生成的tflite文件表示保存成功了

也可以這么查看tflite網絡的輸入輸出

import numpy as np
import tensorflow as tf

# Load TFLite model and allocate tensors.
interpreter = tf.lite.Interpreter(model_path="newModel.tflite")
interpreter.allocate_tensors()

# Get input and output tensors.
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()

print(input_details)
print(output_details)

輸出了以下信息

[{'name': 'input_1', 'index': 115, 'shape': array([ 1, 224, 224, 3]), 'dtype': <class 'numpy.float32'>, 'quantization': (0.0, 0)}]

[{'name': 'activation_1/truediv', 'index': 6, 'shape': array([ 1, 12544, 2]), 'dtype': <class 'numpy.float32'>, 'quantization': (0.0, 0)}]

兩個shape分別表示輸入輸出的numpy數組結構,dtype是數據類型

看完這篇關于如何實現keras .h5轉移動端的.tflite文件的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通辽市| 车致| 盐源县| 香河县| 巴林右旗| 长子县| 赤城县| 本溪| 蒲城县| 崇州市| 甘泉县| 岳普湖县| 进贤县| 论坛| 靖安县| 大同市| 开封县| 阜平县| 公安县| 林西县| 陆丰市| 宣恩县| 长泰县| 莱州市| 济南市| 浙江省| 安丘市| 万盛区| 德州市| 武乡县| 石屏县| 固始县| 平潭县| 东丽区| 通榆县| 綦江县| 柳林县| 高雄市| 松阳县| 美姑县| 天长市|