Posts
All the articles I've posted.
我的es之旅
Posted on:September 1, 2020 at 09:01 AM## 分词 什么是分词,分词是一个分类问题,一般是基于权重判断是否是需要切分.机器是识别不了文字的,所以只是一个权重的切分 分词会发生在两个步骤: `写入doc` , `查询query` 在l
最大熵
Posted on:August 11, 2020 at 01:55 PM## 相关链接 - https://blog.csdn.net/xiangyong58/article/details/51290393
sql join
Posted on:July 21, 2020 at 09:55 AM## 什么是语言 ? ## inductively defined sets `inductively defined sets` 是由三部分组成 - 1 一个初始集合 - 2 一个生成规则 -
group_concat看mysql函数
Posted on:July 10, 2020 at 10:24 AMbm25 and search
Posted on:July 7, 2020 at 01:25 PM## 背景 搜索往往需要排序,对不同文档做排序,有很多很多模型。其中一个模型叫`BM25`。 在lucene里面,实现类是 `lucene/core/src/java/org/apache/lu
c auto cast
Posted on:July 7, 2020 at 01:25 PMfst
Posted on:July 7, 2020 at 01:25 PM## 背景 FST 即`finite state machine`,lucene很多内容都是用这个格式压缩和存储的. ## fst 例子 介绍`FST`之前,先看看`Hashmap`. `H
java-wait-notify
Posted on:July 7, 2020 at 01:25 PM## 背景 java的线程间通信,偶尔会用到wait和notify ## 实现 注册: ``` // Register native methods of Object void java_
basic paxos
Posted on:June 29, 2020 at 04:25 PM## basic paxos 目的: `basic paxos` 目的是为了让多个副本最多只有一个值. ## paxos make simple 有一篇论文,描述了basic paxos 的证
双向绑定
Posted on:June 18, 2020 at 09:19 AM双向绑定是什么? 这个问题我一直很疑惑,直到我了解了同构和双射 所以双向绑定的本质就是视图和数据同构? 从某种角度上来说,这也是一个米田引理的应用?