[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter'
2020.06.08
코드 import tensorflow as tf interpreter = tf.lite.interpreter("model.tflite") interpreter.allocate_tensors() 오류 메세지 AttributeError Traceback (most recent call last) in () 1 import tensorflow as tf 2 interpreter = tf.lite.interpreter("model.tflite") 3 interpreter.allocate_tensors() AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter' +) attribute 확인하는 방법 'lite' in dir(tf..