allenai / papermage

library supporting NLP and CV research on scientific papers
https://papermage.org
Apache License 2.0
692 stars 54 forks source link

`Layer` definition with `Slice` compatibility #24

Open kyleclo opened 1 year ago

kyleclo commented 1 year ago

define Layer explicitly and make it such that doc.sentences: Layer has reasonable slicing behavior, so like doc.sentences[3:10] produces a Slice with a reasonable repl and ability to perform Entity-level operations on it in distributed maner, such as doc.sentences[3:10].text instead of [s.text for s in doc.sentences[3:10]]