一般deep learning需要两步, unsupervised pre-train 和 superviesed NN training. Pre-training 用unsupervised方法train神经网络,得到word representation. 在第二步 supervised NN...
分类:
其他好文 时间:
2014-07-02 20:20:34
阅读次数:
307
题目
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 of the list.
方法
publi...
分类:
其他好文 时间:
2014-07-01 07:49:33
阅读次数:
186
题目
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 of the list.
方法
publi...
分类:
其他好文 时间:
2014-06-30 19:36:33
阅读次数:
163
浅谈深度学习(Deep Learning)的基本思想和方法
分类:
其他好文 时间:
2014-06-30 15:08:43
阅读次数:
159
【题目】
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 of the list.
【题意】
给定一个链表,每个节点除了next指针外,还有一个random指针,指向任意的节点。
要求,复制这样的一个链表
【思路】
思路...
分类:
其他好文 时间:
2014-06-29 20:41:21
阅读次数:
232
群号335862447,欢迎广大喜欢dota的程序员加入,哈哈,当然,非程序员也欢迎啊。...
分类:
其他好文 时间:
2014-06-26 14:29:06
阅读次数:
125
1.DFS预处理出所有节点的深度和父节点inline void dfs(int u){ int i; for(i=head[u];i!=-1;i=next[i]) { if (!deep[to[i]]) { ...
分类:
其他好文 时间:
2014-06-24 20:23:57
阅读次数:
251
// Copyright 2013 Yangqing Jia
//
#include
#include
#include "caffe/layer.hpp"
#include "caffe/vision_layers.hpp"
#include "caffe/util/math_functions.hpp"
using std::max;
namespace caffe {
/**...
分类:
其他好文 时间:
2014-06-24 19:34:27
阅读次数:
347
deep learning实践经验总结
最近拿caffe来做图片分类,遇到不少问题,同时也吸取不少教训和获得不少经验。...
分类:
其他好文 时间:
2014-06-22 20:16:47
阅读次数:
212
安全性要求高的应用程序必须避免使用不安全的或者强度弱的加密算法,现代计算机的计算能力使得攻击者通过暴力破解可以攻破强度弱的算法。例如,数据加密标准算法DES是极度不安全的,使用类似EFF(Electronic Frontier Foundaton) Deep Crack的计算机在一天内可以暴力破解由DES加密的消息。
[不符合安全要求的代码示例]
下面的代码使用强度弱的DES...
分类:
编程语言 时间:
2014-06-22 07:08:44
阅读次数:
239