spaCy 101
EDS-NLP is a spaCy library. To use it, you will need to familiarise yourself with some key spaCy concepts.
Skip if you're familiar with spaCy
This page is intended as a crash course for the very basic spaCy concepts that are needed to use EDS-NLP. If you've already used spaCy, you should probably skip to the next page.
In a nutshell, spaCy offers three things:
- a convenient abstraction with a language-dependent, rule-based, deterministic and non-destructive tokenizer
- a rich set of rule-based and trainable components
- a configuration and training system
We will focus on the first item.
Be sure to check out spaCy's crash course page for more information on the possibilities offered by the library.
Resources
The spaCy documentation is one of the great strengths of the library. In particular, you should check out the "Advanced NLP with spaCy" course, which provides a more in-depth presentation.
spaCy in action
Consider the following minimal example:
import spacy # (1)
# Initialise a spaCy pipeline
nlp = spacy.blank("fr") # (2)
text = "Michel est un penseur latéral." # (3)
# Apply the pipeline
doc = nlp(text) # (4)
doc.text
# Out: 'Michel est un penseur latéral.'
- Import spaCy...
- Load a pipeline. In spaCy, the
nlp
object handles the entire processing. - Define a text you want to process.
- Apply the pipeline and get a spaCy
Doc
object.
We just created a spaCy pipeline and applied it to a sample text. It's that simple.
Note that we use spaCy's "blank" NLP pipeline here. It actually carries a lot of information, and defines spaCy's language-dependent, rule-based tokenizer.
Non-destructive processing
In EDS-NLP, just like spaCy, non-destructiveness is a core principle. Your detected entities will always be linked to the original text.
In other words, nlp(text).text == text
is always true.
The Doc
abstraction
The doc
object carries the result of the entire processing.
It's the most important abstraction in spaCy,
and holds a token-based representation of the text along with the results of every pipeline components.
It also keeps track of the input text in a non-destructive manner, meaning that
doc.text == text
is always true.
# ↑ Omitted code above ↑
# Text processing in spaCy is non-destructive
doc.text == text # (1)
# You can access a specific token
token = doc[2] # (2)
# And create a Span using slices
span = doc[:3] # (3)
# Entities are tracked in the ents attribute
doc.ents # (4)
# Out: (,)
- This feature is a core principle in spaCy. It will always be true in EDS-NLP.
token
is aToken
object referencing the third tokenspan
is aSpan
object referencing the first three tokens.- We have not declared any entity recognizer in our pipeline, hence this attribute is empty.
Adding pipeline components
You can add pipeline components with the nlp.add_pipe
method. Let's add two simple components to our pipeline.
import spacy
nlp = spacy.blank("fr")
nlp.add_pipe("eds.sentences") # (1)
nlp.add_pipe("eds.dates") # (2)
text = "Le 5 mai 2005, Jimothé a été invité à une fête organisée par Michel."
doc = nlp(text)
- Like the name suggests, this pipeline is declared by EDS-NLP.
eds.sentences
is a rule-based sentence boundary prediction. See its documentation for detail. - Like the name suggests, this pipeline is declared by EDS-NLP.
eds.dates
is a date extraction and normalisation component. See its documentation for detail.
The doc
object just became more interesting!
# ↑ Omitted code above ↑
# We can split the document into sentences
doc.sents # (1)
# Out: [Le 5 mai 2005, Jimothé a été invité à une fête organisée par Michel.]
# And look for dates
doc.spans["dates"] # (2)
# Out: [5 mai 2005]
span = doc.spans["dates"][0] # (3)
span._.date # (4)
# Out: "2005-05-05"
- In this example, there is only one sentence...
- The
eds.dates
adds a key to thedoc.spans
attribute span
is a spaCySpan
object.- In spaCy, you can declare custom extensions that live in the
_
attribute. Here, theeds.dates
pipeline uses aSpan._.date
extension to persist the normalised date.
Conclusion
This page is just a glimpse of a few possibilities offered by spaCy. To get a sense of what spaCy can help you achieve, we strongly recommend you visit their documentation and take the time to follow the spaCy course.
Moreover, be sure to check out spaCy's own crash course, which is an excellent read. It goes into more detail on what's possible with the library.