Use bigger datasets for CNN in hope of better
performance. A new data set for sports video classification: sports-1M.CNN in
one frame is about the sam...
分类:
Web程序 时间:
2014-05-26 19:10:33
阅读次数:
597
该文章发表在CVPR2013上,主要讲述了如何利用深度卷积网实现人脸特征点的位置预测,个人认为本文最大的亮点在于巧妙地将神经元的输出和坐标值联系起来,实现了多点位置预测。从作者的结果来看,似乎该方法可以秒杀其他任何面部特征点检测算法,具体是不是这样,还需要广大童鞋去验证。...
分类:
其他好文 时间:
2014-05-25 04:26:42
阅读次数:
369
ExpeditionTime Limit: 1000MSMemory Limit: 65536KDescriptionA group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being rather poor drivers, the cows unfortunately manag...
分类:
其他好文 时间:
2014-05-22 06:16:01
阅读次数:
423
浅复制:浅复制(浅拷贝,指针拷贝,shallow copy),源对象和副本对象是同一个对象,
源对象(副本对象)引用计数器 + 1, 相当于做一次retain操作。本质是:没有产生新的对象深复制:(深拷贝,内容拷贝,deep
copy),源对象和副本对象是不同的两个对象,源对象引用计数器不变...
分类:
其他好文 时间:
2014-05-21 05:09:36
阅读次数:
301
A linked list is given such that each node
contains an additional random pointer which could point to any node in the list
or null.Return a deep copy ...
分类:
其他好文 时间:
2014-05-19 15:50:28
阅读次数:
447
本文结合Deep learning的一个应用,Convolution Neural Network 进行一些基本应用,参考Lecun的Document 0.1进行部分拓展,与结果展示(in python)。
分为以下几部分:
1. Convolution(卷积)
2. Pooling(降采样过程)
3. CNN结构
4. 跑实验
下面分别介绍...
分类:
Web程序 时间:
2014-05-15 23:21:13
阅读次数:
746
A linked list is given such that each node
contains an additional random pointer which could point to any node in the list
or null.Return a deep copy ...
分类:
其他好文 时间:
2014-05-15 21:00:06
阅读次数:
325
广度优先搜索(Breadth-First-Search)和深度优先搜索(Deep-First-Search)是搜索策略中最经常用到的两种方法,特别常用于图的搜索.其中有很多的算法都用到了这两种思想,比如:Dijkstra单源最短路径算法和Prim最小生成树算法都采用了和宽度优先搜索类似的思想。BFS...
分类:
其他好文 时间:
2014-05-14 12:29:53
阅读次数:
544
几例在ASP存储过程的使用方法
一、使用Command对象和Parameter对象传递参数
本讲将主要使用Microsoft SQL Server7.0数据库,先建立一个连接文件AdoSQL7.asp备用,以后用到时不再特别说明。
Option Explicit
Response.Expires = 0
'第一部分: 建立连接
Dim Cnn, StrCnn
Set Cnn ...
分类:
Web程序 时间:
2014-05-12 22:59:55
阅读次数:
446
#include
#include
int main()
{
int n,m,left,right;
int count;
int deep_n,deep_m,deep_diff;
int i, j;
for( scanf("%d%d",&m,&n); n!=0 && m!=0; scanf("%d%d",...
分类:
其他好文 时间:
2014-05-11 06:38:40
阅读次数:
395