11 2022 档案

摘要:【自己的手写数字】 1.创建较小的PNG图片,把它们调整到28*28像素,从而可以匹配用过的来自MNIST数据集的图片 2.从常见图像文件格式读取和解码数据 import scipy.misc#导入库 img_array=scripy.misc.imread(image_file_name,flat 阅读全文
posted @ 2022-11-21 18:36 asandstar 阅读(77) 评论(0) 推荐(0) 编辑
摘要:Tensorflow 2.5.0 + Cuda 11.2 + cudnn 8.1 (windows) pip install --ignore-installed --upgrade tensorflow-gpu 报错Could not install packages due to an OSEr 阅读全文
posted @ 2022-11-17 21:34 asandstar 阅读(117) 评论(0) 推荐(0) 编辑
摘要:【数据集下载地址】 1.MNIST数据集中较小子集( 需要 右键 另存为 ) 100条训练数据集 http://raw.githubusercontent.com/makeyourownneuralnetwork/makeyourownneuralnetwork/master/mnist_datas 阅读全文
posted @ 2022-11-17 11:43 asandstar 阅读(286) 评论(0) 推荐(0) 编辑
摘要:计算机系统:输入->(计算)->输出 建立模型可以模拟事情的运作 神经网络的基本思想:持续细化误差值。 大的误差需要大的修正值,小的误差需要小的修正值。 尝试得到一个答案,并多次改进答案。可称迭代,是持续地、一点一点地改进答案。 分类器和预测器区别不大 预测器:接受一个输入,做应有的预测,输出结果 阅读全文
posted @ 2022-11-16 06:28 asandstar 阅读(112) 评论(0) 推荐(0) 编辑
摘要:fib()递归 fib(n)=fib(n1)+fib(n2):0,1,1,2,3,5,8, 复杂度计算 T(0)=T(1)=1;T(n)=T(n1)+T(n2)+1,n>1S(n)=T(n)+12//这是要去掉递归式里的常数 阅读全文
posted @ 2022-11-15 19:46 asandstar 阅读(48) 评论(0) 推荐(0) 编辑
摘要:log1+log2+log3++logn=O(nlogn) 1+12+13+14+1n=O(logn) $\displaystyle{n+\frac{n}{2}+\frac{n}{4 阅读全文
posted @ 2022-11-15 18:51 asandstar 阅读(55) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示