prose icon indicating copy to clipboard operation
prose copied to clipboard

:book: A Golang library for text processing, including tokenization, part-of-speech tagging, and named-entity extraction.

Results 21 prose issues
Sort by recently updated
recently updated
newest added

I'm a bit surprised to see this: ``` type Document struct { Model *Model Text string // TODO: Store offsets (begin, end) instead of `text` field. entities []Entity sentences []Sentence...

Congrats on writing this great library! I'm thinking about integrating this into our (soon to be released) own open-source toolkit for privacy & security engineering, where we have a component...

Type: Question

I am seeing a ~100ms overhead to process any document (text), which seems like it can't be correct given the performance data listed for large corpuses. I've been porting a...

This update is to keep track of original locations in the provided text, however I couldn't figure out how better to deal with sanitized (clean) text step inside `Tokenize` without...

Status: Revision Needed
Type: Enhancement

I'd recommend updating the dependency `neurosnap/sentences` to use its new location (github.com/neurosnap/sentences) and the latest version (v1.0.9). This version fixes a very minor security problem where the readme linked to...

Installed prose with `go get github.com/jdkato/prose/v2` and copied the code from the tokenization example in the readme. The output I get is ``` @jdkato NN , , go VB to...

Hi i have a function that utilizes prose/v2. it works fine as it passes my tests (just the logic though). When i deploy it on AWS lambda, it doesn't run....

Expect: Quotes to be tagged as quotes Given ```go package main import ( "fmt" "log" "github.com/jdkato/prose/v2" ) func main() { doc, err := prose.NewDocument("Bob said \"Alice, could you send me...

I am new to `golang`, so I may have done a very simple mistake, but after surfing the internet a bit I think it is some error on the package...