What is a constituency parsing?
Dividing a sentence into smaller grammatical structures ("constituents").
constituency parsing explained in plain English
Dividing a sentence into smaller grammatical structures ("constituents"). A later part of the ML system, such as a natural language understanding model, can parse the constituents more easily than the original sentence. For example, consider the following sentence: My friend adopted two cats. A constituency parser can divide this sentence into the following two constituents: - My friend is a noun phrase. - adopted two cats is a verb phrase. These constituents can be further subdivided into smaller constituents. For example, the verb phrase adopted two cats could be further subdivided into: - adopted is a verb. - two cats is another noun phrase.
Example
Practitioners refer to constituency parsing when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.
People also read
- automatic evaluation
Using software to judge the quality of a model's output.
- bag of words
A representation of the words in a phrase or passage, irrespective of order.
- BERT
A model architecture for text representation.
- bigram
An N-gram in which N=2.
- BLEU
A metric between 0.
- BLEURT
A metric for evaluating machine translations from one language to another, particularly to and from English.
- Character N-gram F-score
A metric to evaluate machine translation models.
- crash blossom
A sentence or phrase with an ambiguous meaning.
- decoder
In general, any ML system that converts from a processed, dense, or internal representation to a more raw, sparse, or external representation.
- Embedding
A numerical representation of text, images, or other data that captures semantic meaning.