summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/libraries/wasi-nn/test/models/utils.py
blob: 8335f05dacf01206a3f156a4ce98833eadf48406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2019 Intel Corporation.  All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

import tensorflow as tf
import pathlib


def save_model(model, filename):
    converter = tf.lite.TFLiteConverter.from_keras_model(model)
    tflite_model = converter.convert()
    tflite_models_dir = pathlib.Path("./")
    tflite_model_file = tflite_models_dir/filename
    tflite_model_file.write_bytes(tflite_model)