运行tensorflow例子遇到的问题和处理

========== RESTART: D:/pythonwork/tensorflow/example/5/nonlinear.py ==========
Traceback (most recent call last):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 6, in <module>
    from sklearn import datasets, cross_validation, metrics
ImportError: cannot import name 'cross_validation'

#自0.18.1版本后sklearn移除了cross validation,因此下面改为model selection



>>>
========== RESTART: D:/pythonwork/tensorflow/example/5/nonlinear.py ==========
Traceback (most recent call last):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 13, in <module>
    from keras.models import Sequential
ModuleNotFoundError: No module named 'keras'
>>>
========== RESTART: D:/pythonwork/tensorflow/example/5/nonlinear.py ==========
Using TensorFlow backend.
Traceback (most recent call last):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 37, in <module>
    X_train, X_test, y_train, y_test = cross_validation.train_test_split(X, y,
NameError: name 'cross_validation' is not defined
>>>
========== RESTART: D:/pythonwork/tensorflow/example/5/nonlinear.py ==========
Using TensorFlow backend.

Warning (from warnings module):
  File "D:\Python36\lib\site-packages\sklearn\preprocessing\data.py", line 625
    return self.partial_fit(X, y)
DataConversionWarning: Data with input dtype int64, float64 were all converted to float64 by StandardScaler.

Warning (from warnings module):
  File "D:\Python36\lib\site-packages\sklearn\base.py", line 462
    return self.fit(X, **fit_params).transform(X)
DataConversionWarning: Data with input dtype int64, float64 were all converted to float64 by StandardScaler.

Warning (from warnings module):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 52
    model.add(Dense(10, input_dim=7, init='normal', activation='relu'))
UserWarning: Update your `Dense` call to the Keras 2 API: `Dense(10, input_dim=7, activation="relu", kernel_initializer="normal")`

Warning (from warnings module):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 53
    model.add(Dense(5, init='normal', activation='relu'))
UserWarning: Update your `Dense` call to the Keras 2 API: `Dense(5, activation="relu", kernel_initializer="normal")`

Warning (from warnings module):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 54
    model.add(Dense(1, init='normal'))
UserWarning: Update your `Dense` call to the Keras 2 API: `Dense(1, kernel_initializer="normal")`

Warning (from warnings module):
  File "D:/pythonwork/tensorflow/example/5/nonlinear.py", line 60
    model.fit(X_train, y_train, nb_epoch=1000, validation_split=0.33, shuffle=True,verbose=2 )
UserWarning: The `nb_epoch` argument in `fit` has been renamed `epochs`.PS

转载于:https://www.cnblogs.com/qianheng/p/10036281.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值