今天在网上找了PRML——模式识别与机器学习,要么是没带目录的,要么是要积分来购买,真蛋疼。所以,闲来无事自己加了目录,分享给大家。 百度网盘:模式识别与机器学习https://pan.baidu.com/s/1SNBRopaAJFWG14CcI_Qluw提取码:zjen。 附加数据挖掘概念与技术第 ...
分类:
系统相关 时间:
2020-02-03 12:09:46
阅读次数:
99
data > knowledge Are all patterns interesting? No. only a small fraction of the patterns potentially generated would actually be of interest to a give ...
分类:
其他好文 时间:
2020-02-03 09:51:04
阅读次数:
83
html 提交 “你好”,后台显示 “ä½ å¥½” 。 经检验是将 URL编码为 UTF-8,而URL使用 ISO-8859-1。 解决办法: 一: 在 Controller 进行转码。 username=new String(username.getBytes("ISO-8859-1"), "U ...
分类:
其他好文 时间:
2020-02-02 18:00:12
阅读次数:
101
模式介绍 顾名思义,责任链模式(Chain of Responsibility Pattern)为请求创建了一个接收者对象的链。这种模式给予请求的类型,对请求的发送者和接收者进行解耦。这种类型的设计模式属于行为型模式。在这种模式中,通常每个接收者都包含对另一个接收者的引用。如果一个对象不能处理该请求 ...
分类:
其他好文 时间:
2020-02-01 16:48:05
阅读次数:
69
* [abc] a、b 或 c(简单类) [^abc] 任何字符,除了 a、b 或 c(否定) [a-zA-Z] a 到 z 或 A 到 Z,两头的字母包括在内(范围) [a-d[m-p]] a 到 d 或 m 到 p:[a-dm-p](并集) [a-z&&[def]] d、e 或 f(交集) [a ...
分类:
编程语言 时间:
2020-02-01 15:58:54
阅读次数:
77
Find the largest palindrome made from the product of two n-digit numbers. Since the result could be very large, you should return the largest palindro ...
分类:
编程语言 时间:
2020-02-01 10:47:36
阅读次数:
78
历经大约3个月时间,Apache Hudi 社区终于发布了0.5.1版本,这是Apache Hudi发布的第二个Apache版本,该版本中一些关键点如下 版本升级 将Spark版本从2.1.0升级到2.4.4 将Avro版本从1.7.7升级到1.8.2 将Parquet版本从1.8.1升级到1.10 ...
分类:
Web程序 时间:
2020-02-01 10:31:42
阅读次数:
386
1.简介 The command pattern is a behavioral design pattern in which an object is used to encapsulate all information needed to perform an action or trigg ...
分类:
其他好文 时间:
2020-01-31 15:59:15
阅读次数:
87
grep正则表达式因为文本查找的需要 grep egrep fgrep grep:根据模式,搜素文本,并将符合模式的文本行显示出来 pattern:文本字符和正则表达式元字符组合而成的模式 grep [OPTIONS] PATTERN [FILE...] 例 grep 'root' /etc/pas ...
分类:
其他好文 时间:
2020-01-31 15:54:21
阅读次数:
85
awk是一个强大的报告生成工具,用于格式化文本输出 语法: awk [options] -f 'program' filename program由{ pattern + action statements}组成,动作语句之间用分号“;”分隔 选项: -F:指定输入分隔符 -v VAR=value: ...
分类:
其他好文 时间:
2020-01-31 15:43:30
阅读次数:
68