摘要: 利用平pytorch搭建简单的神经网络实现minist手写字体的识别,采用三层线性函数迭代运算,使得其具备一定的非线性转化与运算能力,其数学原理如下: 其具体实现代码如下所示:import torchimport matplotlib.pyplot as pltdef plot_curve(data): #曲线输出函数构建 fig=plt.figure() plt.pl... 阅读全文
posted @ 2019-09-17 23:51 The-Chosen-One 阅读(3532) 评论(0) 推荐(0) 编辑