TextRank
TextRank copied to clipboard
:wink: :cyclone: :strawberry: TextRank implementation in Golang with extendable features (summarization, phrase extraction) and multithreading (goroutine).
Hi, first of all thanks for this library, you are awesome 🚀 I'm having an issue ranking text that contains abbreviation such as `U.S.A` (short for United States of America)...
Thanks for this library,its very useful, Is it possible to have "phrase" with 3 or 4 words too?
I expect text.parsedSentences should contain all sentences. let me explain the problem with code :) place it in parse/tokenizer_test.go file ``` func TestTokenizeText(t *testing.T) { rule := NewRule() text :=...
If I want to use convert.TextToRank and I have a customized rule, it is not possible to use convert package because it accepts `parse.ParsedSentence` struct as the first argument. I...
Adding a tokenization library or making this an optional input could really help. For instance, what if I wanted to search only top sentences related to "food" for recipes or...