文件名称:text-summary:总结文字
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-29 00:55:30
Go
文字摘要 文本摘要会提取一些文本,并提取其关键点。 它几乎是直接港口 从PyTeaser 通过根据文章与全文之间的相关性来对新闻文章中的句子进行排名来创建摘要。 前5个句子用于形成“摘要”。 每个句子使用以下四个标准进行排名: 与标题的相关性 与文章中关键字的相关性 句子的位置 句子长度 用法 import "github.com/urandom/text-summary/summarize" ... s := summarize.New("Title for the text", someIOReader) // or // s := summarize.NewFromString("Title for the text", "Lengthy text ...") keyPoints := s.KeyPoints()
【文件预览】:
text-summary-master
----summarize()
--------stop_words_provider.go(2KB)
--------text_counter_test.go(1KB)
--------buffer_pool.go(291B)
--------summarize.go(4KB)
--------text_counter.go(1KB)
--------text_splitter.go(2KB)
--------stop_words_provider_test.go(179B)
--------summarize_test.go(3KB)
--------text_splitter_test.go(4KB)
----LICENSE(1KB)
----README.md(751B)