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)
obj(hráli, karty)
punct(hráli, .-5)
nummod(men, Three)
nsubj(played, men)
obj(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žů)
obj(hrálo, karty)
punct(hrálo, .-5)
nummod:gov(men, Five)
nsubj(played, men)
obj(played, cards)
punct(played, .-11)
Kolik mužů hrálo karty ? \n How-many men played cards ?
det:numgov(mužů, Kolik)
nsubj(hrálo, mužů)
obj(hrálo, karty)
punct(hrálo, ?-5)
det:numgov(men, How-many)
nsubj(played, men)
obj(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)
obj(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)
obj(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)
expl:pv(Nepamatuji, si)
punct(hrál, ,-3)
aux(hrál, jsem)
obj(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)
expl:pv(I-do-not-remember, myself)
punct(played, ,-14)
aux(played, I-have)
obj(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.
17496 nodes (1%) are attached to their parents as nummod
.
10168 instances of nummod
(58%) are right-to-left (child precedes parent).
Average distance between parent and child is 1.59104938271605.
The following 12 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (15461; 88% instances), cs-pos/PROPN-cs-pos/NUM (1492; 9% instances), cs-pos/ADJ-cs-pos/NUM (245; 1% instances), cs-pos/SYM-cs-pos/NUM (138; 1% instances), cs-pos/NUM-cs-pos/NUM (88; 1% instances), cs-pos/CCONJ-cs-pos/NUM (26; 0% instances), cs-pos/DET-cs-pos/NUM (15; 0% instances), cs-pos/PRON-cs-pos/NUM (11; 0% instances), cs-pos/VERB-cs-pos/NUM (8; 0% instances), cs-pos/PUNCT-cs-pos/NUM (6; 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|Number=Sing|Polarity=Pos 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|Number=Sing|Polarity=Pos 0 root _ _
2 - - PUNCT Z:------------- _ 3 punct _ _
3 typ typ NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 1 conj _ SpaceAfter=No
4 : : PUNCT Z:------------- _ 5 punct _ _
5 PANASONIC Panasonic PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com,Pro|Number=Sing|Polarity=Pos 3 nmod _ _
6 PANAFAX Panafax PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Number=Sing|Polarity=Pos 5 nmod _ _
7 UF UF PROPN NNXXX-----A---8 Abbr=Yes|NameType=Pro|Polarity=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=Yes|Polarity=Pos 11 flat:foreign _ LId=the-1|LGloss=(obv._souč._anglických_názvů,_urč._člen)
2 Black Black ADJ AAXXX----1A---- Degree=Pos|Foreign=Yes|NameType=Com,Oth|Polarity=Pos 11 flat:foreign _ _
3 Box Box ADJ AAXXX----1A---- Degree=Pos|Foreign=Yes|NameType=Com,Oth|Polarity=Pos 11 flat:foreign _ _
4 Summer Summer ADJ AAXXX----1A---- Degree=Pos|Foreign=Yes|NameType=Oth|Polarity=Pos 11 flat:foreign _ _
5 Festival Festival PROPN NNIXX-----A---- Animacy=Inan|Foreign=Yes|Gender=Masc|NameType=Oth|Polarity=Pos 11 flat:foreign _ _
6 of of ADP RR--X---------- AdpType=Prep|Foreign=Yes 11 flat:foreign _ LId=of-1|LGloss=(obv._souč._anglických_názvů,_předl._2._p.)
7 Czech Czech ADJ AAXXX----1A---- Degree=Pos|Foreign=Yes|Polarity=Pos 11 flat: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=Yes|Polarity=Pos 11 flat:foreign _ LId=th-2
10 Century Century ADJ AAXXX----1A---- Degree=Pos|Foreign=Yes|NameType=Oth|Polarity=Pos 11 flat:foreign _ _
11 Plays Plays PROPN NNFPX-----A---- Foreign=Yes|Gender=Fem|NameType=Oth|Number=Plur|Polarity=Pos 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.
4388 nodes (1%) are attached to their parents as nummod
.
2766 instances of nummod
(63%) are right-to-left (child precedes parent).
Average distance between parent and child is 1.32133090246126.
The following 10 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (4080; 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 (23; 1% instances), cs-pos/ADJ-cs-pos/NUM (22; 1% instances), cs-pos/DET-cs-pos/NUM (6; 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/PRON-cs-pos/NUM (2; 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|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No
3 , , PUNCT Z:------------- _ 4 punct _ _
4 Zbraslavi Zbraslav PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 2 nmod _ SpaceAfter=No
5 , , PUNCT Z:------------- _ 6 punct _ _
6 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 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|Number=Sing|Polarity=Pos 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|Number=Plur|Person=3|Polarity=Pos|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|Number=Plur|Polarity=Pos 5 nmod _ _
7 přejít přejít VERB Vf--------A---- Polarity=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|Number=Sing|Polarity=Pos 10 amod _ _
10 bujení bujení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 7 obj _ 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|Number=Sing|Polarity=Pos 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.
195 nodes (1%) are attached to their parents as nummod
.
127 instances of nummod
(65%) are left-to-right (parent precedes child).
Average distance between parent and child is 1.22051282051282.
The following 2 pairs of parts of speech are connected with nummod
: cs-pos/NOUN-cs-pos/NUM (194; 99% instances), cs-pos/X-cs-pos/NUM (1; 1% instances).
# 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 HLAVA hlava NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _
2 II II NUM C}------------- NumForm=Roman|NumType=Card 1 nummod _ LId=II-3
# 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 obl _ 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|Number=Sing|Polarity=Pos 37 obl _ _
6 účetního účetní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 7 amod _ LId=účetní-1
7 období období NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 5 nmod _ _
8 započatého započatý ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 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 CCONJ J^------------- _ 12 cc _ LId=a-1
12 později pozdě ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 9 conj _ _
13 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 37 expl:pass _ _
14 opravné opravný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _
15 položky položka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 37 nsubj:pass _ _
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|Number=Plur|Polarity=Pos 15 nmod _ SpaceAfter=No
18 , , PUNCT Z:------------- _ 22 punct _ _
19 které který PRON P4FP4---------- Case=Acc|Gender=Fem|Number=Plur|PronType=Int,Rel 22 obj _ _
20 účetní účetní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ LId=účetní-1
21 jednotka jednotka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 22 nsubj _ _
22 nabyla nabýt VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|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|Number=Plur|Polarity=Pos 25 amod _ LId=účetní-1
25 obdobích období NOUN NNNP6-----A---- Case=Loc|Gender=Neut|Number=Plur|Polarity=Pos 22 obl _ _
26 započatých započatý ADJ AANP6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Number=Plur|Polarity=Pos 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|Number=Sing|Polarity=Pos 26 obl _ _
31 2004 2004 NUM C}------------- NumForm=Roman|NumType=Card 30 nummod _ _
32 a a CCONJ J^------------- _ 33 cc _ LId=a-1
33 určila určit VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|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|Number=Sing|Polarity=Pos 33 obl _ SpaceAfter=No
36 , , PUNCT Z:------------- _ 22 punct _ _
37 zruší zrušit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|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|Number=Sing|Polarity=Pos 38 fixed _ _
40 nákladů náklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 37 obl _ SpaceAfter=No
41 ; ; PUNCT Z:------------- _ 46 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|Number=Sing|Polarity=Pos 44 amod _ _
44 okamžiku okamžik NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 46 obl _ _
45 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 46 expl:pass _ _
46 zaúčtuje zaúčtovat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 37 conj _ _
47 snížení snížení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 46 nsubj:pass _ _
48 hodnoty hodnota NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 47 nmod _ _
49 pohledávek pohledávka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 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|Number=Sing|Polarity=Pos 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|Number=Sing|Polarity=Pos 54 amod _ _
54 skupině skupina NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 51 nmod _ _
55 58 58 NUM C}------------- NumForm=Roman|NumType=Card 54 nummod _ SpaceAfter=No
56 . . PUNCT Z:------------- _ 37 punct _ _
nummod in other languages: [am] [ar] [bg] [bxr] [ca] [ckb] [cop] [cs] [cu] [da] [de] [el] [en] [es] [et] [eu] [fa] [fi] [fo] [fr] [ga] [gl] [got] [grc] [he] [hi] [hr] [hu] [id] [it] [ja] [kk] [kmr] [ko] [la] [lv] [mr] [nl] [no] [pl] [pt] [ro] [ru] [sa] [sk] [sla] [sl] [so] [sr] [sv] [swl] [ta] [tr] [u] [ug] [uk] [ur] [urj] [vi] [yue] [zh]