Add a script to generate a .tflite
Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
parent
b8acb45e68
commit
b7a20686e9
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,4 +2,4 @@ venv
|
||||
train.json
|
||||
dataset
|
||||
final_model
|
||||
|
||||
final_model.tflite
|
||||
|
11
tfliteify.py
Executable file
11
tfliteify.py
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import tensorflow as tf
|
||||
|
||||
converter = tf.lite.TFLiteConverter.from_saved_model("final_model")
|
||||
converter.target_spec.supported_ops = [
|
||||
tf.lite.OpsSet.TFLITE_BUILTINS, # enable TensorFlow Lite ops.
|
||||
tf.lite.OpsSet.SELECT_TF_OPS # enable TensorFlow ops.
|
||||
]
|
||||
tflite_model = converter.convert()
|
||||
open("final_model.tflite", "wb").write(tflite_model)
|
Loading…
x
Reference in New Issue
Block a user