You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARNING:tensorflow:From wide.py:64: calling init (from tensorflow.contrib.learn.python.learn.estimators.dnn_linear_combined) with fix_global_step_increment_bug=False is deprecated and will be removed after 2017-04-15.
When running the example I get:
TypeError: __init__() got an unexpected keyword argument 'shape'
Easily fixed by changing:
dense_shape=[df[k].size, 1])
to
shape=[df[k].size, 1])
The text was updated successfully, but these errors were encountered: