1. ホーム
  2. その他

AttributeError: module 'tensorflow_core.contrib' has no attribute 'lite' Error solved

2022-02-22 23:18:55
<パス

エラーです。AttributeError: モジュール 'tensorflow_core.contrib' には属性 'lite' がありません。

元のコード

converter = tf.contrib.lite.TFLiteConverter.from_session(sess, [x], [y])


解析します。おそらくTensorFlowのバージョンの問題が原因。

import tensorflow 
print(tensorflow.__version__)
'lite' in dir(tensorflow.contrib)
False

'lite' in dir(tf)
True


<イグ

修正したコード

converter = tf.lite.TFLiteConverter.from_session(sess, [ x], [y])


無事解決!!!