Do you know that there are squares within a square. This might seem confusing, but take a look at this. Suppose you have a squ ...
分类:
其他好文 时间:
2019-02-10 10:52:14
阅读次数:
170
SE2205: Algorithms and Data Structures for Object-Oriented DesignLab Assignment 1Assigned: Jan 16, 2019; Due: Feb 13, 2019 @ 10:00 a.m.If you are work ...
分类:
其他好文 时间:
2019-02-09 21:05:12
阅读次数:
124
A factory produces products packed in square packets of the same height h and of the sizes 1*1, 2*2, 3*3, 4*4, 5*5, 6*6. These products are always del ...
分类:
其他好文 时间:
2019-02-09 16:27:10
阅读次数:
193
On a 2-dimensional grid, there are 4 types of squares: 1 represents the starting square. There is exactly one starting square. 2 represents the ending ...
分类:
其他好文 时间:
2019-02-09 01:02:43
阅读次数:
154
Two images A and B are given, represented as binary, square matrices of the same size. (A binary matrix has only 0s and 1s as values.) We translate on ...
分类:
其他好文 时间:
2019-02-07 23:23:10
阅读次数:
214
给出一组正整数$x,n,r$,使得$r^2\equiv x(mod\: n)$,求出所有满足该等式的$r$。 假设有另一个解$r'$满足条件,则有$r^2-r'^2=kn$ 因式分解,得$(r+r')(r-r')=kn$ 将$n$分解成$a*b$,则有$\left\{\begin{matrix}r+ ...
分类:
其他好文 时间:
2019-02-07 16:27:09
阅读次数:
195
Keras 文档http://keras.io 使用GPU加速模型训练: 训练深度神经网络的一些策略,用于提升模型精确度 1)选择合适的代价函数loss:MSE (Mean Squared Error)均方误差,Cross Entropy交叉熵。当输出层为softmax层时,选择交叉熵代价函数更为科 ...
分类:
其他好文 时间:
2019-02-03 18:24:02
阅读次数:
340
什么是 Retrofit ? Retrofit是Square开发的一个Android和Java的REST客户端库。这个库非常简单并且具有很多特性,相比其他的网络库,更容易让初学者快速掌握。它可以处理GET、POST、PUT、DELETE…等请求,还可以使用picasso加载图片。 常用注解 Retr ...
分类:
移动开发 时间:
2019-02-03 10:44:45
阅读次数:
170
题解: 操作挺多的一道题 网上证明挺多就不打了 $\sigma_0(n^2) = \sum_{d\mid n} 2^{\omega(d)} = \sum_{d\mid n} \sum_{e\mid d} \mu^2(e) = ((\mu^2 * 1) * 1) (n)$ $(\mu * 1) * 1 ...
分类:
其他好文 时间:
2019-02-03 00:57:26
阅读次数:
210
1.梯度下降法 先是将需要调整的参数以字典形式存储到param_grid列表中,梯度下降法可调整参数,可参考以下链接 https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.SGDClassifier.html#s ...
分类:
其他好文 时间:
2019-02-02 14:12:00
阅读次数:
286