【发布时间】: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 输出不匹配。
我不明白它为什么会这样。另外,谁能确认这是否是为模型提供输入的正确方法?
一些额外的信息:
我从源代码 v1.14.0 构建了 tflite,使用命令:
bazel build -c opt //tensorflow/contrib/lite:libtensorflowLite.so --cxxopt="-std=c++11" --verbose_failures我训练了我的模型并在另一台机器上使用 tensorflow v2.0 将其转换为 tflite
【问题讨论】:
标签: c++ tensorflow tensorflow-lite