One man's fault is another man's lesson. 前车之覆,后车之鉴。 We make mistakes every day, large or small, failures or faux pas. But failure and mistakes still d ...
分类:
其他好文 时间:
2018-03-20 10:36:55
阅读次数:
132
国外泛读!title(24):Weakly Supervised Learning with Deep Convolutional Neural Networks for Semantic Segmentation:Understanding semantic layout of images wi ...
分类:
其他好文 时间:
2018-03-19 17:37:10
阅读次数:
167
论文地址:《Rich feature hierarchies for accurate object detection and semantic segmentation》 论文包含两个关键:(1)使用CNN处理候选框,以便定位个分割目标。(2)当训练集较小时,有监督的预训练和特点区域的微调。 介 ...
分类:
其他好文 时间:
2018-03-16 20:22:13
阅读次数:
198
program 11.fault:没有判断i=0的情况2.不会执行fault的例子:x=null y=23.执行fault但是不会造成error的例子:x={1} y=24.造成error但没有造成failure的例子:x={1,2,3} y=2 program 21.fault:输出的是数组里第一 ...
分类:
其他好文 时间:
2018-03-16 00:18:16
阅读次数:
126
Fault: 可能导致程序失败的因素,可理解成具体的代码。 Error: 在程序运行过程中与设计时的预先设想不一致的情况,如变量值错误,错误的运行路径等。 Failure: 当一程序不能完成所要求的功能时,即失败。 函数findLast: 在边界判断时出错 在i=0 时退出循环,没有检验第一个int ...
分类:
其他好文 时间:
2018-03-16 00:13:15
阅读次数:
233
1.在第一个program中,循环语句的:i>0应该改正为i>=0 第二个program的循环条件有错,应该改为:for(int i=x.length-1;i>=0;i--) 2.第一个program中,x为空数组 同理,第二个program中,x也为空数组 3.第一个program中,x=[1,2 ...
分类:
其他好文 时间:
2018-03-15 01:43:55
阅读次数:
230
国外暂时泛读!title(6):Learning random-walk label propagation for weakly-supervised semantic segmentation(学习随机游走标签传播用于弱监督语义分割) 20180201 abstract:由于相对于其他视觉任务而 ...
分类:
其他好文 时间:
2018-03-13 18:03:56
阅读次数:
710
a)相关定义: Software Fault : A static defect in the software Software Failure : External, incorrect behavior with respect to the requirements or other des ...
分类:
其他好文 时间:
2018-03-12 18:42:22
阅读次数:
114
作业要求很简单,就是对这两个函数进行分析,考察对于fault、error、failure的理解,具体作答如下: Identify the fault 左侧findLast函数,在for循环中,i>0应改为i>=0,否则不会判断数组第一位; 右侧lastZero函数,若数组不为空且存在0,当前返回结果 ...
分类:
其他好文 时间:
2018-03-11 21:40:47
阅读次数:
183
定义: Software Fault : A static defect in the software 可能导致系统或功能失效的异常条件,可译为“故障”。 Software Error : An incorrect internal state that is the manifestation ...
分类:
其他好文 时间:
2018-03-11 19:23:01
阅读次数:
181