nummod
: numeric modifier
A numeric modifier of a noun is any number phrase that serves to modify the meaning of the noun with a quantity.
Jan snědl tři řízky . \n Jan ate three steaks .
nummod(řízky, tři)
nummod(steaks, three)
Agreement and government with Czech quantifiers
The morphological and syntactic behavior of Czech numerals is a complex matter. Small cardinal numerals jeden “one”, dva “two”, tři “three” and čtyři “four” agree with the counted noun in cs-feat/Case (jeden also agrees in cs-feat/Gender and cs-feat/Number; dva also agrees in cs-feat/Gender). They behave as if they modify the counted noun; they are similar to adjectives in this respect. Examples:
- Jeden muž spal, dva muži hráli karty. “One man slept, two men played cards.”
- Jedna žena spala, dvě ženy hrály karty. “One woman slept, two women played cards.”
- Jedno kotě spalo, dvě koťata si hrála. “One kitten slept, two kittens played.”
In PDT, these numerals are attached to their counted nouns as Atr
(attribute).
It is straightforward to convert such dependencies to nummod
:
Jedno kotě spalo . \n One kitten slept .
nummod(kotě, Jedno)
nsubj(spalo, kotě)
punct(spalo, .-4)
nummod(kitten, One)
nsubj(slept, kitten)
punct(slept, .-9)
Larger cardinals behave differently. They require that the counted noun be in the genitive case; this indicates that they actually govern the noun. Such constructions are parallel to nouns modified by other noun phrases in genitive. The whole phrase (numeral + counted noun) behaves as a noun phrase in neuter gender and singular number (which is important for subject-verb agreement).
- Pět mužů hrálo karty. “Five men played cards.”
- Skupina mužů hrála karty. “A group of men played cards.”
In PDT, these numerals are analyzed as heads of the counted nouns, which are attached to the numeral as Atr
:
# This is not UD, it is Prague Dependency Treebank, and we want to clearly distinguish it from the UD examples.
# visual-style nodes yellow
# visual-style arcs blue
1 Pět pět NUM _ Case=Nom 3 Sb _ Five
2 mužů muž NOUN _ Case=Gen|Gender=Masc|Number=Plur 1 Atr _ men
3 hrálo hrát VERB _ Gender=Neut|Number=Sing 0 Pred _ played
4 karty karta NOUN _ Case=Acc|Gender=Fem|Number=Plur 3 Obj _ cards
5 . . PUNCT _ _ 0 AuxK _ .
There are both advantages and drawbacks to this solution. On the one hand, it reflects well the agreement in case, gender and number. On the other hand, it is confusing that there are two different analyses of counted noun constructions, depending on the numeric value.
Moreover, the numeral does not govern the noun in all morphological cases. The following table shows the case of the whole phrase (numeral + noun; first column) and the consequences for the case of the parts (note that these numerals have only two distinct morphological forms, resulting in homonymy).
Phrase Case | Example | Numeral Case | Noun Case |
---|---|---|---|
Nom | pět mužů | Nom | Gen |
Gen | pěti mužů | Gen | Gen |
Dat | pěti mužům | Dat | Dat |
Acc | pět mužů | Acc | Gen |
Voc | pět mužů | Voc | Gen |
Loc | pěti mužích | Loc | Loc |
Ins | pěti muži | Ins | Ins |
We can say that the noun has the case of the whole phrase if it is dative, locative or instrumental. The numeral then agrees with the noun in case. The numeral forces the noun to the genitive case if the whole phrase is nominative, accusative or vocative (but the vocative usage is rather hypothetical). In genitive, the noun and the numeral agree with each other; but note that the numeral uses its inflected form, as in the other cases where it agrees with the noun.
In PDT, the genitive, dative, locative and instrumental cases are analyzed in parallel to the low-value numerals, i.e. the noun governs the numeral:
# This is not UD, it is Prague Dependency Treebank, and we want to clearly distinguish it from the UD examples.
# visual-style nodes yellow
# visual-style arcs blue
1 Hrál hrát VERB _ Gender=Masc|Number=Sing 0 Pred _ He-played
2 karty karta NOUN _ Case=Acc|Gender=Fem|Number=Plur 1 Obj _ cards
3 s s ADP _ _ 1 AuxP _ with
4 pěti pět NUM _ Case=Ins 6 Atr _ five
5 dalšími další ADJ _ Case=Ins|Gender=Masc|Number=Plur 6 Atr _ other
6 muži muž NOUN _ Case=Ins|Gender=Masc|Number=Plur 3 Obj _ men
7 . . PUNCT _ _ 0 AuxK _ .
High-value numerals where the lowest-order digit is more than zero and less than five (e.g. 21, 22, 23, 24) may behave both ways:
- dvacet dva muži (noun governs numeral)
- dvacet dva mužů (numeral governs noun)
- dvaadvacet mužů (alternative form; it does not end with dva, thus the numeral governs the noun)
- 22 muži (assuming the reader will pronounce 22 as dvacet dva, not dvaadvacet)
- 22 mužů (pronounced either way)
Pronominal quantifiers behave as high-value numerals and govern the quantifed nouns:
- Kolik mužů hrálo karty? “How many men played cards?”
- Několik (mnoho, málo) mužů hrálo karty. “Several (many, few) men played cards.”
- Tolik mužů hrát karty jsem ještě neviděl. “I have never seen so many men playing cards.”
# This is not UD, it is Prague Dependency Treebank, and we want to clearly distinguish it from the UD examples.
# visual-style nodes yellow
# visual-style arcs blue
1 Kolik kolik NUM _ Case=Nom 3 Sb _ How-many
2 mužů muž NOUN _ Case=Gen|Gender=Masc|Number=Plur 1 Atr _ men
3 hrálo hrát VERB _ Gender=Neut|Number=Sing 0 Pred _ played
4 karty karta NOUN _ Case=Acc|Gender=Fem|Number=Plur 3 Obj _ cards
5 ? ? PUNCT _ _ 0 AuxK _ ?
The UD conversion of the PDT data unifies analyses of counted noun phrases and uses a structure that is parallel among all the above cases, and also with universal dependencies in other languages. The counted noun is always the head and the numeral is always attached as its modifier. Nevertheless, we use different relation labels to mark situations where the numeral (or quantifier) actually governs the morphological case of the noun. There are four labels used:
Numeric | Pronominal | |
Noun governs | nummod | det:nummod |
Numeral governs | nummod:gov | det:numgov |
Tři muži hráli karty . \n Three men played cards .
nummod(muži, Tři)
nsubj(hráli, muži)
dobj(hráli, karty)
punct(hráli, .-5)
nummod(men, Three)
nsubj(played, men)
dobj(played, cards)
punct(played, .-11)
Pět mužů hrálo karty . \n Five men played cards .
nummod:gov(mužů, Pět)
nsubj(hrálo, mužů)
dobj(hrálo, karty)
punct(hrálo, .-5)
nummod:gov(men, Five)
nsubj(played, men)
dobj(played, cards)
punct(played, .-11)
Kolik mužů hrálo karty ? \n How-many men played cards ?
det:numgov(mužů, Kolik)
nsubj(hrálo, mužů)
dobj(hrálo, karty)
punct(hrálo, ?-5)
det:numgov(men, How-many)
nsubj(played, men)
dobj(played, cards)
punct(played, ?-11)
Hrál jsem karty s pěti muži . \n Played I-have cards with five men .
aux(Hrál, jsem)
dobj(Hrál, karty)
iobj(Hrál, muži)
case(muži, s)
nummod(muži, pěti)
punct(Hrál, .-7)
aux(Played, I-have)
dobj(Played, cards)
iobj(Played, men)
case(men, with)
nummod(men, five)
punct(Played, .-15)
Nepamatuji si , s kolika muži jsem hrál karty . \n I-do-not-remember myself , with how-many men I-have played cards .
ccomp(Nepamatuji, hrál)
compound:reflex(Nepamatuji, si)
punct(hrál, ,-3)
aux(hrál, jsem)
dobj(hrál, karty)
iobj(hrál, muži)
case(muži, s)
det:nummod(muži, kolika)
punct(Nepamatuji, .-10)
ccomp(I-do-not-remember, played)
compound:reflex(I-do-not-remember, myself)
punct(played, ,-14)
aux(played, I-have)
dobj(played, cards)
iobj(played, men)
case(men, with)
det:nummod(men, how-many)
punct(I-do-not-remember, .-21)
Additional remarks
In PDT the words milión “million”, miliarda “billion” and higher are usually tagged as nouns, not as numerals. In the typical case, the million is in genitive, it is preceded by a smaller number, and it is not followed by smaller numerals (as it is in million five hundred thousand). It is followed by the counted noun. Thus the following examples receive parallel analyses:
50 miliónů korun \n 50 millions of-crowns
nummod:gov(miliónů, 50-1)
nummod:gov(millions, 50-5)
nmod(miliónů, korun)
nmod(millions, of-crowns)
50 pytlů bankovek \n 50 sacks of-bills
nummod:gov(pytlů, 50-1)
nummod:gov(sacks, 50-5)
nmod(pytlů, bankovek)
nmod(sacks, of-bills)
On the other hand the word tisíc “thousand” may be a noun (na náměstí byly tisíce lidí “there were thousands of people in the square”) or a numeral:
nanejvýš 50 tisíc korun \n at-most 50 thousand crowns
advmod:emph(korun, nanejvýš)
nummod:gov(korun, tisíc)
compound(tisíc, 50-2)
advmod:emph(crowns, at-most)
nummod:gov(crowns, thousand)
compound(thousand, 50-7)
Note that the two numeral words in the above example are joined using the compound relation. Also note that the intensifier nanejvýš is attached to the head of the phrase (korun) and not to the number. This is in accord both with the UD guidelines and with the original PDT annotation of agreeing numerals (e.g. jen čtyři firmy, jen několik procent).
Similarly there may be other nodes (such as punctuation) that are attached to the head of the phrase and they are related to the whole phrase rather than directly to the head noun:
( 9 dní ) \n ( 9 days )
punct(dní, (-1)
nummod:gov(dní, 9-2)
punct(dní, )-4)
punct(days, (-6)
nummod:gov(days, 9-7)
punct(days, )-9)
5 minut včetně seřízení \n 5 minutes including adjustment
nummod:gov(minut, 5-1)
nmod(minut, seřízení)
case(seřízení, včetně)
nummod:gov(minutes, 5-6)
nmod(minutes, adjustment)
case(adjustment, including)
Dates
# This is not UD, it is Prague Dependency Treebank, and we want to clearly distinguish it from the UD examples.
# visual-style nodes yellow
# visual-style arcs blue
1 Ředitel ředitel NOUN _ _ 2 Sb _ The-director
2 navrhl navrhnout VERB _ _ 0 Pred _ proposed
3 zrušit zrušit VERB _ _ 2 Obj _ to-disband
4 profesionální profesionální ADJ _ _ 5 Atr _ the-professional
5 scénu scéna NOUN _ _ 3 Obj _ scene
6 k k ADP _ _ 3 AuxP _ towards
7 31 31 NUM _ _ 9 Atr _ the-31
8 . . PUNCT _ _ 7 AuxG _ th
9 12 12 NUM _ _ 6 Adv _ December
10 . . PUNCT _ _ 9 AuxG _ .
Ředitel navrhl zrušit profesionální scénu k 31 . 12 . \n Director proposed to-disband professional scene towards 31 st December .
advmod(zrušit, 12)
case(12, k)
punct(12, .-10)
nummod(12, 31-7)
punct(31-7, .-8)
advmod(to-disband, December)
case(December, towards)
punct(December, .-21)
nummod(December, 31-18)
punct(31-18, st)
Numerals expressed using digits are labeled nummod
even if they represent ordinal numerals,
which would be labeled amod
:
# This is not UD, it is Prague Dependency Treebank, and we want to clearly distinguish it from the UD examples.
# visual-style nodes yellow
# visual-style arcs blue
1 Letošní letošní ADJ _ _ 2 Atr _ This-year's
2 veletrh veletrh NOUN _ _ 4 Sb _ fair
3 se se PRON _ _ 4 AuxR _ itself
4 uskuteční uskutečnit VERB _ _ 0 Pred _ will-take-place
5 od od ADP _ _ 4 AuxP _ from
6 9 9 NUM _ _ 5 ExD _ 9
7 . . PUNCT _ _ 6 AuxG _ th
8 do do ADP _ _ 4 AuxP _ to
9 12 12 NUM _ _ 11 Atr _ 12
10 . . PUNCT _ _ 9 AuxG _ th
11 března březen NOUN _ _ 8 Adv _ March
12 . . PUNCT _ _ 0 AuxK _ .
Letošní veletrh se uskuteční od 9 . do 12 . března . \n This-year's fair itself will-take-place from 9 th to 12 th March .
advmod(uskuteční, března)
case(března, do)
nummod(března, 12-9)
remnant(12-9, 9-6)
remnant(do, od)
advmod(will-take-place, March)
case(March, to)
nummod(March, 12-22)
remnant(12-22, 9-19)
remnant(to, from)
Numbered objects
House number in address is attached as nummod
to the name of the street:
v budově Na poříčí 12 \n in the-building Na poříčí 12
nmod(budově, poříčí-4)
case(poříčí-4, Na-3)
nummod(poříčí-4, 12-5)
nmod(the-building, poříčí-10)
case(poříčí-10, Na-9)
nummod(poříčí-10, 12-11)
Treebank Statistics (UD_Czech)
This relation is universal.
There are 1 language-specific subtypes of nummod
: nummod:gov.
19664 nodes (1%) are attached to their parents as nummod
.
11408 instances of nummod
(58%) are right-to-left (child precedes parent).
Average distance between parent and child is 1.58314686737185.
The following 11 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (17443; 89% instances), cs-pos/PROPN-cs-pos/NUM (1629; 8% instances), cs-pos/ADJ-cs-pos/NUM (261; 1% instances), cs-pos/SYM-cs-pos/NUM (152; 1% instances), cs-pos/NUM-cs-pos/NUM (99; 1% instances), cs-pos/PRON-cs-pos/NUM (29; 0% instances), cs-pos/CONJ-cs-pos/NUM (28; 0% instances), cs-pos/VERB-cs-pos/NUM (10; 0% instances), cs-pos/PUNCT-cs-pos/NUM (7; 0% instances), cs-pos/ADV-cs-pos/NUM (5; 0% instances), cs-pos/INTJ-cs-pos/NUM (1; 0% instances).
# visual-style 3 bgColor:blue
# visual-style 3 fgColor:white
# visual-style 1 bgColor:blue
# visual-style 1 fgColor:white
# visual-style 1 3 nummod color:blue
1 Obrázek obrázek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No
2 : : PUNCT Z:------------- _ 3 punct _ _
3 3 3 NUM C=------------- NumForm=Digit|NumType=Card 1 nummod _ _
# visual-style 9 bgColor:blue
# visual-style 9 fgColor:white
# visual-style 7 bgColor:blue
# visual-style 7 fgColor:white
# visual-style 7 9 nummod color:blue
1 Výrobce výrobce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _
2 - - PUNCT Z:------------- _ 1 punct _ _
3 typ typ NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 1 conj _ SpaceAfter=No
4 : : PUNCT Z:------------- _ 5 punct _ _
5 PANASONIC Panasonic PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com,Pro|Negative=Pos|Number=Sing 3 nmod _ _
6 PANAFAX Panafax PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 5 nmod _ _
7 UF UF PROPN NNXXX-----A---8 Abbr=Yes|NameType=Pro|Negative=Pos 6 nmod _ SpaceAfter=No|LId=UF-98
8 - - PUNCT Z:------------- _ 9 punct _ SpaceAfter=No
9 311 311 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ _
# visual-style 8 bgColor:blue
# visual-style 8 fgColor:white
# visual-style 9 bgColor:blue
# visual-style 9 fgColor:white
# visual-style 9 8 nummod color:blue
1 The the ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|Negative=Pos 11 foreign _ LId=the-1|LGloss=(obv._souč._anglických_názvů,_urč._člen)
2 Black Black ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Com,Oth|Negative=Pos 11 foreign _ _
3 Box Box ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Com,Oth|Negative=Pos 11 foreign _ _
4 Summer Summer ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Oth|Negative=Pos 11 foreign _ _
5 Festival Festival PROPN NNIXX-----A---- Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Oth|Negative=Pos 11 foreign _ _
6 of of ADP RR--X---------- AdpType=Prep|Foreign=Foreign 11 foreign _ LId=of-1|LGloss=(obv._souč._anglických_názvů,_předl._2._p.)
7 Czech Czech ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|Negative=Pos 11 foreign _ LId=Czech-2
8 20 20 NUM C=------------- NumForm=Digit|NumType=Card 9 nummod _ SpaceAfter=No
9 th th ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|Negative=Pos 11 foreign _ LId=th-2
10 Century Century ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Oth|Negative=Pos 11 foreign _ _
11 Plays Plays PROPN NNFPX-----A---- Foreign=Foreign|Gender=Fem|NameType=Oth|Negative=Pos|Number=Plur 0 root _ SpaceAfter=No
12 - - PUNCT Z:------------- _ 11 punct _ _
Treebank Statistics (UD_Czech-CAC)
This relation is universal.
There are 1 language-specific subtypes of nummod
: nummod:gov.
4440 nodes (1%) are attached to their parents as nummod
.
2802 instances of nummod
(63%) are right-to-left (child precedes parent).
Average distance between parent and child is 1.32094594594595.
The following 10 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (4127; 93% instances), cs-pos/SYM-cs-pos/NUM (211; 5% instances), cs-pos/PROPN-cs-pos/NUM (34; 1% instances), cs-pos/NUM-cs-pos/NUM (27; 1% instances), cs-pos/ADJ-cs-pos/NUM (23; 1% instances), cs-pos/PRON-cs-pos/NUM (7; 0% instances), cs-pos/VERB-cs-pos/NUM (6; 0% instances), cs-pos/ADV-cs-pos/NUM (2; 0% instances), cs-pos/PART-cs-pos/NUM (2; 0% instances), cs-pos/DET-cs-pos/NUM (1; 0% instances).
# visual-style 7 bgColor:blue
# visual-style 7 fgColor:white
# visual-style 8 bgColor:blue
# visual-style 8 fgColor:white
# visual-style 8 7 nummod color:blue
1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ LId=v-1
2 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No
3 , , PUNCT Z:------------- _ 4 punct _ _
4 Zbraslavi Zbraslav PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 2 nmod _ SpaceAfter=No
5 , , PUNCT Z:------------- _ 6 punct _ _
6 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 dep _ LGloss=(jednotka_času)
7 # &cdate; NUM C=------------- NumForm=Digit|NumType=Card 8 nummod _ _
8 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _
9 # &cyear; NUM C=------------- NumForm=Digit|NumType=Card 8 nummod _ _
10 . . PUNCT Z:------------- _ 2 punct _ _
# visual-style 4 bgColor:blue
# visual-style 4 fgColor:white
# visual-style 5 bgColor:blue
# visual-style 5 fgColor:white
# visual-style 5 4 nummod color:blue
1 Mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ LGloss=(mít_možnost_[něco_dělat])
2 asi asi PART TT------------- _ 4 advmod:emph _ _
3 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 5 case _ LId=v-1
4 # &camount; NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ _
5 * * SYM Xx------------- Abbr=Yes 7 advmod _ _
6 případů případ NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ _
7 přejít přejít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 1 xcomp _ _
8 v v ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ LId=v-1
9 nádorové nádorový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 10 amod _ _
10 bujení bujení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ SpaceAfter=No|LDeriv=bujet
11 . . PUNCT Z:------------- _ 1 punct _ _
# visual-style 2 bgColor:blue
# visual-style 2 fgColor:white
# visual-style 1 bgColor:blue
# visual-style 1 fgColor:white
# visual-style 1 2 nummod color:blue
1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _
2 # &clabel; NUM C=------------- NumForm=Digit|NumType=Card 1 nummod _ _
3 . . PUNCT Z:------------- _ 1 punct _ _
Treebank Statistics (UD_Czech-CLTT)
This relation is universal.
There are 1 language-specific subtypes of nummod
: nummod:gov.
286 nodes (1%) are attached to their parents as nummod
.
196 instances of nummod
(69%) are left-to-right (parent precedes child).
Average distance between parent and child is 1.20629370629371.
The following 3 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (284; 99% instances), cs-pos/SYM-cs-pos/NUM (1; 0% instances), cs-pos/X-cs-pos/NUM (1; 0% instances).
# visual-style 7 bgColor:blue
# visual-style 7 fgColor:white
# visual-style 6 bgColor:blue
# visual-style 6 fgColor:white
# visual-style 6 7 nummod color:blue
1 (5) (5) PUNCT Z:------------- _ 8 punct _ _
2 Při při ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ LId=při-1
3 průběžné průběžný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _
4 inventarizaci inventarizace NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ _
5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 auxpass:reflex _ _
6 odstavec odstavec NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 8 nsubjpass _ _
7 4 4 NUM C}------------- NumForm=Roman|NumType=Card 6 nummod _ _
8 použije použít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _
9 obdobně obdobně ADV Dg-------1A---- Degree=Pos|Negative=Pos 8 advmod _ SpaceAfter=No
10 . . PUNCT Z:------------- _ 8 punct _ _
# visual-style 10 bgColor:blue
# visual-style 10 fgColor:white
# visual-style 9 bgColor:blue
# visual-style 9 fgColor:white
# visual-style 9 10 nummod color:blue
1 2 2 NUM C}------------- NumForm=Roman|NumType=Card 37 nmod _ SpaceAfter=No
2 . . PUNCT Z:------------- _ 1 punct _ _
3 V v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ LId=v-1
4 prvním první ADJ CrIS6---------- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|NumType=Ord 5 amod _ _
5 dni den NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 37 nmod _ _
6 účetního účetní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ LId=účetní-1
7 období období NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ _
8 započatého započatý ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _
9 1.ledna 1.ledna X X@------------- _ 8 advmod _ _
10 2004 2004 NUM C}------------- NumForm=Roman|NumType=Card 9 nummod _ _
11 a a CONJ J^------------- _ 9 cc _ LId=a-1
12 později pozdě ADV Dg-------2A---- Degree=Cmp|Negative=Pos 9 conj _ _
13 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 37 auxpass:reflex _ _
14 opravné opravný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _
15 položky položka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 37 nsubjpass _ _
16 u u ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ LId=u-1
17 pohledávek pohledávka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 15 nmod _ SpaceAfter=No
18 , , PUNCT Z:------------- _ 22 punct _ _
19 které který PRON P4FP4---------- Case=Acc|Gender=Fem|Number=Plur|PronType=Int,Rel 22 dobj _ _
20 účetní účetní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ LId=účetní-1
21 jednotka jednotka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 22 nsubj _ _
22 nabyla nabýt VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 17 acl _ _
23 v v ADP RR--6---------- AdpType=Prep|Case=Loc 25 case _ LId=v-1
24 účetních účetní ADJ AANP6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 25 amod _ LId=účetní-1
25 obdobích období NOUN NNNP6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Plur 22 nmod _ _
26 započatých započatý ADJ AANP6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 25 amod _ _
27 před před ADP RR--7---------- AdpType=Prep|Case=Ins 30 case _ LId=před-1
28 1 1 NUM C}------------- NumForm=Roman|NumType=Card 30 nummod _ SpaceAfter=No
29 . . PUNCT Z:------------- _ 28 punct _ _
30 lednem leden NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _
31 2004 2004 NUM C}------------- NumForm=Roman|NumType=Card 30 nummod _ _
32 a a CONJ J^------------- _ 22 cc _ LId=a-1
33 určila určit VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 22 conj _ _
34 k k ADP RR--3---------- AdpType=Prep|Case=Dat 35 case _ LId=k-1
35 obchodování obchodování NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 33 nmod _ SpaceAfter=No
36 , , PUNCT Z:------------- _ 22 punct _ _
37 zruší zrušit VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _
38 ve v ADP RV--4---------- AdpType=Voc|Case=Acc 40 case _ LId=v-1
39 prospěch prospěch NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 38 mwe _ _
40 nákladů náklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 37 nmod _ SpaceAfter=No
41 ; ; PUNCT Z:------------- _ 37 punct _ _
42 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 44 case _ LId=k-1
43 stejnému stejný ADJ AAIS3----1A---- Animacy=Inan|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 44 amod _ _
44 okamžiku okamžik NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 46 nmod _ _
45 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 46 auxpass:reflex _ _
46 zaúčtuje zaúčtovat VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 37 conj _ _
47 snížení snížení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 46 nsubjpass _ _
48 hodnoty hodnota NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 47 nmod _ _
49 pohledávek pohledávka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 48 nmod _ _
50 prostřednictvím prostřednictvím ADP RR--2---------- AdpType=Prep|Case=Gen 51 case _ _
51 účtu účet NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 47 nmod _ _
52 v v ADP RR--6---------- AdpType=Prep|Case=Loc 54 case _ LId=v-1
53 účtové účtový ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 54 amod _ _
54 skupině skupina NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 51 nmod _ _
55 58 58 NUM C}------------- NumForm=Roman|NumType=Card 54 nummod _ SpaceAfter=No
56 . . PUNCT Z:------------- _ 37 punct _ _
# visual-style 37 bgColor:blue
# visual-style 37 fgColor:white
# visual-style 38 bgColor:blue
# visual-style 38 fgColor:white
# visual-style 38 37 nummod color:blue
1 (5) (5) PUNCT Z:------------- _ 5 punct _ _
2 Podstatným podstatný ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _
3 vlivem vliv NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ _
4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 auxpass:reflex _ _
5 rozumí rozumět VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _
6 takový takový DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 8 det _ _
7 významný významný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _
8 vliv vliv NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 5 nsubjpass _ _
9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ LId=na-1
10 řízení řízení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 8 nmod _ _
11 nebo nebo CONJ J^------------- _ 10 cc _ _
12 provozování provozování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 10 conj _ _
13 podniku podnik NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _
14 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ LId=podle-2
15 zvláštního zvláštní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 17 amod _ _
16 právního právní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 17 amod _ _
17 předpisu předpis NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ SpaceAfter=No
18 , , PUNCT Z:------------- _ 21 punct _ _
19 jenž jenž PRON PJYS1---------- Case=Nom|Gender=Masc|Number=Sing|PrepCase=Npr|PronType=Rel 21 nsubj _ _
20 není být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 21 cop _ _
21 rozhodující rozhodující ADJ AGMS1-----A---- Animacy=Anim|Aspect=Imp|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 8 acl _ _
22 ani ani CONJ J^------------- _ 21 cc _ _
23 společný společný ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 21 conj _ SpaceAfter=No
24 ; ; PUNCT Z:------------- _ 26 punct _ _
25 není-li není-li X X@------------- _ 26 cop _ _
26 prokázán prokázat VERB VsYS---XX-AP--- Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 29 advmod _ _
27 opak opak NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 26 nsubj _ SpaceAfter=No
28 , , PUNCT Z:------------- _ 26 punct _ _
29 považuje považovat VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 parataxis _ _
30 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 29 auxpass:reflex _ _
31 za za ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ LId=za-1
32 podstatný podstatný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 33 amod _ _
33 vliv vliv NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 29 dobj _ _
34 dispozice dispozice NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 29 nsubjpass _ _
35 nejméně málo ADV Dg-------2A---- Degree=Cmp|Negative=Pos 38 advmod:emph _ LId=málo-3
36 s s ADP RR--7---------- AdpType=Prep|Case=Ins 38 case _ LId=s-1
37 20 20 NUM C}------------- NumForm=Roman|NumType=Card 38 nummod _ _
38 % % SYM Z:------------- _ 34 nmod _ _
39 hlasovacích hlasovací ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 40 amod _ _
40 práv právo NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 38 nmod _ SpaceAfter=No
41 . . PUNCT Z:------------- _ 5 punct _ _
nummod in other languages: [bg] [cs] [de] [el] [en] [es] [eu] [fa] [fi] [fr] [ga] [he] [hu] [it] [ja] [ko] [sv] [u]