-
Notifications
You must be signed in to change notification settings - Fork 161
/
convert_weights_to_tf_lite.py
41 lines (31 loc) · 1.47 KB
/
convert_weights_to_tf_lite.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Script to covert a .h5 weights file of the DTLN model to tf lite.
Example call:
$python convert_weights_to_tf_light.py -m /name/of/the/model.h5 \
-t name_target
Author: Nils L. Westhausen ([email protected])
Version: 30.06.2020
This code is licensed under the terms of the MIT-license.
"""
from DTLN_model import DTLN_model
import argparse
from pkg_resources import parse_version
import tensorflow as tf
if __name__ == '__main__':
# arguement parser for running directly from the command line
parser = argparse.ArgumentParser(description='data evaluation')
parser.add_argument('--weights_file', '-m',
help='path to .h5 weights file')
parser.add_argument('--target_folder', '-t',
help='target folder for saved model')
parser.add_argument('--quantization', '-q',
help='use quantization (True/False)',
default='False')
args = parser.parse_args()
if parse_version(tf.__version__) < parse_version('2.3.0-rc0'):
raise ValueError('Tf version < 2.3. Conversion of LSTMs will not work'+
+' with older tensorflow versions')
converter = DTLN_model()
converter.create_tf_lite_model(args.weights_file,
args.target_folder,
use_dynamic_range_quant=bool(args.quantization))