-
Notifications
You must be signed in to change notification settings - Fork 261
Open
Description
So in English, there are a few ways of turning a verb into a noun:
# writer
1 This this DET DT Number=Sing|PronType=Dem 2 det 2:det _
2 writer writer NOUN NN Number=Sing 6 nsubj 6:nsubj _
3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux 6:aux _
4 for for ADP IN _ 5 case 5:case _
5 years year NOUN NNS Number=Plur 6 obl 6:obl:for _
...
# writing
# text = I sure like his style of writing.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj 3:nsubj _
2 sure sure ADV RB _ 3 advmod 3:advmod _
3 like like VERB VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 his his PRON PRP$ Case=Gen|Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 5 nmod:poss 5:nmod:poss _
5 style style NOUN NN Number=Sing 3 obj 3:obj _
6 of of ADP IN _ 7 case 7:case _
7 writing writing NOUN NN Number=Sing 5 nmod 5:nmod:of SpaceAfter=No
8 . . PUNCT . _ 3 punct 3:punct _
There's also other examples of nouns derived from verbs on Wikipedia:
https://en.wikipedia.org/wiki/Verbal_noun
such as discovery
:
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 discovery discovery NOUN NN Number=Sing 0 root 0:root _
3 of of ADP IN _ 5 case 5:case _
4 a a DET DT Definite=Ind|PronType=Art 5 det 5:det _
5 number number NOUN NN Number=Sing 2 nmod 2:nmod:of _
6 of of ADP IN _ 8 case 8:case _
7 ' ' PUNCT `` _ 8 punct 8:punct SpaceAfter=No
8 bugs bug NOUN NNS Number=Plur 5 nmod 5:nmod:of SpaceAfter=No
9 ' ' PUNCT '' _ 8 punct 8:punct _
None of these are treated as Vnoun in the annotations.
I'm wondering, at what point do we decide to start annotating Vnoun for a new annotation scheme? What would justify doing so, and in what situations would one prefer to use NOUN with some other featurization? (neither writer
nor writing
have any features indicating their derivation from write
in the above examples, nor does discovery
)