Lesk算法 lesk算法是一个基于词典的词义消歧方法,算法认为:一个词在词典中的词义解释与该词所在句子具有相似性 1. original lesk 通过比较词在词典中解释,得到交集,那么相似度即为交集单词的个数 eg: pine 和cone分别在字典中的解释如下 Pine : 1. kind of ...
分类:
其他好文 时间:
2018-11-21 21:15:15
阅读次数:
277
"2975:Caesar Cryptogram" 描述 Julius Caesar inventes a cryptogram that converts a string to another string. The rule is that every letter in an original ...
分类:
其他好文 时间:
2018-11-20 01:15:04
阅读次数:
161
1. 如何抓取HTTPS包 1.1首先在charles的 Proxy选项选择SSL Proxy Settings Proxy -> SSL Proxying Settings... 勾选Enable SSL Proxying,点击Add Proxy -> SSL Proxying Settings. ...
分类:
其他好文 时间:
2018-11-15 01:30:27
阅读次数:
339
1.Java基础知识 2.面向对象 3.常用API 4.集合IO 5.多线程、网络编程、反射、设计模式 ...
分类:
编程语言 时间:
2018-11-12 11:35:45
阅读次数:
244
Flume 作为 cloudera 开发的实时日志收集系统,受到了业界的认可与广泛应用。Flume 初始的发行版本目前被统称为 Flume OG(original generation),属于 cloudera。但随着 FLume 功能的扩展,Flume OG 代码工程臃肿、核心组件设计不合理、核心配置不标准等缺点暴露出来,尤其是在 Flume OG 的最后一个发行版本 0.9.4。 中,日志传输不稳定的现象尤为严重,为了解决这些问题,2011 年 10 月 22 号,cloudera 完成了 Flume-728,对 Flume 进行了里程碑式的改动:重构核心组件、核心配置以及代码架构,重构后的版本统称为 Flume NG(next generation);改动的另一原因是将 Flume 纳入 apache 旗下,cloudera Flume 改名为 Apache Flume。
分类:
Web程序 时间:
2018-11-11 17:58:27
阅读次数:
283
跟着网易云课堂上面的免费公开课深度学习应用开发Tensorflow实践学习,学到线性回归这里感觉有很多需要总结,梳理记录下阶段性学习内容。 题目:通过生成人工数据集合,基于TensorFlow实现y=2*x+1线性回归 使用Tensorflow进行算法设计与训练的核心步骤 (1)准备数据 (2)构建 ...
分类:
其他好文 时间:
2018-11-08 23:16:33
阅读次数:
287
matlab中处理图像像素点数据: img1=double(imread('lenna.bmp')); matlab中imshow图片,要先转换成uint8: subplot(1,2,1),imshow(uint8(img1)),title('original');subplot(1,2,2),im ...
分类:
其他好文 时间:
2018-11-08 22:01:20
阅读次数:
1410
Given the root node of a binary search tree (BST) and a value to be inserted into the tree, insert the value into the BST. Return the root node of the ...
分类:
其他好文 时间:
2018-11-06 13:31:55
阅读次数:
130
Check whether the original sequence org can be uniquely reconstructed from the sequences in seqs. The org sequence is a permutation of the integers fr... ...
分类:
其他好文 时间:
2018-11-06 11:11:32
阅读次数:
186