登录
首页 » Python » 基于MLP、CNN的手写数字识别报告

基于MLP、CNN的手写数字识别报告

于 2021-05-06 发布
0 154
下载积分: 1 下载次数: 1

代码说明:

手写数字识别实验报告 ├── 基于MLP的手写数字识别机制.docx└── mnist代码流程图.vsdx   1 directory, 2 files

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 遗传算法解决 TSP 问题
    遗传算法解决 TSP 问题,并将其可视化
    2020-12-09下载
    积分:1
  • LSTM入门正弦波序列预测
    LSTM入门学习,正弦波序列预测         for i, input_t in enumerate(input.chunk(input.size(1), dim=1)):             h_t, c_t = self.lstm1(input_t, (h_t, c_t))             h_t2, c_t2 = self.lstm2(h_t, (h_t2, c_t2))             output = self.linear(h_t2)  # output.shape:[batch,1]             outputs = [output]  # outputs.shape:[[batch,1],...[batch,1]], list composed of n [batch,1],         for i in range(future):  # if we should predict the future             h_t, c_t = self.lstm1(output, (h_t, c_t))             h_t2, c_t2 = self.lstm2(h_t, (h_t2, c_t2))             output = self.linear(h_t2)  # output.shape:[batch,1]             outputs = [output]  # outputs.shape:[[batch,1],...[batch,1]], list composed of n [batch,1],         outputs = torch.stack(outputs, 1).squeeze(2)  # shape after stack:[batch, n, 1], shape after squeeze: [batch,n]         return outputs
    2021-06-30 00:31:01下载
    积分:1
  • PyQT小学阅读器
    【实例简介】 PYQT 小说阅读器
    2021-11-20 00:33:04下载
    积分:1
  • 卷积神经网络
    【实例简介】
    2021-06-22 00:31:18下载
    积分:1
  • 联邦学习实战代码
    联邦学习实战代码
    2021-05-07下载
    积分:1
  • 复杂网络K-shell法顶点排序实例.py
    复杂网络K-shell法顶点排序实例.py
    2020-11-07下载
    积分:1
  • 猜拳游戏(石头剪刀布.py)
    # 石头 0 剪刀 1 布 2 import randombot = random.randint(0, 2)player = int(input("输入您的结果")) if (player == 1) and (bot == 2) or (player == 2) and (bot == 0) or (player == 0) and (bot == 1): print("玩家获胜") elif player == bot: print("你们打成平手") else: print("电脑获胜")
    2020-11-30下载
    积分:1
  • 手机短信轰炸.py
    手机短信轰炸.py
    2021-05-07下载
    积分:1
  • 图像识别(于百度api)
    【实例简介】 # client_id 为官网获取的AK, client_secret 需要从百度官方申请SK
    2021-05-31 00:31:11下载
    积分:1
  • PyQt行星模拟.py
    如果需要太阳,地球图片,下载好了放到一个名为res的文件夹里,取名sun.png, earth.png
    2021-05-06下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载