我正在运行https://www.tensorflow.org/alpha/tutorials/keras/feature_columns#create_a_feature_layer
启用eager时,它工作正常,但是如果禁用eager,则ValueError: column_name: thal input_tensor dtype must be string or integer. dtype: <dtype: 'float32'>.
会出错。
我正尝试使用shared embedding,它需要非急切模式。
因此,上面的基本feature_column代码仅在启用eager模式时运行, 并且shared_embedding需要关闭紧急模式。
我怎么都可以?