我看到 tensorflow.contrib.lite.Interpreter 最近在 python API 中公开。但是,当我使用 5/22 (4dbaa65) 的 repo 头在 Ubuntu 16.04 和 python 3.5 中按照标准 Tensorflow 安装说明从源代码构建和安装 tensorflow 轮时,当我尝试运行它时出现分段错误:
In [1]: import tensorflow as tf
In [2]: a = tf.contrib.lite.Interpreter('mobilenet_quant_v1_224.tflite')
In [3]: a.get_input_details()
Segmentation fault (core dumped)
我用错了吗?