Skip to content

Commit

Permalink
fix some doc
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhishan committed Nov 24, 2024
1 parent 4749e6c commit 71c9c07
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@

为了解决以上这些问题,我们需要对整个特征链路进行彻底的改造。从业界的经验来看,迁移 `kv` 特征是一个比较好的思路,
即将数据迁移成 `kv` 格式,使用 `flatbuffers` 等读取性能更好的存储格式,并进行特征抽取。由于中间涉及环节非常多,
为了保证线上效果,我们需要实现特征处理逻辑的平迁, 即两种数据格式对应的数据与特征处理逻辑要完全保持一致, 这是整
个特征迁移项目的基础。但由于历史上已经积累了大量的 `c++` 特征抽取类,如果手动改写,工作量非常大,且排查逻辑一致
也会耗费大量精力。
为了保证线上效果,我们需要实现特征处理逻辑的平迁, 这是整个特征迁移项目的基础。但由于历史上已经积累了大量的 `c++`
特征抽取类,如果手动改写,工作量非常大,且排查逻辑一致也会耗费大量精力。

因此,我基于 `llvm` 实现了自动改写 `c++` 特征抽取类的工具,自动将抽取类转换为 `kv` 特征抽取类,且保证
逻辑完全一致。
Expand Down

0 comments on commit 71c9c07

Please sign in to comment.