风趣冰棍

文章
9
资源
0
加入时间
2年10月17天

【python人工智能开发过程中的小技巧——keras在线加载mnist数据集】

    今天在学习capsuleNet时,在github上找到了keras在mnist数据集上训练的源码,但是运行时被卡在了一个地方,就是keras中自带的minist.load_data()函数,后来通过CTRL+右键寻其源码发现,原来加载数据的那个网址被墙了,代码如下:def load_data(path='mnist.npz'): """Loads the MNIST dataset...

leetcode067-python 二进制求和

Given two binary strings, return their sum (also a binary string).The input strings are both non-empty and contains only characters 1 or 0.Example 1:Input: a = "11", b = "1"Output: "100"Example 2: