我看到tensorflow.contrib.lite.Interpreter最近在python API中公开了。但是,当我从Ubuntu 16.04中的standard Tensorflow installation instructions使用python 3.5使用repo head从5/22(4dbaa65)开始构建和安装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)
我是否错误地使用了这个?