vggNet是从AlexNet而来,主要探索卷积神经网络的深度与性能之间的关系,通过反复堆叠3x3的卷积核(c中有1x1的卷积核,也只有c中有,c是16层)和2x2的最大池化层,vggNet构筑了16-19层深的卷积神经网络。 3x3卷积核:the smallest size to capture ...
分类:
Web程序 时间:
2017-04-12 13:12:30
阅读次数:
290
1、题目 Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Try to solve it in linear time/space. Re ...
分类:
编程语言 时间:
2017-04-12 09:27:28
阅读次数:
245
这个知识点。。。 https://blog.keifergu.me/2017/03/23/difference-between-javascript-macrotask-and-microtask/?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=t ...
分类:
编程语言 时间:
2017-04-11 12:05:28
阅读次数:
176
转自:https://foofish.net/what-is-difference-between-is-and-euqals.html 在 Python 中,比较两个对象(变量)是否相等,可以用 “is” 和 “==” 操作,但它俩有什么区别?什么时候用 “is”,什么时候用 “==” ?在面试时... ...
分类:
编程语言 时间:
2017-04-11 09:28:20
阅读次数:
289
Concept: Node - a smallest unit within a cluster to provide compute capablity Nodetype - a logical naming of the tier / layer in the architecture so i ...
分类:
其他好文 时间:
2017-04-10 09:50:44
阅读次数:
311
Given a positive 32-bit integer n, you need to find the smallest 32-bit integer which has exactly the same digits existing inthe integer n and is grea ...
分类:
其他好文 时间:
2017-04-09 14:28:01
阅读次数:
118
原题链接在这里:https://leetcode.com/problems/minimum-absolute-difference-in-bst/#/description 题目: Given a binary search tree with non-negative values, find t ...
分类:
其他好文 时间:
2017-04-07 09:43:26
阅读次数:
181
Four rectangles are given. Find the smallest enclosing (new) rectangle into which these four may be fitted without overlapping. By smallest rectangle, ...
分类:
其他好文 时间:
2017-04-03 19:34:41
阅读次数:
158
转自:What is the difference between “text” and new String(“text”)? new String("text"); explicitly creates a new and referentially distinct instance of a ...
分类:
其他好文 时间:
2017-04-03 01:06:09
阅读次数:
171
Sayyouhaveanarrayforwhichtheithelementisthepriceofagivenstockondayi.
Ifyouwereonlypermittedtocompleteatmostonetransaction(ie,buyoneandselloneshareofthestock),designanalgorithmtofindthemaximumprofit.Example1:Input:[7,1,5,3,6,4]
Output:5
max.difference=6-1=5..
分类:
编程语言 时间:
2017-03-27 20:26:40
阅读次数:
172