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
tf.estimator.LinearRegressor
がtensorflow=1.3.0
に含まれているため、古いtensorflowバージョンを使用している可能性があります。
tensorflowインストールをアップグレードする
pip install --upgrade tensorflow==1.3.0