AttributeError: module 'tensorflow.compat.v2.__internal__' has no attribute 'tf2'
從 Tensorflow 2.x
起,keras
不再獨立維護 並成為Tensorflow
.的一部份
建議import keras 改為
使用from tensorflow import keras
或import tensorflow as tf
並使用tf.keras
.
您可以Sequential
從tensorflow
如下所示導入模塊
import tensorflow as tf
from tf.keras import Sequential