第一周:学习PageRank,知识点:每个节点的权值由其他节点的投票决定,所有节点的权值和为1当节点很多时候必须转换成矩阵运算来计算节点的最终值,由马尔可夫链可以证明,这个值可以迭代得到问题:可能出现无出度节点,导致总体失衡解决办法:每个节点的入读权值矩阵M' = 0.8*M + 0.2*1/n,以...
分类:
其他好文 时间:
2015-02-07 21:39:49
阅读次数:
220
一:例子
{CSDN:CODE:599957}
二:总结
组件映射的用法:
Wife组件作为Husband的一部分。
在Husband中嵌入wife
@Embedded
private Wife wife;
组件映射的优点:
实现了对象细粒度的划分,层次更加分明,复用率高。
分离出来的组件,也可以作为其他对象的组件,
这样就为复用提供了方便...
分类:
Web程序 时间:
2015-02-07 18:58:03
阅读次数:
164
Martian Mining
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 2459
Accepted: 1517
Description
The NASA Space Center, Houston, is less than 200 miles from Sa...
分类:
其他好文 时间:
2015-02-06 20:31:49
阅读次数:
157
两个对象i和j之间的相异性可以根据不匹配率来计算:d(i,j)=(p-m)/p;其中,m是匹配的数目(即i和j取值相同状态的属性数),而p是刻画对象的属性总数。相似性d(i,j)=1-d(i,j);对于对称的二元属性,每个状态都同样重要。基于对称二元属性的相异性称做对称的二元相异性。d(i,j)=(r+s)..
分类:
其他好文 时间:
2015-02-05 18:38:12
阅读次数:
165
PageRank算法原理介绍 PageRank算法是google的网页排序算法,在《The Top Ten Algorithms in Data Mining》一书中第6章有介绍。大致原理是用户搜索出的多个网页需要按照一定的重要程度(即后面讲的权重)排序,每个网页的权重由所有链接到它的其他网页的权....
分类:
编程语言 时间:
2015-02-04 00:19:35
阅读次数:
352
import re re_digits = re.compile(r'(\d+)') def embedded_numbers(s): pieces = re_digits.split(s) # 切成数字与非数字 pieces[1::2] = map(int, pieces[1::2]) # 将.....
分类:
编程语言 时间:
2015-02-03 10:49:28
阅读次数:
376
Starting a New ProjectIn most cases, your embedded processor system is part of a larger design being implemented in a FPGA, and you use both the PlanA...
分类:
其他好文 时间:
2015-01-31 17:44:12
阅读次数:
218
Xilinx Platform Studio (XPS)XPS provides an integrated environment for creating software and hardware specification flows for embedded processor syste...
分类:
其他好文 时间:
2015-01-31 16:04:42
阅读次数:
198
机器学习的来源和用例:
Machine Learning
- Grew out of work in AI
- New capability for computers
Examples:
- Database mining
Large datasets from growth of automation/web.
E.g., Web click data, medical re...
分类:
系统相关 时间:
2015-01-24 21:27:36
阅读次数:
331
CGIC函数说明参考cgic函数说明_Embedded Resources Library Online (C)郝博士cgiFormResultType cgiFormString( char *name, char *result, int max)用于从输入域中copy字符串。他将域名max-1...
分类:
其他好文 时间:
2015-01-23 14:39:35
阅读次数:
95