RAKE is short for Rapid Automatic Keyword Extraction. The original research paper "Automatic keyword extraction from individual documents by Stuart Rose, Dave Engel, Nick Cramer and Wendy Cowley" can be found here
- Install by executing
go get github.com/arpitgogia/rake
- Use as shown below:
package main
import (
"fmt"
"github.com/arpitgogia/rake"
)
func main() {
rake.WithText("Avengers: Infinity War")
rake.WithFile("~/test.txt")
}
Make a GET request on https://frozen-lowlands-96920.herokuapp.com/rake?text=<text>
- Basic implementation
- Clean up and organize code
- Implement package-like abstraction
- Convert to a REST API