RuntimeError: Encountered unresolved custom op: Normalize.Node number 0 (Normalize) failed to prepare
问题 I'm trying to implement smart reply https://www.tensorflow.org/lite/models/smart_reply/overview concept in Python. You can download tflite model file here https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip. import numpy as np import tensorflow as tf interpreter = tf.lite.Interpreter(model_path="smartreply.tflite") interpreter.allocate_tensors() While using above code, i'm getting this error, Traceback (most recent call last): File "smart_reply