Web Content Accessibility Guidelines (WCAG) 2.0中文翻译 信息无障碍 - 可访问性测评标准 Functional Accessibility Evaluator 2.0网站使用起来不方便,推荐其Firefox插件AInspector WCAG ...
分类:
Web程序 时间:
2019-02-20 17:09:12
阅读次数:
213
快速压缩工具pigz 近期为了优化构建产物的压缩速率,从tar -zcvf替换到了pigz。 pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that ...
分类:
其他好文 时间:
2019-02-11 00:56:17
阅读次数:
198
译者: "hijkzzz" 卷积函数 conv1d 对由多个输入平面组成的输入信号进行一维卷积. 有关详细信息和输出形状, 请参见 " " . 注意 在某些情况下, 当使用CUDA后端与CuDNN时, 该操作符可能会选择不确定性算法来提高性能. 如果这不是您希望的, 您可以通过设置 来尝试使操作具有 ...
分类:
其他好文 时间:
2019-02-10 12:24:38
阅读次数:
311
When using ADTs in our code base, it can be difficult to use common debugging tools like watches and breakpoints. This is mainly due to the common pat ...
分类:
编程语言 时间:
2019-02-08 18:34:13
阅读次数:
176
Not only will we need to give our initial state to a Redux store, we will also need to be able to reset our state at any time by dispatching an action ...
分类:
移动开发 时间:
2019-02-08 18:26:13
阅读次数:
134
Redux provides a convenient helper for combining many reducers called combineReducer, but it focuses in on specific attributes on our state, making it ...
分类:
其他好文 时间:
2019-02-07 23:45:56
阅读次数:
157
""" 常用的网络优化器有四种:SGD, Momentum, RMSprop, Adam通过网络的运行结果可以知道SGD的收敛效果最差 """ import torch import torch.utils.data as Data import torch.nn.functional as F f ...
分类:
其他好文 时间:
2019-01-29 23:12:21
阅读次数:
242
""" 在pytorch中只有Variable可以参与网络的训练 """ import torch from torch.autograd import Variable import torch.nn.functional as F import matplotlib.pyplot as plt ... ...
分类:
其他好文 时间:
2019-01-29 13:57:10
阅读次数:
224
就总结下写法吧老是忘啊属实dd 1.队列及相关操作 2.简单优先队列:默认降序队列 3.自定义优先队列 先把原型摆上: priority_queue<Type, Container, Functional> ...
分类:
其他好文 时间:
2019-01-27 00:21:50
阅读次数:
291
在Golang中,我们经常碰到要设置一个函数的默认值,或者说我定义了参数值,但是又不想传递值,这个在python或php一类的语言中很好实现,但Golang中好像这种方法又不行。今天在看Grpc源码时,发现了一个方法可以很优雅的实现,叫做 Functional Options Patter.通过定义 ...
分类:
其他好文 时间:
2019-01-26 18:45:58
阅读次数:
985