【问题标题】:How to give multi-dimensional inputs to tflite via C++ API如何通过 C++ API 向 tflite 提供多维输入
【发布时间】:2019-12-20 11:51:07
【问题描述】:

我正在尝试使用 tflite C++ API 来运行我构建的模型。我通过以下 sn-p 将模型转换为 tflite 格式:

import tensorflow as tf
converter = tf.lite.TFLiteConverter.from_keras_model_file('model.h5') 
tfmodel = converter.convert() 
open("model.tflite", "wb").write(tfmodel)

我按照tflite official guide 提供的步骤进行操作,到目前为止我的代码如下所示

// Load the model
std::unique_ptr<tflite::FlatBufferModel> model = tflite::FlatBufferModel::BuildFromFile("model.tflite");

// Build the interpreter
tflite::ops::builtin::BuiltinOpResolver resolver;
std::unique_ptr<tflite::Interpreter> interpreter;

tflite::InterpreterBuilder builder(*model, resolver);
builder(&interpreter);
interpreter->AllocateTensors();

// Check interpreter state
tflite::PrintInterpreterState(_interpreter.get());

这表明我的输入层的形状为 (1, 2050, 6)。为了从 C++ 提供输入,我关注了this thread,我的输入代码如下所示:

std::vector<std::vector<double>> tensor;     // I filled this vector, (dims are 2050, 6)

int input = interpreter->inputs()[0];
float* input_data_ptr = interpreter->typed_input_tensor<float>(input);
for (int i = 0; i < 2050; ++i) {
    for (int j = 0; j < 6; j++) {
        *(input_data_ptr) = (float)tensor[i][j];
        input_data_ptr++;
    }
}

此模型的最后一层返回单个浮点(概率)​​。我从以下代码中得到输出。

interpreter->Invoke();
int output_idx = interpreter->outputs()[0];
float* output = interpreter->typed_output_tensor<float>(output_idx);
std::cout << "OUTPUT: " << *output << std::endl;

我的问题是我得到不同输入的相同输出。此外,输出与 tensorflow-python 输出不匹配。

我不明白它为什么会这样。另外,谁能确认这是否是为模型提供输入的正确方法?

一些额外的信息:

  1. 我从源代码 v1.14.0 构建了 tflite,使用命令:bazel build -c opt //tensorflow/contrib/lite:libtensorflowLite.so --cxxopt="-std=c++11" --verbose_failures

  2. 我训练了我的模型并在另一台机器上使用 tensorflow v2.0 将其转换为 tflite

【问题讨论】:

    标签: c++ tensorflow tensorflow-lite


    【解决方案1】:

    这是错误的 API 用法。

    typed_input_tensor 更改为typed_tensor 并将typed_output_tensor 更改为typed_tensor 为我解决了这个问题。

    对于遇到相同问题的其他人,

    int input_tensor_idx = 0;
    int input = interpreter->inputs()[input_tensor_idx];
    float* input_data_ptr = interpreter->typed_input_tensor<float>(input_tensor_idx);
    

    int input_tensor_idx = 0;
    int input = interpreter->inputs()[input_tensor_idx];
    float* input_data_ptr = interpreter->typed_tensor<float>(input);
    

    是相同的。

    这可以通过查看typed_input_tensor 的实现来验证。

      template <class T>
      T* typed_input_tensor(int index) {
        return typed_tensor<T>(inputs()[index]);
      }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-03-28
      • 2017-12-07
      • 2015-08-22
      • 1970-01-01
      • 1970-01-01
      • 2020-04-05
      • 2015-03-11
      • 2014-04-12
      相关资源
      最近更新 更多