Tflite segment fault

A simple python script, which is running raspberry pi. Segment fault happened

partial script like below

import tflite_runtime.interpreter as tflite

delegate = {"Linux": "libedgetpu.so.1", "Darwin": "libedgetpu.1.dylib", "Windows": "edgetpu.dll"}[
    platform.system()
]

# Load the Tensorflow Lite model into memory
interpreter = tflite.Interpreter(model_path,
                          experimental_delegates=[tflite.load_delegate(delegate)])

#  segment fault happened
interpreter.allocate_tensors()
````

segment fault happened, it seems interpreter cannot get.

Hi @Chris_LIU

  1. What is the fault?
  2. What is the version of the tflite_runtime.interpreter ?
  3. What is the version of Keras/TensorFlow you have used to create the tflite file ?

Regards