codecamp

TensorFlow函数教程:tf.lite.TocoConverter

tf.lite.TocoConverter函数

 TocoConverter

别名:

  • 类 tf.contrib.lite.TocoConverter
  • 类 tf.lite.TocoConverter

定义在:tensorflow/lite/python/lite.py

使用TOCO将TensorFlow模型转换为output_format。

此类已被弃用。请改用lite.TFLiteConverter。

方法

from_frozen_graph

@classmethod
from_frozen_graph(
    cls,
    graph_def_file,
    input_arrays,
    output_arrays,
    input_shapes=None
)

从包含冻结图的文件创建TocoConverter类。(弃用)

警告:此功能已被弃用。它将在以后的版本中删除。更新说明:改为使用lite.TFLiteConverter.from_frozen_graph

from_keras_model_file

@classmethod
from_keras_model_file(
    cls,
    model_file,
    input_arrays=None,
    input_shapes=None,
    output_arrays=None
)

从tf.keras模型文件创建TocoConverter类。(弃用)

警告:此功能已被弃用。它将在以后的版本中删除。更新说明:改为使用lite.TFLiteConverter.from_keras_model_file

from_saved_model

@classmethod
from_saved_model(
    cls,
    saved_model_dir,
    input_arrays=None,
    input_shapes=None,
    output_arrays=None,
    tag_set=None,
    signature_key=None
)

从SavedModel创建TocoConverter类。(弃用)

警告:此功能已被弃用。它将在以后的版本中删除。更新说明:改为使用lite.TFLiteConverter.from_saved_model

from_session

@classmethod
from_session(
    cls,
    sess,
    input_tensors,
    output_tensors
)

从TensorFlow会话创建TocoConverter类。(弃用)

警告:此功能已被弃用。它将在以后的版本中删除。更新说明:改为使用lite.TFLiteConverter.from_session
TensorFlow函数教程:tf.lite.TFLiteConverter
TensorFlow函数教程:tf.lite.toco_convert
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }