- 博客(8)
- 收藏
- 关注
原创 Anaconda3+Tensorflow安装
先装Anaconda3,安装好了后,开始 里会有 Anaconda3 Prompt,进去后安装名为tensorflow的环境, conda create --name tensorflow python=3.9 (python在安装Anaconda3之前就安装好了) 进入tensorflow环境,activate tensorflow, 开始安装tensorflow2.8.0, 输入:pip install tensorflow==2.8.0-i https://pypi.tuna....
2022-04-13 15:40:37 430
原创 Tensorflow的reshape用法
reshape 里是一个tuple 而不是数,不能写成28*28*1, 是reshape(28,28,1)
2022-04-08 15:45:13 586
原创 ‘EagerTensor‘ object has no attribute ‘reshape‘处理图像数据
在对x_test训练后,得到的是三维的图片,现在想reshape,需要用到numpy, import numpy as np x_test1 = np.arrray(x_test) #输出图片样式 plt.imshow(x_test1,reshape(28,28))
2022-04-07 09:25:14 3792
原创 cannot import name ‘to_categorical‘ from ‘keras.utils‘
现在keras完全置于tensorflow模块中,这个要从tensoflow模块导入,修改为: from tensorflow.keras.utils import to_categorical
2022-03-31 10:23:28 977
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人