摘要: Deep Learning 介绍Deep Learning is a new area of Machine Learning research, which has been introduced with the objective of moving Machine Learning closer to one of its original goals: Artificial Intelligence.Deep Learning 动机Deep Learning --主要用于NLP(自然语言处理),可用于情感分析 --算法库(Python) --Deep Belief Networ... 阅读全文
posted @ 2012-11-24 16:41 junfeng_feng 阅读(251) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cstdio>#include<cstdlib>using namespace std;class Node {public: Node* next; Node* rand; int value;};Node* copy_list_with_rand_ptr(Node* list) { if(list == NULL) { return NULL; } /* * 参考:http://hi.baidu.com/gkqofoydngbjqtq/item/6345d6104b7a8d06e... 阅读全文
posted @ 2012-11-24 16:23 junfeng_feng 阅读(325) 评论(0) 推荐(0) 编辑