Skip to content

Commit 19ebf82

Browse files
增加一些索引和标注工具的信息
1 parent 70bbe8c commit 19ebf82

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -804,5 +804,36 @@ mail1
804804

805805
**185\. 东南大学《知识图谱》研究生课程(资料)** [github](https://github.com/npubird/KnowledgeGraphCourse)
806806

807+
**186\. 英文拼写检查库** [github](https://github.com/barrust/pyspellchecker)
808+
809+
```
810+
from spellchecker import SpellChecker
811+
812+
spell = SpellChecker()
813+
814+
# find those words that may be misspelled
815+
misspelled = spell.unknown(['something', 'is', 'hapenning', 'here'])
816+
817+
for word in misspelled:
818+
# Get the one `most likely` answer
819+
print(spell.correction(word))
820+
821+
# Get a list of `likely` options
822+
print(spell.candidates(word))
823+
```
824+
**187\. wwsearch是企业微信后台自研的全文检索引擎** [github](https://github.com/Tencent/wwsearch)
825+
826+
**188\. CHAMELEON:深度学习新闻推荐系统元架构** [github](https://github.com/gabrielspmoreira/chameleon_recsys)
827+
828+
**189\. 8篇论文梳理BERT相关模型进展与反思** [github](https://www.msra.cn/zh-cn/news/features/bert)
829+
830+
**190\. DocSearch:免费文档搜索引擎** [github](https://github.com/algolia/docsearch)
831+
832+
**191\. LIDA:轻量交互式对话标注工具** [github](https://github.com/Wluper/lida)
833+
834+
**192\. aili - the fastest in-memory index in the East 东半球最快并发索引** [github](https://github.com/UncP/aili)
835+
836+
837+
807838

808839

0 commit comments

Comments
 (0)