You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A small number (currently 93) of English MWE templates have the tag Df, which stands for default. The Df tags refers to the first token starting with a wildcard (*) single word's semantic tag from the single word semantic lexicon, and the Df tag is replaced in the tagger output. Note that, in the C version of the semantic tagger, only the first part of any slash tag is copied across, and any gender markers (lower case letters) on the single word semantic tag are also removed during the replacement step.
Example 1
In the MWE template below, the semantic tag Df would be replaced with the semantic tags of the adjective (JJ) token by looking up that token's semantic tags in the single word semantic lexicon:
mwe_template semantic_tags*_JJ style_NN1 Df
To make this more concrete, given the text:
The acting style.
And the following single word lexicon
lemma pos semantic_tagsacting JJ A1/Z3
As well as the above MWE template, then the tokens acting style will be tagged as an MWE with the A1 semantic tag.
Example 2
Some MWE templates can include membership to more than one semantic category using the slash (/) notation, here is an example of how the Df tag is processed in these cases. Given the MWE template:
mwe_template semantic_tags*_JJ style_NN1 C1/Df
given the text:
The acting style.
And the following single word lexicon
lemma pos semantic_tagsacting JJ A1/Z3
Then the tokens acting style will be tagged as an MWE with the C1/A1 semantic tags.
Problems with the definition
As stated in the definition that:
The `Df` tags refers to the first token starting with a wildcard (`*`)
This means that an MWE with a Df tag must contain a word token element starting with a wildcard. If no such token exists in the template, then a warning should be issued.
The text was updated successfully, but these errors were encountered:
To incorporate
Df
tags from MWE templates to enhance the USAS Rule Based Tagger.Definition of Df tags
A small number (currently 93) of English MWE templates have the tag
Df
, which stands for default. TheDf
tags refers to the first token starting with a wildcard (*
) single word's semantic tag from the single word semantic lexicon, and theDf
tag is replaced in the tagger output. Note that, in the C version of the semantic tagger, only the first part of any slash tag is copied across, and any gender markers (lower case letters) on the single word semantic tag are also removed during the replacement step.Example 1
In the MWE template below, the semantic tag
Df
would be replaced with the semantic tags of the adjective (JJ
) token by looking up that token's semantic tags in the single word semantic lexicon:To make this more concrete, given the text:
And the following single word lexicon
As well as the above MWE template, then the tokens
acting style
will be tagged as an MWE with theA1
semantic tag.Example 2
Some MWE templates can include membership to more than one semantic category using the slash (
/
) notation, here is an example of how theDf
tag is processed in these cases. Given the MWE template:given the text:
And the following single word lexicon
Then the tokens
acting style
will be tagged as an MWE with theC1/A1
semantic tags.Problems with the definition
As stated in the definition that:
The `Df` tags refers to the first token starting with a wildcard (`*`)
This means that an MWE with a
Df
tag must contain a word token element starting with a wildcard. If no such token exists in the template, then a warning should be issued.The text was updated successfully, but these errors were encountered: