Sometimes when writing a unit test, you know that the module you're testing imports a module that you would like to observe, or at the very least mock ...
分类:
其他好文 时间:
2019-01-03 19:33:53
阅读次数:
175
1、什么是p-value p值用于假设检验,以帮助您支持或拒绝零假设。p值是反对零假设的证据。p值越小,拒绝原假设的证据就越强p A p value is used in hypothesis testing to help you support or reject the null hypoth ...
分类:
其他好文 时间:
2018-12-31 15:47:13
阅读次数:
219
说明 本教程翻译自Java Code Geeks,原文网址:https://www.javacodegeeks.com/2014/11/junit-tutorial-unit-testing.html#suite_tests。翻译的过程中,有少部分内容是译者添加的解释说明和对原文章中错误地方的修正。 ...
分类:
编程语言 时间:
2018-12-29 23:36:16
阅读次数:
351
终于来到了卷积网络 首先完成最基本的前向传播: Testing conv_forward_naive difference: 2.2121476417505994e 08 一个有趣的测试,通过我们实现的卷积层处理图片,得到其边缘信息。 完成基本的后向传播: Testing conv_backward ...
分类:
Web程序 时间:
2018-12-28 23:37:36
阅读次数:
333
1、how to use dpkg cmmand first it can be used for list all software , dpkg -l (由于kali linux 没有启动所以先拿 Ubuntu说一下,基本上一样) 查看之前已经安装的软件 dpkg -l | grep [appl ...
分类:
Web程序 时间:
2018-12-27 03:26:12
阅读次数:
209
Ruby 文件的输入与输出 Ruby 提供了一整套 I/O 相关的方法,在内核(Kernel)模块中实现。所有的 I/O 方法派生自 IO 类。 类 IO 提供了所有基础的方法,比如 read、 write、 gets、 puts、 readline、 getc 和 printf。 本章节将讲解所有 ...
分类:
其他好文 时间:
2018-12-26 16:48:36
阅读次数:
137
1.验收性能测试 验收性能测试(Acceptance Performance Testing)方法通过模拟生产运行的业务压力量和使用场景组合,测试系统的性能是否满足生产性的要求。通俗的说:在特定的运行条件下验证系统的能力状况。 (1)主要目的就是验证系统是否具有系统宣称具有的能力。 (2)这种方法需 ...
分类:
其他好文 时间:
2018-12-25 20:04:33
阅读次数:
165
1、now we looke at this book . I decide to make a brief review the book covers as follows (I straight-forward copy here):Chapter 1, Building a Vulnerab ...
分类:
Web程序 时间:
2018-12-24 02:43:21
阅读次数:
183
一、机器学习基本概念 1.训练集和测试集 训练集(training set/data)/训练样例(training examples): 用来进行训练,也就是产生模型或者算法的数据集 测试集(testing set/data)/测试样例 (testing examples):用来专门进行测试已经学习 ...
分类:
其他好文 时间:
2018-12-20 11:45:57
阅读次数:
201
接口测试的目的 这个算是老生常谈了,但我觉得只要聊到接口这个还是绕不过的,没有目标就没有评判标准,所以测试的目的还是很重要的。 先搬运一下维基百科上的英文解释(中文没找到,百度的就算了。。。): API testing is a type of software testing that invol ...
分类:
其他好文 时间:
2018-12-19 15:46:46
阅读次数:
193