web-dev-qa-db-ja.com

AttributeError:モジュール 'tensorflow.python.estimator.estimator_lib'に属性 'LinearRegressor'がありません

import tensorflow as tf
import numpy as np
feature_columns = [tf.feature_column.numeric_column("x", shape=[1])]
estimator = tf.estimator.LinearRegressor(feature_columns=feature_columns)

私のコードは上にあります。次に、エラーが表示されます

「AttributeError:module 'tensorflow.python.estimator.estimator_lib' has no attribute 'LinearRegressor'」

Python 3.5.2

6
CelineLi

tf.estimator.LinearRegressortensorflow=1.3.0に含まれているため、古いtensorflowバージョンを使用している可能性があります。

tensorflowインストールをアップグレードする

pip install --upgrade tensorflow==1.3.0
17
Ishant Mrinal