TensorFlow
Cloud陈
这个作者很懒,什么都没留下…
展开
-
TypeError: Expected int32, got list containing Tensors of type '_Message' instead.解决方法
0.x版本:数字在前,tensors在后:tf.concat(n, tensors)1.0及以后版本:tensors在前,数字在后:tf.concat(tensors, n)原创 2017-08-09 13:10:59 · 5804 阅读 · 0 评论 -
Windows环境下TensorFlow的安装及如何在Jupyter Notebook中使用TensorFlow
最近开始学习TensorFlow,因为自己电脑配置不高,只能在Windows下安装cpu版的TensorFlow。首先安装了最新版的Anaconda,接着使用pip命令安装TensorFlow出现下面的问题:tensorflow-1.1.0rc2-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.原因是W...原创 2017-04-19 11:09:48 · 7493 阅读 · 5 评论