1.层归一化 //原来是2016年就已经提出来的啊! https://www.zhihu.com/question/48820040 https://zhuanlan.zhihu.com/p/54530247 2.Transformer中为什么使用层归一化?而不是其他 https://www.zhi ...
分类:
其他好文 时间:
2020-06-06 16:56:43
阅读次数:
61
这样写代码时,遇到了上面的异常 for(Question q:questionList) { if(!qIds.contains(q.getQuestionId())){ questionList.remove(q); } } 换成下面这种写法就正常了 for(int k=0;k<questionL ...
分类:
编程语言 时间:
2020-06-06 12:38:25
阅读次数:
55
http://www.neea.edu.cn/html1/folder/1607/298-1.htm https://www.zhihu.com/question/50459774 ...
分类:
其他好文 时间:
2020-06-05 10:25:30
阅读次数:
72
题目描述 输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。 题目链接: https://www.nowcoder.com/practice/8ee967e43c2c4ec193b040ea7fbb10b8?tpId=13&tqId=11164&rp=1&ru=/activity/oj ...
分类:
其他好文 时间:
2020-06-05 00:48:34
阅读次数:
66
前言:朋友在做授权项目的时候,遇到一个sql server数据库的注入点,没办法解决,让我帮忙看看,因为是授权项目,所以就可以帮助测试下。 内容如下: 单引号,很明显的错误,因为是时间格式:2020-6-2,所以这里肯定是字符型的。 接着测试:'-- 还是语法错误,那么可能因为有括号的原因,接着测试 ...
分类:
数据库 时间:
2020-06-03 14:03:43
阅读次数:
85
What is :: (double colon) in Python when subscripting sequences? 15 Extended Slices https://docs.python.org/release/2.3.5/whatsnew/section-slices.html ...
分类:
编程语言 时间:
2020-06-03 13:25:17
阅读次数:
71
浏览器计算样式 》构建渲染树(render tree) >Layout – 定位坐标和大小,是否换行,各种position, overflow, z-index属性 > 正式开画 https://www.zhihu.com/question/20117417 ...
分类:
其他好文 时间:
2020-06-02 20:32:22
阅读次数:
79
面试题64. 求1+2+…+n 求 1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 1.解题思路 正整数累加,常规方法很简单。但是这里要求了不能使用乘除法、for,while(迭代)、if,else,swit ...
分类:
其他好文 时间:
2020-06-02 13:17:42
阅读次数:
80
场景 用HTML和CSS和JS构建跨平台桌面应用程序的开源库Electron的介绍以及搭建HelloWorld: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/106413828 Electron怎样进行渲染进程调试和使用浏览器和 ...
分类:
其他好文 时间:
2020-06-01 23:42:14
阅读次数:
168
参考:https://www.zhihu.com/question/23765351 ...
分类:
其他好文 时间:
2020-05-31 11:05:15
阅读次数:
78