File size: 125,056 Bytes
22e4ecd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 |
#! /usr/bin/env python3
# Original code (2015) by Filip Ginter and Sampo Pyysalo.
# DZ 2018-11-04: Porting the validator to Python 3.
import fileinput
import sys
import io
import os.path
import argparse
import logging
import traceback
# According to https://stackoverflow.com/questions/1832893/python-regex-matching-unicode-properties,
# the regex module has the same API as re but it can check Unicode character properties using \p{}
# as in Perl.
#import re
import regex as re
import unicodedata
THISDIR=os.path.dirname(os.path.realpath(os.path.abspath(__file__))) # The folder where this script resides.
# Constants for the column indices
COLCOUNT=10
ID,FORM,LEMMA,UPOS,XPOS,FEATS,HEAD,DEPREL,DEPS,MISC=range(COLCOUNT)
COLNAMES='ID,FORM,LEMMA,UPOS,XPOS,FEATS,HEAD,DEPREL,DEPS,MISC'.split(',')
TOKENSWSPACE=MISC+1 #one extra constant
# Global variables:
curr_line=0 # Current line in the input file
sentence_line=0 # The line in the input file on which the current sentence starts
sentence_id=None # The most recently read sentence id
line_of_first_empty_node=None
line_of_first_enhanced_orphan=None
error_counter={} # key: error type value: error count
warn_on_missing_files=set() # langspec files which you should warn about in case they are missing (can be deprel, edeprel, feat_val, tokens_w_space)
def warn(msg, error_type, testlevel=0, testid='some-test', lineno=True, nodelineno=0, nodeid=0):
"""
Print the warning.
If lineno is True, print the number of the line last read from input. Note
that once we have read a sentence, this is the number of the empty line
after the sentence, hence we probably do not want to print it.
If we still have an error that pertains to an individual node, and we know
the number of the line where the node appears, we can supply it via
nodelineno. Nonzero nodelineno means that lineno value is ignored.
If lineno is False, print the number and starting line of the current tree.
"""
global curr_fname, curr_line, sentence_line, sentence_id, error_counter, tree_counter, args
error_counter[error_type] = error_counter.get(error_type, 0)+1
if not args.quiet:
if args.max_err>0 and error_counter[error_type]==args.max_err:
print(('...suppressing further errors regarding ' + error_type), file=sys.stderr)
elif args.max_err>0 and error_counter[error_type]>args.max_err:
pass #suppressed
else:
if len(args.input)>1: #several files, should report which one
if curr_fname=="-":
fn="(in STDIN) "
else:
fn="(in "+os.path.basename(curr_fname)+") "
else:
fn=""
sent = ''
node = ''
# Global variable (last read sentence id): sentence_id
# Originally we used a parameter sid but we probably do not need to override the global value.
if sentence_id:
sent = ' Sent ' + sentence_id
if nodeid:
node = ' Node ' + str(nodeid)
if nodelineno:
print("[%sLine %d%s%s]: [L%d %s %s] %s" % (fn, nodelineno, sent, node, testlevel, error_type, testid, msg), file=sys.stderr)
elif lineno:
print("[%sLine %d%s%s]: [L%d %s %s] %s" % (fn, curr_line, sent, node, testlevel, error_type, testid, msg), file=sys.stderr)
else:
print("[%sTree number %d on line %d%s%s]: [L%d %s %s] %s" % (fn, tree_counter, sentence_line, sent, node, testlevel, error_type, testid, msg), file=sys.stderr)
###### Support functions
def is_whitespace(line):
return re.match(r"^\s+$", line)
def is_word(cols):
return re.match(r"^[1-9][0-9]*$", cols[ID])
def is_multiword_token(cols):
return re.match(r"^[1-9][0-9]*-[1-9][0-9]*$", cols[ID])
def is_empty_node(cols):
return re.match(r"^[0-9]+\.[1-9][0-9]*$", cols[ID])
def parse_empty_node_id(cols):
m = re.match(r"^([0-9]+)\.([0-9]+)$", cols[ID])
assert m, 'parse_empty_node_id with non-empty node'
return m.groups()
def shorten(string):
return string if len(string) < 25 else string[:20]+'[...]'
def lspec2ud(deprel):
return deprel.split(':', 1)[0]
#==============================================================================
# Level 1 tests. Only CoNLL-U backbone. Values can be empty or non-UD.
#==============================================================================
sentid_re=re.compile('^# sent_id\s*=\s*(\S+)$')
def trees(inp, tag_sets, args):
"""
`inp` a file-like object yielding lines as unicode
`tag_sets` and `args` are needed for choosing the tests
This function does elementary checking of the input and yields one
sentence at a time from the input stream.
"""
global curr_line, sentence_line, sentence_id
comments=[] # List of comment lines to go with the current sentence
lines=[] # List of token/word lines of the current sentence
testlevel = 1
testclass = 'Format'
for line_counter, line in enumerate(inp):
curr_line=line_counter+1
line=line.rstrip(u"\n")
if is_whitespace(line):
testid = 'pseudo-empty-line'
testmessage = 'Spurious line that appears empty but is not; there are whitespace characters.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# We will pretend that the line terminates a sentence in order to avoid subsequent misleading error messages.
if lines:
yield comments, lines
comments=[]
lines=[]
elif not line: # empty line
if lines: # sentence done
yield comments, lines
comments=[]
lines=[]
else:
testid = 'extra-empty-line'
testmessage = 'Spurious empty line. Only one empty line is expected after every sentence.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
elif line[0]=='#':
# We will really validate sentence ids later. But now we want to remember
# everything that looks like a sentence id and use it in the error messages.
# Line numbers themselves may not be sufficient if we are reading multiple
# files from a pipe.
match = sentid_re.match(line)
if match:
sentence_id = match.group(1)
if not lines: # before sentence
comments.append(line)
else:
testid = 'misplaced-comment'
testmessage = 'Spurious comment line. Comments are only allowed before a sentence.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
elif line[0].isdigit():
validate_unicode_normalization(line)
if not lines: # new sentence
sentence_line=curr_line
cols=line.split(u"\t")
if len(cols)!=COLCOUNT:
testid = 'number-of-columns'
testmessage = 'The line has %d columns but %d are expected. The contents of the columns will not be checked.' % (len(cols), COLCOUNT)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# If there is an unexpected number of columns, do not test their contents.
# Maybe the contents belongs to a different column. And we could see
# an exception if a column value is missing.
else:
lines.append(cols)
validate_cols_level1(cols)
if args.level > 1:
validate_cols(cols,tag_sets,args)
else: # A line which is neither a comment nor a token/word, nor empty. That's bad!
testid = 'invalid-line'
testmessage = "Spurious line: '%s'. All non-empty lines should start with a digit or the # character." % (line)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
else: # end of file
if comments or lines: # These should have been yielded on an empty line!
testid = 'missing-empty-line'
testmessage = 'Missing empty line after the last sentence.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
yield comments, lines
###### Tests applicable to a single row indpendently of the others
def validate_unicode_normalization(text):
"""
Tests that letters composed of multiple Unicode characters (such as a base
letter plus combining diacritics) conform to NFC normalization (canonical
decomposition followed by canonical composition).
"""
normalized_text = unicodedata.normalize('NFC', text)
if text != normalized_text:
# Find the first unmatched character and include it in the report.
firsti = -1
firstj = -1
inpfirst = ''
nfcfirst = ''
tcols = text.split("\t")
ncols = normalized_text.split("\t")
for i in range(len(tcols)):
for j in range(len(tcols[i])):
if tcols[i][j] != ncols[i][j]:
firsti = i
firstj = j
inpfirst = unicodedata.name(tcols[i][j])
nfcfirst = unicodedata.name(ncols[i][j])
break
if firsti >= 0:
break
testlevel = 1
testclass = 'Unicode'
testid = 'unicode-normalization'
testmessage = "Unicode not normalized: %s.character[%d] is %s, should be %s." % (COLNAMES[firsti], firstj, inpfirst, nfcfirst)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
whitespace_re=re.compile('.*\s',re.U)
whitespace2_re=re.compile('.*\s\s', re.U)
def validate_cols_level1(cols):
"""
Tests that can run on a single line and pertain only to the CoNLL-U file
format, not to predefined sets of UD tags.
"""
testlevel = 1
testclass = 'Format'
# Some whitespace may be permitted in FORM, LEMMA and MISC but not elsewhere.
for col_idx in range(MISC+1):
if col_idx >= len(cols):
break # this has been already reported in trees()
# Must never be empty
if not cols[col_idx]:
testid = 'empty-column'
testmessage = 'Empty value in column %s.' % (COLNAMES[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
else:
# Must never have leading/trailing whitespace
if cols[col_idx][0].isspace():
testid = 'leading-whitespace'
testmessage = 'Leading whitespace not allowed in column %s.' % (COLNAMES[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if cols[col_idx][-1].isspace():
testid = 'trailing-whitespace'
testmessage = 'Trailing whitespace not allowed in column %s.' % (COLNAMES[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# Must never contain two consecutive whitespace characters
if whitespace2_re.match(cols[col_idx]):
testid = 'repeated-whitespace'
testmessage = 'Two or more consecutive whitespace characters not allowed in column %s.' % (COLNAMES[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# These columns must not have whitespace
for col_idx in (ID,UPOS,XPOS,FEATS,HEAD,DEPREL,DEPS):
if col_idx >= len(cols):
break # this has been already reported in trees()
if whitespace_re.match(cols[col_idx]):
testid = 'invalid-whitespace'
testmessage = "White space not allowed in column %s: '%s'." % (COLNAMES[col_idx], cols[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# Check for the format of the ID value. (ID must not be empty.)
if not (is_word(cols) or is_empty_node(cols) or is_multiword_token(cols)):
testid = 'invalid-word-id'
testmessage = "Unexpected ID format '%s'." % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
##### Tests applicable to the whole tree
interval_re=re.compile('^([0-9]+)-([0-9]+)$',re.U)
def validate_ID_sequence(tree):
"""
Validates that the ID sequence is correctly formed.
"""
testlevel = 1
testclass = 'Format'
words=[]
tokens=[]
current_word_id, next_empty_id = 0, 1
for cols in tree:
if not is_empty_node(cols):
next_empty_id = 1 # reset sequence
if is_word(cols):
t_id=int(cols[ID])
current_word_id = t_id
words.append(t_id)
# Not covered by the previous interval?
if not (tokens and tokens[-1][0]<=t_id and tokens[-1][1]>=t_id):
tokens.append((t_id,t_id)) # nope - let's make a default interval for it
elif is_multiword_token(cols):
match=interval_re.match(cols[ID]) # Check the interval against the regex
if not match: # This should not happen. The function is_multiword_token() would then not return True.
testid = 'invalid-word-interval'
testmessage = "Spurious word interval definition: '%s'." % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
beg,end=int(match.group(1)),int(match.group(2))
if not ((not words and beg >= 1) or (words and beg >= words[-1] + 1)):
testid = 'misplaced-word-interval'
testmessage = 'Multiword range not before its first word.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
tokens.append((beg,end))
elif is_empty_node(cols):
word_id, empty_id = (int(i) for i in parse_empty_node_id(cols))
if word_id != current_word_id or empty_id != next_empty_id:
testid = 'misplaced-empty-node'
testmessage = 'Empty node id %s, expected %d.%d' % (cols[ID], current_word_id, next_empty_id)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
next_empty_id += 1
# Now let's do some basic sanity checks on the sequences
wrdstrseq = ','.join(str(x) for x in words)
expstrseq = ','.join(str(x) for x in range(1, len(words)+1)) # Words should form a sequence 1,2,...
if wrdstrseq != expstrseq:
testid = 'word-id-sequence'
testmessage = "Words do not form a sequence. Got '%s'. Expected '%s'." % (wrdstrseq, expstrseq)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
# Check elementary sanity of word intervals.
# Remember that these are not just multi-word tokens. Here we have intervals even for single-word tokens (b=e)!
for (b, e) in tokens:
if e<b: # end before beginning
testid = 'reversed-word-interval'
testmessage = 'Spurious token interval %d-%d' % (b,e)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
if b<1 or e>len(words): # out of range
testid = 'word-interval-out'
testmessage = 'Spurious token interval %d-%d (out of range)' % (b,e)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
def validate_token_ranges(tree):
"""
Checks that the word ranges for multiword tokens are valid.
"""
testlevel = 1
testclass = 'Format'
covered = set()
for cols in tree:
if not is_multiword_token(cols):
continue
m = interval_re.match(cols[ID])
if not m: # This should not happen. The function is_multiword_token() would then not return True.
testid = 'invalid-word-interval'
testmessage = "Spurious word interval definition: '%s'." % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
start, end = m.groups()
try:
start, end = int(start), int(end)
except ValueError:
assert False, 'internal error' # RE should assure that this works
if not start < end: ###!!! This was already tested above in validate_ID_sequence()! Should we remove it from there?
testid = 'reversed-word-interval'
testmessage = 'Spurious token interval %d-%d' % (start, end)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
if covered & set(range(start, end+1)):
testid = 'overlapping-word-intervals'
testmessage = 'Range overlaps with others: %s' % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
covered |= set(range(start, end+1))
def validate_newlines(inp):
if inp.newlines and inp.newlines!='\n':
testlevel = 1
testclass = 'Format'
testid = 'non-unix-newline'
testmessage = 'Only the unix-style LF line terminator is allowed.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
#==============================================================================
# Level 2 tests. Tree structure, universal tags and deprels. Note that any
# well-formed Feature=Valid pair is allowed (because it could be language-
# specific) and any word form or lemma can contain spaces (because language-
# specific guidelines may permit it).
#==============================================================================
###### Metadata tests #########
def validate_sent_id(comments,known_ids,lcode):
testlevel = 2
testclass = 'Metadata'
matched=[]
for c in comments:
match=sentid_re.match(c)
if match:
matched.append(match)
else:
if c.startswith('# sent_id') or c.startswith('#sent_id'):
testid = 'invalid-sent-id'
testmessage = "Spurious sent_id line: '%s' Should look like '# sent_id = xxxxx' where xxxxx is not whitespace. Forward slash reserved for special purposes." % c
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if not matched:
testid = 'missing-sent-id'
testmessage = 'Missing the sent_id attribute.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
elif len(matched)>1:
testid = 'multiple-sent-id'
testmessage = 'Multiple sent_id attributes.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
else:
# Uniqueness of sentence ids should be tested treebank-wide, not just file-wide.
# For that to happen, all three files should be tested at once.
sid=matched[0].group(1)
if sid in known_ids:
testid = 'non-unique-sent-id'
testmessage = "Non-unique sent_id attribute '%s'." % sid
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if sid.count(u"/")>1 or (sid.count(u"/")==1 and lcode!=u"ud" and lcode!=u"shopen"):
testid = 'slash-in-sent-id'
testmessage = "The forward slash is reserved for special use in parallel treebanks: '%s'" % sid
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
known_ids.add(sid)
text_re=re.compile('^# text\s*=\s*(.+)$')
def validate_text_meta(comments,tree):
testlevel = 2
testclass = 'Metadata'
matched=[]
for c in comments:
match=text_re.match(c)
if match:
matched.append(match)
if not matched:
testid = 'missing-text'
testmessage = 'Missing the text attribute.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
elif len(matched)>1:
testid = 'multiple-text'
testmessage = 'Multiple text attributes.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
else:
stext=matched[0].group(1)
if stext[-1].isspace():
testid = 'text-trailing-whitespace'
testmessage = 'The text attribute must not end with whitespace.'
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# Validate the text against the SpaceAfter attribute in MISC.
skip_words=set()
mismatch_reported=0 # do not report multiple mismatches in the same sentence; they usually have the same cause
for cols in tree:
if MISC >= len(cols):
# This error has been reported elsewhere but we cannot check MISC now.
continue
if 'NoSpaceAfter=Yes' in cols[MISC]: # I leave this without the split("|") to catch all
testid = 'nospaceafter-yes'
testmessage = "'NoSpaceAfter=Yes' should be replaced with 'SpaceAfter=No'."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if '.' in cols[ID]: # empty node
if 'SpaceAfter=No' in cols[MISC]: # I leave this without the split("|") to catch all
testid = 'spaceafter-empty-node'
testmessage = "'SpaceAfter=No' cannot occur with empty nodes."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
elif '-' in cols[ID]: # multi-word token
beg,end=cols[ID].split('-')
try:
begi,endi = int(beg),int(end)
except ValueError as e:
# This error has been reported elsewhere.
begi,endi=1,0
# If we see a multi-word token, add its words to an ignore-set - these will be skipped, and also checked for absence of SpaceAfter=No
for i in range(begi, endi+1):
skip_words.add(str(i))
elif cols[ID] in skip_words:
if 'SpaceAfter=No' in cols[MISC]:
testid = 'spaceafter-mwt-node'
testmessage = "'SpaceAfter=No' cannot occur with words that are part of a multi-word token."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
else:
# Err, I guess we have nothing to do here. :)
pass
# So now we have either a multi-word token or a word which is also a token in its entirety.
if not stext.startswith(cols[FORM]):
if not mismatch_reported:
testid = 'text-form-mismatch'
testmessage = "Mismatch between the text attribute and the FORM field. Form[%s] is '%s' but text is '%s...'" % (cols[ID], cols[FORM], stext[:len(cols[FORM])+20])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
mismatch_reported=1
else:
stext=stext[len(cols[FORM]):] # eat the form
if 'SpaceAfter=No' not in cols[MISC].split("|"):
if args.check_space_after and (stext) and not stext[0].isspace():
testid = 'missing-spaceafter'
testmessage = "'SpaceAfter=No' is missing in the MISC field of node #%s because the text is '%s'." % (cols[ID], shorten(cols[FORM]+stext))
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
stext=stext.lstrip()
if stext:
testid = 'text-extra-chars'
testmessage = "Extra characters at the end of the text attribute, not accounted for in the FORM fields: '%s'" % stext
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
##### Tests applicable to a single row indpendently of the others
def validate_cols(cols, tag_sets, args):
"""
All tests that can run on a single line. Done as soon as the line is read,
called from trees() if level>1.
"""
if is_word(cols) or is_empty_node(cols):
validate_character_constraints(cols) # level 2
validate_features(cols, tag_sets, args) # level 2 and up (relevant code checks whether higher level is required)
validate_upos(cols,tag_sets) # level 2
elif is_multiword_token(cols):
validate_token_empty_vals(cols)
# else do nothing; we have already reported wrong ID format at level 1
if is_word(cols):
validate_deprels(cols, tag_sets, args) # level 2 and up
elif is_empty_node(cols):
validate_empty_node_empty_vals(cols) # level 2
# TODO check also the following:
# - DEPS are connected and non-acyclic
# (more, what?)
if args.level > 3:
validate_whitespace(cols, tag_sets) # level 4 (it is language-specific; to disallow everywhere, use --lang ud)
def validate_token_empty_vals(cols):
"""
Checks that a multi-word token has _ empty values in all fields except MISC.
This is required by UD guidelines although it is not a problem in general,
therefore a level 2 test.
"""
assert is_multiword_token(cols), 'internal error'
for col_idx in range(LEMMA, MISC): # all columns except the first two (ID, FORM) and the last one (MISC)
if cols[col_idx] != '_':
testlevel = 2
testclass = 'Format'
testid = 'mwt-nonempty-field'
testmessage = "A multi-word token line must have '_' in the column %s. Now: '%s'." % (COLNAMES[col_idx], cols[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
def validate_empty_node_empty_vals(cols):
"""
Checks that an empty node has _ empty values in HEAD and DEPREL. This is
required by UD guidelines but not necessarily by CoNLL-U, therefore
a level 2 test.
"""
assert is_empty_node(cols), 'internal error'
for col_idx in (HEAD, DEPREL):
if cols[col_idx]!= '_':
testlevel = 2
testclass = 'Format'
testid = 'mwt-nonempty-field'
testmessage = "An empty node must have '_' in the column %s. Now: '%s'." % (COLNAMES[col_idx], cols[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# Ll ... lowercase Unicode letters
# Lm ... modifier Unicode letters (e.g., superscript h)
# Lo ... other Unicode letters (all caseless scripts, e.g., Arabic)
# M .... combining diacritical marks
# Underscore is allowed between letters but not at beginning, end, or next to another underscore.
edeprelpart_resrc = '[\p{Ll}\p{Lm}\p{Lo}\p{M}]+(_[\p{Ll}\p{Lm}\p{Lo}\p{M}]+)*';
# There must be always the universal part, consisting only of ASCII letters.
# There can be up to three additional, colon-separated parts: subtype, preposition and case.
# One of them, the preposition, may contain Unicode letters. We do not know which one it is
# (only if there are all four parts, we know it is the third one).
# ^[a-z]+(:[a-z]+)?(:[\p{Ll}\p{Lm}\p{Lo}\p{M}]+(_[\p{Ll}\p{Lm}\p{Lo}\p{M}]+)*)?(:[a-z]+)?$
edeprel_resrc = '^[a-z]+(:[a-z]+)?(:' + edeprelpart_resrc + ')?(:[a-z]+)?$'
edeprel_re = re.compile(edeprel_resrc, re.U)
def validate_character_constraints(cols):
"""
Checks general constraints on valid characters, e.g. that UPOS
only contains [A-Z].
"""
testlevel = 2
if is_multiword_token(cols):
return
if UPOS >= len(cols):
return # this has been already reported in trees()
if not (re.match(r"^[A-Z]+$", cols[UPOS]) or (is_empty_node(cols) and cols[UPOS] == '_')):
testclass = 'Morpho'
testid = 'invalid-upos'
testmessage = "Invalid UPOS value '%s'." % cols[UPOS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if not (re.match(r"^[a-z]+(:[a-z]+)?$", cols[DEPREL]) or (is_empty_node(cols) and cols[DEPREL] == '_')):
testclass = 'Syntax'
testid = 'invalid-deprel'
testmessage = "Invalid DEPREL value '%s'." % cols[DEPREL]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
try:
deps = deps_list(cols)
except ValueError:
testclass = 'Enhanced'
testid = 'invalid-deps'
testmessage = "Failed to parse DEPS: '%s'." % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
return
if any(deprel for head, deprel in deps_list(cols)
if not edeprel_re.match(deprel)):
testclass = 'Enhanced'
testid = 'invalid-edeprel'
testmessage = "Invalid enhanced relation type: '%s'." % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
attr_val_re=re.compile('^([A-Z0-9][A-Z0-9a-z]*(?:\[[a-z0-9]+\])?)=(([A-Z0-9][A-Z0-9a-z]*)(,([A-Z0-9][A-Z0-9a-z]*))*)$',re.U)
val_re=re.compile('^[A-Z0-9][A-Z0-9a-z]*',re.U)
def validate_features(cols, tag_sets, args):
"""
Checks general constraints on feature-value format. On level 4 and higher,
also checks that a feature-value pair is listed as approved. (Every pair
must be allowed on level 2 because it could be defined as language-specific.
To disallow non-universal features, test on level 4 with language 'ud'.)
"""
testclass = 'Morpho'
if FEATS >= len(cols):
return # this has been already reported in trees()
feats=cols[FEATS]
if feats == '_':
return True
feat_list=feats.split('|')
if [f.lower() for f in feat_list]!=sorted(f.lower() for f in feat_list):
testlevel = 2
testid = 'unsorted-features'
testmessage = "Morphological features must be sorted: '%s'." % feats
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
attr_set=set() # I'll gather the set of features here to check later that none is repeated.
for f in feat_list:
match=attr_val_re.match(f)
if match is None:
testlevel = 2
testid = 'invalid-feature'
testmessage = "Spurious morphological feature: '%s'. Should be of the form Feature=Value and must start with [A-Z0-9] and only contain [A-Za-z0-9]." % f
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
attr_set.add(f) # to prevent misleading error "Repeated features are disallowed"
else:
# Check that the values are sorted as well
attr=match.group(1)
attr_set.add(attr)
values=match.group(2).split(',')
if len(values) != len(set(values)):
testlevel = 2
testid = 'repeated-feature-value'
testmessage = "Repeated feature values are disallowed: '%s'" % feats
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if [v.lower() for v in values] != sorted(v.lower() for v in values):
testlevel = 2
testid = 'unsorted-feature-values'
testmessage = "If a feature has multiple values, these must be sorted: '%s'" % f
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
for v in values:
if not val_re.match(v):
testlevel = 2
testid = 'invalid-feature-value'
testmessage = "Spurious value '%s' in '%s'. Must start with [A-Z0-9] and only contain [A-Za-z0-9]." % (v, f)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
# Level 2 tests character properties and canonical order but not that the f-v pair is known.
# Level 4 also checks whether the feature value is on the list.
# If only universal feature-value pairs are allowed, test on level 4 with lang='ud'.
if args.level > 3 and tag_sets[FEATS] is not None and attr+'='+v not in tag_sets[FEATS]:
warn_on_missing_files.add("feat_val")
testlevel = 4
testid = 'unknown-feature-value'
testmessage = "Unknown feature-value pair '%s=%s'." % (attr, v)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if len(attr_set) != len(feat_list):
testlevel = 2
testid = 'repeated-feature'
testmessage = "Repeated features are disallowed: '%s'." % feats
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
def validate_upos(cols, tag_sets):
if UPOS >= len(cols):
return # this has been already reported in trees()
if is_empty_node(cols) and cols[UPOS] == '_':
return
if tag_sets[UPOS] is not None and cols[UPOS] not in tag_sets[UPOS]:
testlevel = 2
testclass = 'Morpho'
testid = 'unknown-upos'
testmessage = "Unknown UPOS tag: '%s'." % cols[UPOS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
def validate_deprels(cols, tag_sets, args):
if DEPREL >= len(cols):
return # this has been already reported in trees()
# Test only the universal part if testing at universal level.
deprel = cols[DEPREL]
testlevel = 4
if args.level < 4:
deprel = lspec2ud(deprel)
testlevel = 2
if tag_sets[DEPREL] is not None and deprel not in tag_sets[DEPREL]:
warn_on_missing_files.add("deprel")
testclass = 'Syntax'
testid = 'unknown-deprel'
testmessage = "Unknown DEPREL label: '%s'" % cols[DEPREL]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if DEPS >= len(cols):
return # this has been already reported in trees()
if tag_sets[DEPS] is not None and cols[DEPS] != '_':
for head_deprel in cols[DEPS].split('|'):
try:
head,deprel=head_deprel.split(':', 1)
except ValueError:
testclass = 'Enhanced'
testid = 'invalid-head-deprel' # but it would have probably triggered another error above
testmessage = "Malformed head:deprel pair '%s'." % head_deprel
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
if args.level < 4:
deprel = lspec2ud(deprel)
if deprel not in tag_sets[DEPS]:
warn_on_missing_files.add("edeprel")
testclass = 'Enhanced'
testid = 'unknown-edeprel'
testmessage = "Unknown enhanced relation type '%s' in '%s'" % (deprel, head_deprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
##### Tests applicable to the whole sentence
def subset_to_words_and_empty_nodes(tree):
"""
Only picks word and empty node lines, skips multiword token lines.
"""
return [cols for cols in tree if is_word(cols) or is_empty_node(cols)]
def deps_list(cols):
if DEPS >= len(cols):
return # this has been already reported in trees()
if cols[DEPS] == '_':
deps = []
else:
deps = [hd.split(':',1) for hd in cols[DEPS].split('|')]
if any(hd for hd in deps if len(hd) != 2):
raise ValueError('malformed DEPS: %s' % cols[DEPS])
return deps
basic_head_re = re.compile('^(0|[1-9][0-9]*)$', re.U)
enhanced_head_re = re.compile('^(0|[1-9][0-9]*)(\.[1-9][0-9]*)?$', re.U)
def validate_ID_references(tree):
"""
Validates that HEAD and DEPS reference existing IDs.
"""
testlevel = 2
word_tree = subset_to_words_and_empty_nodes(tree)
ids = set([cols[ID] for cols in word_tree])
for cols in word_tree:
if HEAD >= len(cols):
return # this has been already reported in trees()
# Test the basic HEAD only for non-empty nodes.
# We have checked elsewhere that it is empty for empty nodes.
if not is_empty_node(cols):
match = basic_head_re.match(cols[HEAD])
if match is None:
testclass = 'Format'
testid = 'invalid-head'
testmessage = "Invalid HEAD: '%s'." % cols[HEAD]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if not (cols[HEAD] in ids or cols[HEAD] == '0'):
testclass = 'Syntax'
testid = 'unknown-head'
testmessage = "Undefined HEAD (no such ID): '%s'." % cols[HEAD]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if DEPS >= len(cols):
return # this has been already reported in trees()
try:
deps = deps_list(cols)
except ValueError:
# Similar errors have probably been reported earlier.
testclass = 'Format'
testid = 'invalid-deps'
testmessage = "Failed to parse DEPS: '%s'." % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
for head, deprel in deps:
match = enhanced_head_re.match(head)
if match is None:
testclass = 'Format'
testid = 'invalid-ehead'
testmessage = "Invalid enhanced head reference: '%s'." % head
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if not (head in ids or head == '0'):
testclass = 'Enhanced'
testid = 'unknown-ehead'
testmessage = "Undefined enhanced head reference (no such ID): '%s'." % head
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
def validate_root(tree):
"""
Checks that DEPREL is "root" iff HEAD is 0.
"""
testlevel = 2
for cols in tree:
if is_word(cols):
if HEAD >= len(cols):
continue # this has been already reported in trees()
if cols[HEAD] == '0' and lspec2ud(cols[DEPREL]) != 'root':
testclass = 'Syntax'
testid = '0-is-not-root'
testmessage = "DEPREL must be 'root' if HEAD is 0."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if cols[HEAD] != '0' and lspec2ud(cols[DEPREL]) == 'root':
testclass = 'Syntax'
testid = 'root-is-not-0'
testmessage = "DEPREL cannot be 'root' if HEAD is not 0."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if is_word(cols) or is_empty_node(cols):
if DEPS >= len(cols):
continue # this has been already reported in trees()
try:
deps = deps_list(cols)
except ValueError:
# Similar errors have probably been reported earlier.
testclass = 'Format'
testid = 'invalid-deps'
testmessage = "Failed to parse DEPS: '%s'." % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
continue
for head, deprel in deps:
if head == '0' and lspec2ud(deprel) != 'root':
testclass = 'Enhanced'
testid = 'enhanced-0-is-not-root'
testmessage = "Enhanced relation type must be 'root' if head is 0."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
if head != '0' and lspec2ud(deprel) == 'root':
testclass = 'Enhanced'
testid = 'enhanced-root-is-not-0'
testmessage = "Enhanced relation type cannot be 'root' if head is not 0."
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
def validate_deps(tree):
"""
Validates that DEPS is correctly formatted and that there are no
self-loops in DEPS.
"""
testlevel = 2
node_line = sentence_line - 1
for cols in tree:
node_line += 1
if not (is_word(cols) or is_empty_node(cols)):
continue
if DEPS >= len(cols):
continue # this has been already reported in trees()
try:
deps = deps_list(cols)
heads = [float(h) for h, d in deps]
except ValueError:
# Similar errors have probably been reported earlier.
testclass = 'Format'
testid = 'invalid-deps'
testmessage = "Failed to parse DEPS: '%s'." % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
return
if heads != sorted(heads):
testclass = 'Format'
testid = 'unsorted-deps'
testmessage = "DEPS not sorted by head index: '%s'" % cols[DEPS]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
else:
lasth = None
lastd = None
for h, d in deps:
if h == lasth:
if d < lastd:
testclass = 'Format'
testid = 'unsorted-deps-2'
testmessage = "DEPS pointing to head '%s' not sorted by relation type: '%s'" % (h, cols[DEPS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
elif d == lastd:
testclass = 'Format'
testid = 'repeated-deps'
testmessage = "DEPS contain multiple instances of the same relation '%s:%s'" % (h, d)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
lasth = h
lastd = d
###!!! This is now also tested above in validate_root(). We must reorganize testing of the enhanced structure so that the same thing is not tested multiple times.
# Like in the basic representation, head 0 implies relation root and vice versa.
# Note that the enhanced graph may have multiple roots (coordination of predicates).
#ud = lspec2ud(d)
#if h == '0' and ud != 'root':
# warn("Illegal relation '%s:%s' in DEPS: must be 'root' if head is 0" % (h, d), 'Format', nodelineno=node_line)
#if ud == 'root' and h != '0':
# warn("Illegal relation '%s:%s' in DEPS: cannot be 'root' if head is not 0" % (h, d), 'Format', nodelineno=node_line)
try:
id_ = float(cols[ID])
except ValueError:
# This error has been reported previously.
return
if id_ in heads:
testclass = 'Enhanced'
testid = 'deps-self-loop'
testmessage = "Self-loop in DEPS for '%s'" % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
def validate_misc(tree):
"""
In general, the MISC column can contain almost anything. However, if there
is a vertical bar character, it is interpreted as the separator of two
MISC attributes, which may or may not have the form of attribute=value pair.
In general it is not forbidden that the same attribute appears several times
with different values, but this should not happen for selected attributes
that are described in the UD documentation.
"""
testlevel = 2
testclass = 'Format'
node_line = sentence_line - 1
for cols in tree:
node_line += 1
if not (is_word(cols) or is_empty_node(cols)):
continue
if MISC >= len(cols):
continue # this has been already reported in trees()
if cols[MISC] == '_':
continue
misc = [ma.split('=', 1) for ma in cols[MISC].split('|')]
mamap = {}
for ma in misc:
if re.match(r"^(SpaceAfter|Translit|LTranslit|Gloss|LId|LDeriv)$", ma[0]):
mamap.setdefault(ma[0], 0)
mamap[ma[0]] = mamap[ma[0]] + 1
for a in list(mamap):
if mamap[a] > 1:
testid = 'repeated-misc'
testmessage = "MISC attribute '%s' not supposed to occur twice" % a
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
def build_tree(sentence):
"""
Takes the list of non-comment lines (line = list of columns) describing
a sentence. Returns a dictionary with items providing easier access to the
tree structure. In case of fatal problems (missing HEAD etc.) returns None
but does not report the error (presumably it has already been reported).
tree ... dictionary:
nodes ... array of word lines, i.e., lists of columns;
mwt and empty nodes are skipped, indices equal to ids (nodes[0] is empty)
children ... array of sets of children indices (numbers, not strings);
indices to this array equal to ids (children[0] are the children of the root)
linenos ... array of line numbers in the file, corresponding to nodes
(needed in error messages)
"""
testlevel = 2
testclass = 'Syntax'
global sentence_line # the line of the first token/word of the current tree (skipping comments!)
node_line = sentence_line - 1
children = {} # node -> set of children
tree = {
'nodes': [['0', '_', '_', '_', '_', '_', '_', '_', '_', '_']], # add artificial node 0
'children': [],
'linenos': [sentence_line] # for node 0
}
for cols in sentence:
node_line += 1
if not is_word(cols):
continue
# Even MISC may be needed when checking the annotation guidelines
# (for instance, SpaceAfter=No must not occur inside a goeswith span).
if MISC >= len(cols):
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return None
try:
id_ = int(cols[ID])
except ValueError:
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return None
try:
head = int(cols[HEAD])
except ValueError:
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return None
if head == id_:
testid = 'head-self-loop'
testmessage = 'HEAD == ID for %s' % cols[ID]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodelineno=node_line)
return None
tree['nodes'].append(cols)
tree['linenos'].append(node_line)
# Incrementally build the set of children of every node.
children.setdefault(cols[HEAD], set()).add(id_)
for cols in tree['nodes']:
tree['children'].append(sorted(children.get(cols[ID], [])))
# Check that there is just one node with the root relation.
if len(tree['children'][0]) > 1 and args.single_root:
testid = 'multiple-roots'
testmessage = "Multiple root words: %s" % tree['children'][0]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
return None
# Return None if there are any cycles. Avoid surprises when working with the graph.
# Presence of cycles is equivalent to presence of unreachable nodes.
projection = set()
get_projection(0, tree, projection)
unreachable = set(range(1, len(tree['nodes']) - 1)) - projection
if unreachable:
testid = 'non-tree'
testmessage = 'Non-tree structure. Words %s are not reachable from the root 0.' % (','.join(str(w) for w in sorted(unreachable)))
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
return None
return tree
def get_projection(id, tree, projection):
"""
Like proj() above, but works with the tree data structure. Collects node ids
in the set called projection.
"""
for child in tree['children'][id]:
if child in projection:
continue # cycle is or will be reported elsewhere
projection.add(child)
get_projection(child, tree, projection)
return projection
def build_egraph(sentence):
"""
Takes the list of non-comment lines (line = list of columns) describing
a sentence. Returns a dictionary with items providing easier access to the
enhanced graph structure. In case of fatal problems returns None
but does not report the error (presumably it has already been reported).
However, once the graph has been found and built, this function verifies
that the graph is connected and generates an error if it is not.
egraph ... dictionary:
nodes ... dictionary of dictionaries, each corresponding to a word or an empty node; mwt lines are skipped
keys equal to node ids (i.e. strings that look like integers or decimal numbers; key 0 is the artificial root node)
value is a dictionary-record:
cols ... array of column values from the input line corresponding to the node
children ... set of children ids (strings)
lineno ... line number in the file (needed in error messages)
"""
global sentence_line # the line of the first token/word of the current tree (skipping comments!)
node_line = sentence_line - 1
egraph_exists = False # enhanced deps are optional
rootnode = {
'cols': ['0', '_', '_', '_', '_', '_', '_', '_', '_', '_'],
'deps': [],
'parents': set(),
'children': set(),
'lineno': sentence_line
}
egraph = {
'0': rootnode
} # structure described above
nodeids = set()
for cols in sentence:
node_line += 1
if is_multiword_token(cols):
continue
if MISC >= len(cols):
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return None
try:
deps = deps_list(cols)
heads = [h for h, d in deps]
except ValueError:
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return None
if is_empty_node(cols):
egraph_exists = True
nodeids.add(cols[ID])
# The graph may already contain a record for the current node if one of
# the previous nodes is its child. If it doesn't, we will create it now.
egraph.setdefault(cols[ID], {})
egraph[cols[ID]]['cols'] = cols
egraph[cols[ID]]['deps'] = deps_list(cols)
egraph[cols[ID]]['parents'] = set([h for h, d in deps])
egraph[cols[ID]].setdefault('children', set())
egraph[cols[ID]]['lineno'] = node_line
# Incrementally build the set of children of every node.
for h in heads:
egraph_exists = True
egraph.setdefault(h, {})
egraph[h].setdefault('children', set()).add(cols[ID])
# We are currently testing the existence of enhanced graphs separately for each sentence.
# It is thus possible to have one sentence with connected egraph and another without enhanced dependencies.
if not egraph_exists:
return None
# Check that the graph is connected. The UD v2 guidelines do not license unconnected graphs.
# Compute projection of every node. Beware of cycles.
projection = set()
get_graph_projection('0', egraph, projection)
unreachable = nodeids - projection
if unreachable:
sur = sorted(unreachable)
testlevel = 2
testclass = 'Enhanced'
testid = 'unconnected-egraph'
testmessage = "Enhanced graph is not connected. Nodes %s are not reachable from any root" % sur
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
return None
return egraph
def get_graph_projection(id, graph, projection):
for child in graph[id]['children']:
if child in projection:
continue; # skip cycles
projection.add(child)
get_graph_projection(child, graph, projection)
return projection
#==============================================================================
# Level 3 tests. Annotation content vs. the guidelines (only universal tests).
#==============================================================================
def validate_upos_vs_deprel(id, tree):
"""
For certain relations checks that the dependent word belongs to an expected
part-of-speech category. Occasionally we may have to check the children of
the node, too.
"""
testlevel = 3
testclass = 'Syntax'
cols = tree['nodes'][id]
# This is a level 3 test, we will check only the universal part of the relation.
deprel = lspec2ud(cols[DEPREL])
childrels = set([lspec2ud(tree['nodes'][x][DEPREL]) for x in tree['children'][id]])
# Certain relations are reserved for nominals and cannot be used for verbs.
# Nevertheless, they can appear with adjectives or adpositions if they are promoted due to ellipsis.
# Unfortunately, we cannot enforce this test because a word can be cited
# rather than used, and then it can take a nominal function even if it is
# a verb, as in this Upper Sorbian sentence where infinitives are appositions:
# [hsb] Z werba danci "rejować" móže substantiw nastać danco "reja", adjektiw danca "rejowanski" a adwerb dance "rejowansce", ale tež z substantiwa martelo "hamor" móže nastać werb marteli "klepać z hamorom", adjektiw martela "hamorowy" a adwerb martele "z hamorom".
#if re.match(r"^(nsubj|obj|iobj|obl|vocative|expl|dislocated|nmod|appos)", deprel) and re.match(r"^(VERB|AUX|ADV|SCONJ|CCONJ)", cols[UPOS]):
# warn("Node %s: '%s' should be a nominal but it is '%s'" % (cols[ID], deprel, cols[UPOS]), 'Syntax', lineno=False)
# Determiner can alternate with a pronoun.
if deprel == 'det' and not re.match(r"^(DET|PRON)", cols[UPOS]) and not 'fixed' in childrels:
testid = 'rel-upos-det'
testmessage = "'det' should be 'DET' or 'PRON' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Nummod is for "number phrases" only. This could be interpreted as NUM only,
# but some languages treat some cardinal numbers as NOUNs, and in
# https://github.com/UniversalDependencies/docs/issues/596,
# we concluded that the validator will tolerate them.
if deprel == 'nummod' and not re.match(r"^(NUM|NOUN|SYM)$", cols[UPOS]):
testid = 'rel-upos-nummod'
testmessage = "'nummod' should be 'NUM' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Advmod is for adverbs, perhaps particles but not for prepositional phrases or clauses.
# Nevertheless, we should allow adjectives because they can be used as adverbs in some languages.
# https://github.com/UniversalDependencies/docs/issues/617#issuecomment-488261396
# Bohdan reports that some DET can modify adjectives in a way similar to ADV.
# I am not sure whether advmod is the best relation for them but the alternative det is not much better, so maybe we should not enforce it. Adding DET to the tolerated UPOS tags.
if deprel == 'advmod' and not re.match(r"^(ADV|ADJ|CCONJ|DET|PART|SYM)", cols[UPOS]) and not 'fixed' in childrels and not 'goeswith' in childrels:
testid = 'rel-upos-advmod'
testmessage = "'advmod' should be 'ADV' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Known expletives are pronouns. Determiners and particles are probably acceptable, too.
if deprel == 'expl' and not re.match(r"^(PRON|DET|PART)$", cols[UPOS]):
testid = 'rel-upos-expl'
testmessage = "'expl' should normally be 'PRON' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Auxiliary verb/particle must be AUX.
if deprel == 'aux' and not re.match(r"^(AUX)", cols[UPOS]):
testid = 'rel-upos-aux'
testmessage = "'aux' should be 'AUX' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Copula is an auxiliary verb/particle (AUX) or a pronoun (PRON|DET).
if deprel == 'cop' and not re.match(r"^(AUX|PRON|DET|SYM)", cols[UPOS]):
testid = 'rel-upos-cop'
testmessage = "'cop' should be 'AUX' or 'PRON'/'DET' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# AUX is normally aux or cop. It can appear in many other relations if it is promoted due to ellipsis.
# However, I believe that it should not appear in compound. From the other side, compound can consist
# of many different part-of-speech categories but I don't think it can contain AUX.
if deprel == 'compound' and re.match(r"^(AUX)", cols[UPOS]):
testid = 'rel-upos-compound'
testmessage = "'compound' should not be 'AUX'"
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Case is normally an adposition, maybe particle.
# However, there are also secondary adpositions and they may have the original POS tag:
# NOUN: [cs] pomocí, prostřednictvím
# VERB: [en] including
# Interjection can also act as case marker for vocative, as in Sanskrit: भोः भगवन् / bhoḥ bhagavan / oh sir.
if deprel == 'case' and re.match(r"^(PROPN|ADJ|PRON|DET|NUM|AUX)", cols[UPOS]) and not 'fixed' in childrels:
testid = 'rel-upos-case'
testmessage = "'case' should not be '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Mark is normally a conjunction or adposition, maybe particle but definitely not a pronoun.
if deprel == 'mark' and re.match(r"^(NOUN|PROPN|ADJ|PRON|DET|NUM|VERB|AUX|INTJ)", cols[UPOS]) and not 'fixed' in childrels:
testid = 'rel-upos-mark'
testmessage = "'mark' should not be '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Cc is a conjunction, possibly an adverb or particle.
if deprel == 'cc' and re.match(r"^(NOUN|PROPN|ADJ|PRON|DET|NUM|VERB|AUX|INTJ)", cols[UPOS]) and not 'fixed' in childrels:
testid = 'rel-upos-cc'
testmessage = "'cc' should not be '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
if cols[DEPREL] == 'punct' and cols[UPOS] != 'PUNCT':
testid = 'rel-upos-punct'
testmessage = "'punct' must be 'PUNCT' but it is '%s'" % (cols[UPOS])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
if cols[UPOS] == 'PUNCT' and not re.match(r"^(punct|root)", deprel):
testid = 'upos-rel-punct'
testmessage = "'PUNCT' must be 'punct' but it is '%s'" % (cols[DEPREL])
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_left_to_right_relations(id, tree):
"""
Certain UD relations must always go left-to-right.
Here we currently check the rule for the basic dependencies.
The same should also be tested for the enhanced dependencies!
"""
testlevel = 3
testclass = 'Syntax'
cols = tree['nodes'][id]
if is_multiword_token(cols):
return
if DEPREL >= len(cols):
return # this has been already reported in trees()
# According to the v2 guidelines, apposition should also be left-headed, although the definition of apposition may need to be improved.
if re.match(r"^(conj|fixed|flat|goeswith|appos)", cols[DEPREL]):
ichild = int(cols[ID])
iparent = int(cols[HEAD])
if ichild < iparent:
# We must recognize the relation type in the test id so we can manage exceptions for legacy treebanks.
# For conj, flat, and fixed the requirement was introduced already before UD 2.2, and all treebanks in UD 2.3 passed it.
# For appos and goeswith the requirement was introduced before UD 2.4 and legacy treebanks are allowed to fail it.
testid = "right-to-left-%s" % lspec2ud(cols[DEPREL])
testmessage = "Relation '%s' must go left-to-right." % cols[DEPREL]
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_single_subject(id, tree):
"""
No predicate should have more than one subject.
An xcomp dependent normally has no subject, but in some languages the
requirement may be weaker: it could have an overt subject if it is
correferential with a particular argument of the matrix verb. Hence we do
not check zero subjects of xcomp dependents at present.
Furthermore, in some situations we must allow two subjects (but not three or more).
If a clause acts as a nonverbal predicate of another clause, and if there is
no copula, then we must attach two subjects to the predicate of the inner
clause: one is the predicate of the inner clause, the other is the predicate
of the outer clause. This could in theory be recursive but in practice it isn't.
See also issue 34 (https://github.com/UniversalDependencies/tools/issues/34).
"""
subjects = sorted([x for x in tree['children'][id] if re.search(r"subj", lspec2ud(tree['nodes'][x][DEPREL]))])
if len(subjects) > 2:
# We test for more than 2, but in the error message we still say more than 1, so that we do not have to explain the exceptions.
testlevel = 3
testclass = 'Syntax'
testid = 'too-many-subjects'
testmessage = "Node has more than one subject: %s" % str(subjects)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_orphan(id, tree):
"""
The orphan relation is used to attach an unpromoted orphan to the promoted
orphan in gapping constructions. A common error is that the promoted orphan
gets the orphan relation too. The parent of orphan is typically attached
via a conj relation, although some other relations are plausible too.
"""
# This is a level 3 test, we will check only the universal part of the relation.
deprel = lspec2ud(tree['nodes'][id][DEPREL])
if deprel == 'orphan':
pid = int(tree['nodes'][id][HEAD])
pdeprel = lspec2ud(tree['nodes'][pid][DEPREL])
# We include advcl because gapping (or something very similar) can also
# occur in subordinate clauses: "He buys companies like my mother [does] vegetables."
# In theory, a similar pattern could also occur with reparandum.
# A similar pattern also occurs with acl, e.g. in Latvian:
# viņš ēd tos ābolus, ko pirms tam [ēda] tārpi ('he eats the same apples, which where [eaten] by worms before that')
# Other clausal heads (ccomp, csubj) may be eligible as well, e.g. in Latvian
# (see also issue 635 19.9.2019):
# atjēdzos, ka bez angļu valodas nekur [netikšu] '[I] realised, that [I will get] nowhere without English'
if not re.match(r"^(conj|parataxis|root|csubj|ccomp|advcl|acl|reparandum)$", pdeprel):
testlevel = 3
testclass = 'Syntax'
testid = 'orphan-parent'
testmessage = "The parent of 'orphan' should normally be 'conj' but it is '%s'." % (pdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_functional_leaves(id, tree):
"""
Most of the time, function-word nodes should be leaves. This function
checks for known exceptions and warns in the other cases.
"""
testlevel = 3
testclass = 'Syntax'
# This is a level 3 test, we will check only the universal part of the relation.
deprel = lspec2ud(tree['nodes'][id][DEPREL])
if re.match(r"^(case|mark|cc|aux|cop|det|fixed|goeswith|punct)$", deprel):
idparent = id
for idchild in tree['children'][id]:
# This is a level 3 test, we will check only the universal part of the relation.
pdeprel = lspec2ud(tree['nodes'][idparent][DEPREL])
###!!! We should also check that 'det' does not have children except for a limited set of exceptions!
###!!! (see https://universaldependencies.org/u/overview/syntax.html#function-word-modifiers)
cdeprel = lspec2ud(tree['nodes'][idchild][DEPREL])
# The guidelines explicitly say that negation can modify any function word
# (see https://universaldependencies.org/u/overview/syntax.html#function-word-modifiers).
# We cannot recognize negation simply by deprel; we have to look at the
# part-of-speech tag and the Polarity feature as well.
cupos = tree['nodes'][idchild][UPOS]
cfeats = tree['nodes'][idchild][FEATS].split('|')
if pdeprel != 'punct' and cdeprel == 'advmod' and re.match(r"^(PART|ADV)$", cupos) and 'Polarity=Neg' in cfeats:
continue
# Punctuation should not depend on function words if it can be projectively
# attached to a content word. But sometimes it cannot. Czech example:
# "Budou - li však zbývat , ukončíme" (lit. "will - if however remain , we-stop")
# "však" depends on "ukončíme" while "budou" and "li" depend nonprojectively
# on "zbývat" (which depends on "ukončíme"). "Budou" is aux and "li" is mark.
# Yet the hyphen must depend on one of them because any other attachment would
# be non-projective. Here we assume that if the parent of a punctuation node
# is attached nonprojectively, punctuation can be attached to it to avoid its
# own nonprojectivity.
gap = get_gap(idparent, tree)
if gap and cdeprel == 'punct':
continue
# Auxiliaries, conjunctions and case markers will tollerate a few special
# types of modifiers.
# Punctuation should normally not depend on a functional node. However,
# it is possible that a functional node such as auxiliary verb is in
# quotation marks or brackets ("must") and then these symbols should depend
# on the functional node. We temporarily allow punctuation here, until we
# can detect precisely the bracket situation and disallow the rest.
# According to the guidelines
# (https://universaldependencies.org/u/overview/syntax.html#function-word-modifiers),
# mark can have a limited set of adverbial/oblique dependents, while the same
# is not allowed for nodes attached as case. Nevertheless, there are valid
# objections against this (see https://github.com/UniversalDependencies/docs/issues/618)
# and we may want to revisit the guideline in UD v3. For the time being,
# we make the validator more benevolent to 'case' too. (If we now force people
# to attach adverbials higher, information will be lost and later reversal
# of the step will not be possible.)
# Coordinating conjunctions usually depend on a non-first conjunct, i.e.,
# on a node whose deprel is 'conj'. However, there are paired conjunctions
# such as "both-and", "either-or". Here the first part is attached to the
# first conjunct. Since some function nodes (mark, case, aux, cop) can be
# coordinated, we must allow 'cc' children under these nodes, too. However,
# we do not want to allow 'cc' under another 'cc'. (Still, 'cc' can have
# a 'conj' dependent. In "and/or", "or" will depend on "and" as 'conj'.)
if re.match(r"^(mark|case)$", pdeprel) and not re.match(r"^(advmod|obl|goeswith|fixed|reparandum|conj|cc|punct)$", cdeprel):
testid = 'leaf-mark-case'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
###!!! The pdeprel regex in the following test should probably include "det".
###!!! I forgot to add it well in advance of release 2.4, so I am leaving it
###!!! out for now, so that people don't have to deal with additional load
###!!! of errors.
if re.match(r"^(aux|cop)$", pdeprel) and not re.match(r"^(goeswith|fixed|reparandum|conj|cc|punct)$", cdeprel):
testid = 'leaf-aux-cop'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
if re.match(r"^(cc)$", pdeprel) and not re.match(r"^(goeswith|fixed|reparandum|conj|punct)$", cdeprel):
testid = 'leaf-cc'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
# Fixed expressions should not be nested, i.e., no chains of fixed relations.
# As they are supposed to represent functional elements, they should not have
# other dependents either, with the possible exception of conj.
###!!! We also allow a punct child, at least temporarily, because of fixed
###!!! expressions that have a hyphen in the middle (e.g. Russian "вперед-назад").
###!!! It would be better to keep these expressions as one token. But sometimes
###!!! the tokenizer is out of control of the UD data providers and it is not
###!!! practical to retokenize.
elif pdeprel == 'fixed' and not re.match(r"^(goeswith|reparandum|conj|punct)$", cdeprel):
testid = 'leaf-fixed'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
# Goeswith cannot have any children, not even another goeswith.
elif pdeprel == 'goeswith':
testid = 'leaf-goeswith'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
# Punctuation can exceptionally have other punct children if an exclamation
# mark is in brackets or quotes. It cannot have other children.
elif pdeprel == 'punct' and cdeprel != 'punct':
testid = 'leaf-punct'
testmessage = "'%s' not expected to have children (%s:%s:%s --> %s:%s:%s)" % (pdeprel, idparent, tree['nodes'][idparent][FORM], pdeprel, idchild, tree['nodes'][idchild][FORM], cdeprel)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][idchild])
def collect_ancestors(id, tree, ancestors):
"""
Usage: ancestors = collect_ancestors(nodeid, nodes, [])
"""
pid = int(tree['nodes'][int(id)][HEAD])
if pid == 0:
ancestors.append(0)
return ancestors
if pid in ancestors:
# Cycle has been reported on level 2. But we must jump out of it now.
return ancestors
ancestors.append(pid)
return collect_ancestors(pid, tree, ancestors)
def get_caused_nonprojectivities(id, tree):
"""
Checks whether a node is in a gap of a nonprojective edge. Report true only
if the node's parent is not in the same gap. (We use this function to check
that a punctuation node does not cause nonprojectivity. But if it has been
dragged to the gap with a larger subtree, then we do not blame it.)
tree ... dictionary:
nodes ... array of word lines, i.e., lists of columns; mwt and empty nodes are skipped, indices equal to ids (nodes[0] is empty)
children ... array of sets of children indices (numbers, not strings); indices to this array equal to ids (children[0] are the children of the root)
linenos ... array of line numbers in the file, corresponding to nodes (needed in error messages)
"""
iid = int(id) # just to be sure
# We need to find all nodes that are not ancestors of this node and lie
# on other side of this node than their parent. First get the set of
# ancestors.
ancestors = collect_ancestors(iid, tree, [])
maxid = len(tree['nodes']) - 1
# Get the lists of nodes to either side of id.
# Do not look beyond the parent (if it is in the same gap, it is the parent's responsibility).
pid = int(tree['nodes'][iid][HEAD])
if pid < iid:
left = range(pid + 1, iid) # ranges are open from the right (i.e. iid-1 is the last number)
right = range(iid + 1, maxid + 1)
else:
left = range(1, iid)
right = range(iid + 1, pid)
# Exclude nodes whose parents are ancestors of id.
sancestors = set(ancestors)
leftna = [x for x in left if int(tree['nodes'][x][HEAD]) not in sancestors]
rightna = [x for x in right if int(tree['nodes'][x][HEAD]) not in sancestors]
leftcross = [x for x in leftna if int(tree['nodes'][x][HEAD]) > iid]
rightcross = [x for x in rightna if int(tree['nodes'][x][HEAD]) < iid]
# Once again, exclude nonprojectivities that are caused by ancestors of id.
if pid < iid:
rightcross = [x for x in rightcross if int(tree['nodes'][x][HEAD]) > pid]
else:
leftcross = [x for x in leftcross if int(tree['nodes'][x][HEAD]) < pid]
# Do not return just a boolean value. Return the nonprojective nodes so we can report them.
return sorted(leftcross + rightcross)
def get_gap(id, tree):
iid = int(id) # just to be sure
pid = int(tree['nodes'][iid][HEAD])
if iid < pid:
rangebetween = range(iid + 1, pid)
else:
rangebetween = range(pid + 1, iid)
gap = set()
if rangebetween:
projection = set()
get_projection(pid, tree, projection)
gap = set(rangebetween) - projection
return gap
def validate_goeswith_span(id, tree):
"""
The relation 'goeswith' is used to connect word parts that are separated
by whitespace and should be one word instead. We assume that the relation
goes left-to-right, which is checked elsewhere. Here we check that the
nodes really were separated by whitespace. If there is another node in the
middle, it must be also attached via 'goeswith'. The parameter id refers to
the node whose goeswith children we test.
"""
testlevel = 3
testclass = 'Syntax'
gwchildren = sorted([x for x in tree['children'][id] if lspec2ud(tree['nodes'][x][DEPREL]) == 'goeswith'])
if gwchildren:
gwlist = sorted([id] + gwchildren)
gwrange = list(range(id, int(tree['nodes'][gwchildren[-1]][ID]) + 1))
# All nodes between me and my last goeswith child should be goeswith too.
if gwlist != gwrange:
testid = 'goeswith-gap'
testmessage = "Violation of guidelines: gaps in goeswith group %s != %s." % (str(gwlist), str(gwrange))
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
# Non-last node in a goeswith range must have a space after itself.
nospaceafter = [x for x in gwlist[:-1] if 'SpaceAfter=No' in tree['nodes'][x][MISC].split('|')]
if nospaceafter:
testid = 'goeswith-nospace'
testmessage = "'goeswith' cannot connect nodes that are not separated by whitespace"
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_fixed_span(id, tree):
"""
Like with goeswith, the fixed relation should not in general skip words that
are not part of the fixed expression. Unlike goeswith however, there can be
an intervening punctuation symbol.
Update 2019-04-13: The rule that fixed expressions cannot be discontiguous
has been challenged with examples from Swedish and Coptic, see
https://github.com/UniversalDependencies/docs/issues/623
For the moment, I am turning this test off. In the future, we should
distinguish fatal errors from warnings and then this test will perhaps be
just a warning.
"""
return ###!!! temporarily turned off
fxchildren = sorted([i for i in tree['children'][id] if lspec2ud(tree['nodes'][i][DEPREL]) == 'fixed'])
if fxchildren:
fxlist = sorted([id] + fxchildren)
fxrange = list(range(id, int(tree['nodes'][fxchildren[-1]][ID]) + 1))
# All nodes between me and my last fixed child should be either fixed or punct.
fxdiff = set(fxrange) - set(fxlist)
fxgap = [i for i in fxdiff if lspec2ud(tree['nodes'][i][DEPREL]) != 'punct']
if fxgap:
testlevel = 3
testclass = 'Syntax'
testid = 'fixed-gap'
testmessage = "Gaps in fixed expression %s" % str(fxlist)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_projective_punctuation(id, tree):
"""
Punctuation is not supposed to cause nonprojectivity or to be attached
nonprojectively.
"""
testlevel = 3
testclass = 'Syntax'
# This is a level 3 test, we will check only the universal part of the relation.
deprel = lspec2ud(tree['nodes'][id][DEPREL])
if deprel == 'punct':
nonprojnodes = get_caused_nonprojectivities(id, tree)
if nonprojnodes:
testid = 'punct-causes-nonproj'
testmessage = "Punctuation must not cause non-projectivity of nodes %s" % nonprojnodes
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
gap = get_gap(id, tree)
if gap:
testid = 'punct-is-nonproj'
testmessage = "Punctuation must not be attached non-projectively over nodes %s" % sorted(gap)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=tree['linenos'][id])
def validate_annotation(tree):
"""
Checks universally valid consequences of the annotation guidelines.
"""
for node in tree['nodes']:
id = int(node[ID])
validate_upos_vs_deprel(id, tree)
validate_left_to_right_relations(id, tree)
validate_single_subject(id, tree)
validate_orphan(id, tree)
validate_functional_leaves(id, tree)
validate_fixed_span(id, tree)
validate_goeswith_span(id, tree)
validate_projective_punctuation(id, tree)
def validate_enhanced_annotation(graph):
"""
Checks universally valid consequences of the annotation guidelines in the
enhanced representation. Currently tests only phenomena specific to the
enhanced dependencies; however, we should also test things that are
required in the basic dependencies (such as left-to-right coordination),
unless it is obvious that in enhanced dependencies such things are legal.
"""
testlevel = 3
testclass = 'Enhanced'
# Enhanced dependencies should not contain the orphan relation.
# However, all types of enhancements are optional and orphans are excluded
# only if this treebank addresses gapping. We do not know it until we see
# the first empty node.
global line_of_first_empty_node
global line_of_first_enhanced_orphan
for id in graph.keys():
if is_empty_node(graph[id]['cols']):
if not line_of_first_empty_node:
###!!! This may not be exactly the first occurrence because the ids (keys) are not sorted.
line_of_first_empty_node = graph[id]['lineno']
# Empty node itself is not an error. Report it only for the first time
# and only if an orphan occurred before it.
if line_of_first_enhanced_orphan:
testid = 'empty-node-after-eorphan'
testmessage = "Empty node means that we address gapping and there should be no orphans in the enhanced graph; but we saw one on line %s" % line_of_first_enhanced_orphan
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=graph[id]['lineno'])
udeprels = set([lspec2ud(d) for h, d in graph[id]['deps']])
if 'orphan' in udeprels:
if not line_of_first_enhanced_orphan:
###!!! This may not be exactly the first occurrence because the ids (keys) are not sorted.
line_of_first_enhanced_orphan = graph[id]['lineno']
# If we have seen an empty node, then the orphan is an error.
if line_of_first_empty_node:
testid = 'eorphan-after-empty-node'
testmessage = "'orphan' not allowed in enhanced graph because we saw an empty node on line %s" % line_of_first_empty_node
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=id, nodelineno=graph[id]['lineno'])
#==============================================================================
# Level 4 tests. Language-specific formal tests. Now we can check in which
# words spaces are permitted, and which Feature=Value pairs are defined.
#==============================================================================
def validate_whitespace(cols, tag_sets):
"""
Checks a single line for disallowed whitespace.
Here we assume that all language-independent whitespace-related tests have
already been done in validate_cols_level1(), so we only check for words
with spaces that are explicitly allowed in a given language.
"""
testlevel = 4
testclass = 'Format'
for col_idx in (FORM,LEMMA):
if col_idx >= len(cols):
break # this has been already reported in trees()
if whitespace_re.match(cols[col_idx]) is not None:
# Whitespace found - does it pass?
for regex in tag_sets[TOKENSWSPACE]:
if regex.fullmatch(cols[col_idx]):
break
else:
warn_on_missing_files.add('tokens_w_space')
testid = 'invalid-word-with-space'
testmessage = "'%s' in column %s is not on the list of exceptions allowed to contain whitespace (data/tokens_w_space.LANG files)." % (cols[col_idx], COLNAMES[col_idx])
warn(testmessage, testclass, testlevel=testlevel, testid=testid)
#==============================================================================
# Level 5 tests. Annotation content vs. the guidelines, language-specific.
#==============================================================================
def validate_auxiliary_verbs(cols, children, nodes, line, lang):
"""
Verifies that the UPOS tag AUX is used only with lemmas that are known to
act as auxiliary verbs or particles in the given language.
Parameters:
'cols' ....... columns of the head node
'children' ... list of ids
'nodes' ...... dictionary where we can translate the node id into its
CoNLL-U columns
'line' ....... line number of the node within the file
"""
if cols[UPOS] == 'AUX' and cols[LEMMA] != '_':
###!!! In the future, lists like this one will be read from a file.
auxdict = {
# ChrisManning 2019/04: Allow 'get' as aux for get passive construction. And 'ought'
'en': ['be', 'have', 'do', 'will', 'would', 'may', 'might', 'can', 'could', 'shall', 'should', 'must', 'get', 'ought'],
'af': ['is', 'wees', 'het', 'word', 'sal', 'wil', 'mag', 'durf', 'kan', 'moet'],
# Gosse Bouma: 'krijgen' is used as passive auxiliary in cases where an indirect object is promoted to subject (as in German 'kriegen'-passiv).
'nl': ['zijn', 'hebben', 'worden', 'krijgen', 'kunnen', 'mogen', 'zullen', 'moeten'],
'de': ['sein', 'haben', 'werden', 'dürfen', 'können', 'mögen', 'wollen', 'sollen', 'müssen'],
'sv': ['vara', 'ha', 'bli', 'komma', 'få', 'kunna', 'kunde', 'vilja', 'torde', 'behöva', 'böra', 'skola', 'måste', 'må', 'lär', 'do'], # Note: 'do' is English and is included because of code switching (titles of songs).
'no': ['være', 'vere', 'ha', 'verte', 'bli', 'få', 'kunne', 'ville', 'vilje', 'tørre', 'tore', 'burde', 'skulle', 'måtte'],
'da': ['være', 'have', 'blive', 'kunne', 'ville', 'turde', 'burde', 'skulle', 'måtte'],
'fo': ['vera', 'hava', 'verða', 'koma', 'fara', 'kunna'],
'is': ['vera', 'hafa', 'verða', 'geta', 'mega', 'munu', 'skulu', 'eiga'],
'got': ['wisan'],
# DZ: The Portuguese list is much longer than for the other Romance languages
# and I suspect that maybe not all these verbs are auxiliary in the UD sense,
# i.e. they neither construct a periphrastic tense, nor modality etc.
# This should be discussed further and perhaps shortened (and in any
# case, verbs that stay on the list must be explained in the Portuguese
# documentation!)
'pt': ['ser', 'estar', 'haver', 'ter', 'andar', 'ir', 'poder', 'dever', 'continuar', 'passar', 'ameaçar',
'recomeçar', 'ficar', 'começar', 'voltar', 'parecer', 'acabar', 'deixar', 'vir','chegar', 'costumar', 'quer',
'querer','parar','procurar','interpretar','tender', 'viver','permitir','agredir','tornar', 'interpelar'],
'gl': ['ser', 'estar', 'haber', 'ter', 'ir', 'poder', 'querer', 'deber', 'vir', 'semellar', 'seguir', 'deixar', 'quedar', 'levar', 'acabar'],
'es': ['ser', 'estar', 'haber', 'tener', 'ir', 'poder', 'saber', 'querer', 'deber'],
'ca': ['ser', 'estar', 'haver', 'anar', 'poder', 'saber'],
'fr': ['être', 'avoir', 'faire', 'aller', 'pouvoir', 'savoir', 'vouloir', 'devoir'],
'it': ['essere', 'stare', 'avere', 'fare', 'andare', 'venire', 'potere', 'sapere', 'volere', 'dovere'],
'ro': ['fi', 'avea', 'putea', 'ști', 'vrea', 'trebui'],
#In Late Latin, also habeo appears as an auxiliary (like in the modern Romance languages), whereas it can happen a confusion between some forms of sum and fio (originally "to be made")
'la': ['sum','habeo','fio'],
'cs': ['být', 'bývat', 'bývávat'],
'sk': ['byť', 'bývať', 'by'],
'hsb': ['być'],
# zostać is for passive-action, być for passive-state
# niech* are imperative markers (the only means in 3rd person; alternating with morphological imperative in 2nd person)
# "to" is a copula and the Polish team insists that, "according to current analyses of Polish", it is a verb and it contributes the present tense feature to the predicate
'pl': ['być', 'bywać', 'by', 'zostać', 'zostawać', 'niech', 'niechby', 'niechże', 'niechaj', 'niechajże', 'to'],
'uk': ['бути', 'бувати', 'би', 'б'],
'be': ['быць', 'б'],
'ru': ['быть', 'бы', 'б'],
# Hanne says that negation is fused with the verb in the present tense and
# then the negative lemma is used. DZ: I believe that in the future
# the negative forms should get the affirmative lemma + the feature Polarity=Neg,
# as it is assumed in the guidelines and done in other languages.
'orv': ['быти', 'не быти', 'бы', 'бъ'],
'sl': ['biti'],
'hr': ['biti', 'htjeti'],
'sr': ['biti', 'hteti'],
'bg': ['съм', 'бъда', 'бивам', 'би', 'да', 'ще'],
'cu': ['бꙑти', 'не.бꙑти'],
'lt': ['būti'],
'lv': ['būt', 'kļūt', 'tikt', 'tapt'], # see the comment in the list of copulas
'ga': ['is'],
'gd': ['is'],
'cy': ['bod', 'yn', 'wedi', 'newydd', 'heb', 'ar', 'y', 'a', 'mi', 'fe', 'am'],
'br': ['bezañ'],
'sq': ['kam', 'jam', 'u'],
'grc': ['εἰμί'],
'el': ['είμαι', 'έχω', 'πρέπει', 'θα', 'ας', 'να'],
'hy': ['եմ', 'լինել', 'տալ', 'պիտի', 'պետք', 'ունեմ', 'կամ'],
'kmr': ['bûn', 'hebûn'],
'fa': ['است'],
# Two writing systems are used in Sanskrit treebanks (Devanagari and Latin) and we must list both spellings.
'sa': ['अस्', 'as', 'भू', 'bhū', 'इ', 'i', 'कृ', 'kṛ', 'शक्', 'śak'],
'hi': ['है', 'था', 'रह', 'कर', 'जा', 'सक', 'पा', 'चाहिए', 'हो', 'पड़', 'लग', 'चुक', 'ले', 'दे', 'डाल', 'बैठ', 'उठ', 'रख', 'आ'],
'ur': ['ہے', 'تھا', 'رہ', 'کر', 'جا', 'سک', 'پا', 'چاہیئے', 'ہو', 'پڑ', 'لگ', 'چک', 'لے', 'دے', 'بیٹھ', 'رکھ', 'آ'],
# The Bhojpuri list is suspiciously long. Some words may actually be inflected forms of other words.
'bho': ['हऽ', 'आ', 'स', 'बा', 'छी', 'भा', 'ना', 'गइल', 'रह', 'कर', 'जा', 'सक', 'पा', 'चाही', 'हो', 'पड़', 'लग', 'चुक', 'ले', 'दे', 'मार', 'डाल', 'बैठ', 'उठ', 'रख'],
'mr': ['असणे', 'नाही', 'नका', 'होणे', 'शकणे', 'लागणे', 'देणे', 'येणे'],
# Uralic languages.
'fi': ['olla', 'ei', 'voida', 'pitää', 'saattaa', 'täytyä', 'joutua', 'aikoa', 'taitaa', 'tarvita', 'mahtaa'],
'krl': ['olla', 'ei', 'voija', 'piteä'],
'olo': ['olla', 'ei', 'voija', 'pidiä', 'suaha', 'rotie'],
'et': ['olema', 'ei', 'ära', 'võima', 'pidama', 'saama', 'näima', 'paistma', 'tunduma', 'tohtima'],
'sme': ['leat'],
# Jack: i-gõl = should not
'sms': ['leeʹd', 'haaʹleed', 'ij', 'ni', 'õlggâd', 'urččmõš', 'iʹlla', 'i-ǥõl', 'feʹrttjed', 'pâʹstted'],
# Jack: copulas 'улемс', 'ульнемс', 'оль', 'арась'; negation а аволь апак иля эзь 'аш'
# "have to, need to, must": савомс савкшномс эрявомс
# "future; begin, start": кармамс
# "question particles": ли штоли
# mood: давайте давай бу кадык
# сашендовомс = have to
# 'аш' = does not exist
'myv': ['улемс', 'ульнемс', 'оль', 'арась', 'а', 'аволь', 'апак', 'иля', 'эзь', 'савомс', 'савкшномс', 'эрявомс', 'кармамс', 'ли', 'штоли', 'давайте', 'давай', 'бу', 'кадык'],
'mdf': ['улемс', 'оль', 'ашезь', 'аф', 'афи', 'афоль', 'апак', 'аш', 'эрявомс', 'савомс', 'сашендовомс', 'катк'],
# 'оз' is the negation verb analogous to Finnish 'ei'.
# Jack: абу 'exists not' in kpv with a usual deprel of aux:neg needs to be listed among the kpv AUX.
# 'быть' is Russian copula and it is occasionally used in spoken Komi due to code switching.
'kpv': ['лоны', 'лолыны', 'овлывлыны', 'вӧвны', 'вӧвлыны', 'вӧвлывлыны', 'оз', 'абу', 'быть', 'эм'],
# Jack: вермыны 'be able', позьны 'be possible/allowed', ковны 'must'
# овлыны 'to be (habitual)'; 'не' negation from Russian
'koi': ['овны', 'овлыны', 'овлывлыны', 'вӧвны', 'бы', 'вермыны', 'ковны', 'позьны', 'оз', 'не', 'эм'],
'hu': ['van', 'lesz', 'fog', 'volna', 'lehet', 'marad', 'elszenved', 'hoz'],
# Altaic languages.
'tr': ['ol', 'i', 'mi', 'değil', 'bil', 'olacak', 'olduk', 'bulun'],
'kk': ['бол', 'е'],
'ug': ['بول', 'ئى', 'كەت', 'بەر'],
'bxr': ['бай', 'боло'],
'ko': ['이+라는'],
'ja': ['だ', 'た', 'ようだ', 'たい', 'いる', 'ない', 'なる', 'する', 'ある', 'おる', 'ます', 'れる', 'られる', 'すぎる', 'める', 'できる', 'しまう', 'せる', 'う', 'いく', '行く', '来る', 'ぬ', 'よう', 'くる', 'くれる', 'てる', 'そう', 'べし', 'くださる', 'もらう', 'みる', 'いただく', 'やすい', 'しれる', '始める', '続ける', 'らしい', 'みたい', 'ちゃう', 'える', 'いい', 'す', 'もらえる', 'させる', 'おく', 'いただける', 'ほしい', 'よい', 'なり', '付ける', 'にくい', '出す', 'いたす', 'っつう', 'きれる', 'でる', '切る', 'たり', 'いける', '易い', 'づらい', 'なさる', 'づける', '難い', '致す', '続く', '渡る', '抜く', '合う', 'がましい', '遅れる', '果てる', 'つくす', 'ごとし', 'がたい', 'ゆく', 'まじ', 'きる', 'や', 'いらっしゃる', 'はじめる', 'つづける', '行ける', '終わる', '終える', '損ねる', '慣れる', '忘れる', '尽くす', 'わたる', 'みたく', 'まいる', 'たがる', 'しめる', 'かかる', 'おける', '込む', '置く', '直す', '回る', '参る', 'らる', 'やる', 'まう', 'まい', 'ぬく', 'とく', 'てく', 'だす', 'じゃ', 'む', 'り', '亘る', 'ず'],
# Dravidian languages.
# போ / po “go” for future tense, follows the infinitive of the main verb
# மாட்டு / māṭṭu “will not” for negative future tense with human subject
# படு / paṭu “experience” for the passive voice
# வை / vai “put” for the causative voice
# இரு / iru “be”
# இல் / il (இல்லை / illai) “not be” for negation
# வேண்டு / veṇṭu “must”
# முடி / muṭi “can”
'ta': ['போ', 'மாட்டு', 'படு', 'வை', 'இரு', 'இல்', 'வேண்டு', 'முயல்', 'கொள்', 'விடு', 'உள்', 'வரு', 'முடி', 'வா', 'செய்', 'ஆகு', 'கூடு', 'பெறு', 'தகு', 'வரல்', 'பிடு', 'வீடு', 'என்', 'கூறு', 'கூறு', 'கொடு', 'ஆவர்', 'விரி', 'கிடை', 'அல்'],
# Northeast Caucasian languages.
'lez': ['x̂ana', "k'an"],
# Sino-Tibetan languages.
# 爲, cop 儀 Nec 可 Pot 宜 Nec 得 Pot 敢 Des 欲 Des 肯 Des 能 Pot 足 Pot 須 Nec 被 Pass 見 Pass
'lzh': ['爲', '被', '見', '儀', '宜', '須', '可', '得', '能', '足', '敢', '欲', '肯'],
'zh': ['是', '为', '為'],
'yue': ['係', '為'],
'lus': ['nii'],
'prx': ['in', 'd̪uk'],
# Austro-Asiatic languages.
'vi': ['là'],
# Austronesian languages.
'id': ['adalah'],
'tl': ['may', 'kaya', 'sana', 'huwag'],
'ifb': ['agguy', 'adi', 'gun', "'ahi"],
# Australian languages: Pama-Nyungan.
'wbp': ['ka'],
'zmu': ['yi'],
# Afro-Asiatic languages.
'mt': ['kien', 'għad', 'għadx', 'ġa', 'se', 'ħa', 'qed'],
# رُبَّمَا rubbamā "maybe, perhaps" is a modal auxiliary
# عَلَّ ʿalla "perhaps" is a modal auxiliary
# عَاد ʿād “return, no longer do” seems to be an aspectual auxiliary
# مَا mā "not" is negation. Maybe it should be PART/advmod rather than AUX/aux?
# هَل hal "whether" is a question particle. Maybe it should be PART/advmod rather than AUX/aux?
# أ ʾa "whether, indeed" is a question particle. It occurs together with the negative copula: "أليس" (ʾalays) "isn't it...". Maybe it should be PART/advmod rather than AUX/aux?
'ar': [
'كَان',
'لَيس',
'لسنا',
'هُوَ',
'سَوفَ',
'سَ',
'قَد',
'رُبَّمَا',
'عَلَّ',
'عَاد',
'مَا',
'هَل',
'أَ'
],
'he': ['היה', 'הוא', 'זה'],
'aii': ['ܗܵܘܹܐ', 'ܟܸܐ', 'ܟܹܐ', 'ܟܲܕ', 'ܒܸܬ', 'ܒܹܬ', 'ܒܸܕ', 'ܒ', 'ܦܵܝܫ', 'ܡܵܨܸܢ', 'ܩܲܡ'],
# https://universaldependencies.org/cop/auxiliaries.html (as per mail from Amir 19.11.2019)
# https://universaldependencies.org/cop/dep/aux_.html
# existential elements ⲟⲩⲛ/ⲙⲛ in indefinite durative tenses (but not in pure existential clauses)
# 29.5.2020: added ϫⲡⲓ ‘jpi’: it means and is about as frequent as English ‘ought to’. It has the same syntax as other existing auxiliary verbs, such as ϣ ‘š’, “be able to”.
'cop': ['ⲟⲩⲛ', 'ⲙⲛ', 'ⲙⲛⲧⲉ', 'ϣⲁⲣⲉ', 'ϣⲁ', 'ⲙⲉⲣⲉ', 'ⲙⲉ', 'ⲁ', 'ⲙⲡⲉ', 'ⲙⲡ', 'ⲛⲉⲣⲉ', 'ⲛⲉ', 'ⲛⲁ', 'ⲛⲧⲉ', 'ⲧⲁⲣⲉ', 'ⲧⲁⲣ', 'ϣⲁⲛⲧⲉ', 'ⲙⲡⲁⲧⲉ', 'ⲛⲧⲉⲣⲉ', 'ⲉⲣϣⲁⲛ', 'ⲉϣ', 'ϣ', 'ϫⲡⲓ', 'ⲛⲉϣ', 'ⲉⲣⲉ', 'ⲛⲛⲉ', 'ⲙⲁⲣⲉ', 'ⲙⲡⲣⲧⲣⲉ'],
'gqa': ['ə', 'ni'],
'ha': ['ce', 'ne', 'ta', 'ba'],
# Nilo-Saharan languages.
'laj': ['bèdò', 'bìnò'],
# Mande languages.
'mxx': ['à', 'yè'],
# Niger-Congo languages.
# DZ: Wolof auxiliaries taken from the documentation.
'wo': ['di', 'a', 'da', 'la', 'na', 'bu', 'ngi', 'woon', 'avoir', 'être'], # Note: 'avoir' and 'être' are French and are included because of code switching.
'yo': ['jẹ́', 'ní', 'kí', 'kìí', 'ń', 'ti', 'tí', 'yóò', 'máa', 'á', 'a', 'ó', 'yió', 'ìbá', 'ì', 'bá', 'lè', 'gbọdọ̀', 'má', 'máà'],
'kfz': ['la'],
'bav': ['lùu'],
# Yuman languages.
'mov': ['iðu:m'],
# Tupian languages.
'gun': ['iko', "nda'ei", "nda'ipoi", 'ĩ'],
# Creole
'pcm': ['na', 'be', 'bin', 'can', 'cannot', 'con', 'could', 'dey', 'do', 'don', 'fit', 'for', 'gats', 'go', 'have', 'make', 'may', 'might', 'muna', 'must', 'never', 'shall', 'should', 'will', 'would']
}
if lang == 'shopen':
# 'desu', 'kudasai', 'yo' and 'sa' are romanized Japanese.
lspecauxs = ['desu', 'kudasai', 'yo', 'sa']
for ilang in auxdict:
ilspecauxs = auxdict[ilang]
lspecauxs = lspecauxs + ilspecauxs
else:
lspecauxs = auxdict.get(lang, None)
if not lspecauxs:
testlevel = 5
testclass = 'Morpho'
testid = 'aux-lemma'
testmessage = "'%s' is not an auxiliary verb in language [%s] (there are no known approved auxiliaries in this language)" % (cols[LEMMA], lang)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=cols[ID], nodelineno=line)
elif not cols[LEMMA] in lspecauxs:
testlevel = 5
testclass = 'Morpho'
testid = 'aux-lemma'
testmessage = "'%s' is not an auxiliary verb in language [%s]" % (cols[LEMMA], lang)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=cols[ID], nodelineno=line)
def validate_copula_lemmas(cols, children, nodes, line, lang):
"""
Verifies that the relation cop is used only with lemmas that are known to
act as copulas in the given language.
Parameters:
'cols' ....... columns of the head node
'children' ... list of ids
'nodes' ...... dictionary where we can translate the node id into its
CoNLL-U columns
'line' ....... line number of the node within the file
"""
if cols[DEPREL] == 'cop' and cols[LEMMA] != '_':
###!!! In the future, lists like this one will be read from a file.
# The UD guidelines narrow down the class of copulas to just the equivalent of "to be" (equivalence).
# Other verbs that may be considered copulas by the traditional grammar (such as the equivalents of
# "to become" or "to seem") are not copulas in UD; they head the nominal predicate, which is their xcomp.
# Existential "to be" can be copula only if it is the same verb as in equivalence ("John is a teacher").
# If the language uses two different verbs, then the existential one is not a copula.
# Besides AUX, the copula can also be a pronoun in some languages.
copdict = {
'en': ['be'],
'af': ['is', 'wees'],
'nl': ['zijn'],
'de': ['sein'],
'sv': ['vara'],
'no': ['være', 'vere'], # 'vere' is the Nynorsk variant
'da': ['være'],
'fo': ['vera'],
'is': ['vera'],
'got': ['wisan'],
'pcm': ['be', 'bin', 'can', 'con', 'dey', 'do', 'don', 'gats', 'go', 'must', 'na', 'shall', 'should', 'will' ],
# In Romance languages, both "ser" and "estar" qualify as copulas.
'pt': ['ser', 'estar'],
'gl': ['ser', 'estar'],
'es': ['ser', 'estar'],
'ca': ['ser', 'estar'],
'fr': ['être'],
'it': ['essere'],
'ro': ['fi'],
'la': ['sum'],
# In Slavic languages, the iteratives are still variants of "to be", although they have a different lemma (derived from the main one).
# In addition, Polish and Russian also have pronominal copulas ("to" = "this/that").
'cs': ['být', 'bývat', 'bývávat'],
'sk': ['byť', 'bývať'],
'hsb': ['być'],
'pl': ['być', 'bywać', 'to'],
'uk': ['бути', 'бувати'],
'be': ['быць', 'гэта'],
'ru': ['быть', 'это'],
# See above (AUX verbs) for the comment on affirmative vs. negative lemma.
'orv': ['быти', 'не быти'],
'sl': ['biti'],
'hr': ['biti'],
'sr': ['biti'],
'bg': ['съм', 'бъда'],
# See above (AUX verbs) for the comment on affirmative vs. negative lemma.
'cu': ['бꙑти', 'не.бꙑти'],
'lt': ['būti'],
# Lauma says that all four should be copulas despite the fact that
# kļūt and tapt correspond to English "to become", which is not
# copula in UD. See also the discussion in
# https://github.com/UniversalDependencies/docs/issues/622
'lv': ['būt', 'kļūt', 'tikt', 'tapt'],
'ga': ['is'],
'gd': ['is'],
'cy': ['bod'],
'br': ['bezañ'],
'sq': ['jam'],
'grc': ['εἰμί'],
'el': ['είμαι'],
'hy': ['եմ'],
'kmr': ['bûn'],
'fa': ['است'],
# Two writing systems are used in Sanskrit treebanks (Devanagari and Latin) and we must list both spellings.
'sa': ['अस्', 'as', 'भू', 'bhū'],
'hi': ['है', 'था'],
'ur': ['ہے', 'تھا'],
'bho': ['हऽ', 'बा', 'भा'],
'mr': ['असणे'],
'eu': ['izan', 'egon', 'ukan'],
# Uralic languages.
'fi': ['olla'],
'krl': ['olla'],
'olo': ['olla'],
'et': ['olema'],
'sme': ['leat'],
# Jack: iʹlla = to not be
'sms': ['leeʹd', 'iʹlla'],
# Jack says about Erzya:
# The copula is represented by the independent copulas ульнемс (preterit) and улемс (non-past),
# and the dependent morphology -оль (both preterit and non-past).
# The neg арась occurs in locative/existential negation, and its
# positive counterpart is realized in the three copulas above.
'myv': ['улемс', 'ульнемс', 'оль', 'арась'],
# The neg аш is locative/existential negation.
'mdf': ['улемс', 'оль', 'аш'],
# Niko says about Komi:
# Past tense copula is вӧвны, and in the future it is лоны, and both have a few frequentative forms.
# 'быть' is Russian copula and it is occasionally used in spoken Komi due to code switching.
'kpv': ['лоны', 'лолыны', 'овлывлыны', 'вӧвны', 'вӧвлыны', 'вӧвлывлыны', 'быть', 'эм'],
# Komi Permyak: овлыны = to be (habitual) [Jack Rueter]
'koi': ['овны', 'овлыны', 'овлывлыны', 'вӧвны', 'эм'],
'hu': ['van'],
# Altaic languages.
'tr': ['ol', 'i'],
'kk': ['бол', 'е'],
'ug': ['بول', 'ئى'],
'bxr': ['бай', 'боло'],
'ko': ['이+라는'],
'ja': ['だ'],
# Dravidian languages.
'ta': ['முயல்'],
# Northeast Caucasian languages.
'lez': ['x̂ana'],
# Sino-Tibetan languages.
# See https://github.com/UniversalDependencies/docs/issues/653 for a discussion about Chinese copulas.
# 是(shi4) and 为/為(wei2) should be interchangeable.
# Sam: In Cantonese, 為 is used only in the high-standard variety, not in colloquial speech.
'lzh': ['爲'],
'zh': ['是', '为', '為'],
'yue': ['係', '為'],
'lus': ['nii'],
'prx': ['in', 'd̪uk'],
# Austro-Asiatic languages.
'vi': ['là'],
# Austronesian languages.
'id': ['adalah'],
'tl': ['may'],
# Australian languages: Pama-Nyungan.
'zmu': ['yi'],
# Afro-Asiatic languages.
'mt': ['kien'],
'ar': ['كَان', 'لَيس', 'لسنا', 'هُوَ'],
'he': ['היה', 'הוא', 'זה'],
'aii': ['ܗܵܘܹܐ'],
'am': ['ን'],
'cop': ['ⲡⲉ', 'ⲡ'],
'ha': ['ce', 'ne'],
# Nilo-Saharan languages.
'laj': ['bèdò'],
# Mande languages.
'mxx': ['à', 'yè'],
# Niger-Congo languages.
'wo': ['di', 'la', 'ngi', 'être'], # 'être' is French and is needed because of code switching.
'yo': ['jẹ́', 'ní'],
'kfz': ['la'],
'bav': ['lùu'],
# Tupian languages.
# 'iko' is the normal copula, 'nda'ei' and 'nda'ipoi' are negative copulas and 'ĩ' is locative copula.
'gun': ['iko', "nda'ei", "nda'ipoi", 'ĩ']
}
if lang == 'shopen':
# 'desu' is romanized Japanese.
lspeccops = ['desu']
for ilang in copdict:
ilspeccops = copdict[ilang]
lspeccops = lspeccops + ilspeccops
else:
lspeccops = copdict.get(lang, None)
if not lspeccops:
testlevel = 5
testclass = 'Syntax'
testid = 'cop-lemma'
testmessage = "'%s' is not a copula in language [%s] (there are no known approved copulas in this language)" % (cols[LEMMA], lang)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=cols[ID], nodelineno=line)
elif not cols[LEMMA] in lspeccops:
testlevel = 5
testclass = 'Syntax'
testid = 'cop-lemma'
testmessage = "'%s' is not a copula in language [%s]" % (cols[LEMMA], lang)
warn(testmessage, testclass, testlevel=testlevel, testid=testid, nodeid=cols[ID], nodelineno=line)
def validate_lspec_annotation(tree, lang):
"""
Checks language-specific consequences of the annotation guidelines.
"""
###!!! Building the information about the tree is repeated and has been done in the other functions before.
###!!! We should remember the information and not build it several times!
global sentence_line # the line of the first token/word of the current tree (skipping comments!)
node_line = sentence_line - 1
lines = {} # node id -> line number of that node (for error messages)
nodes = {} # node id -> columns of that node
children = {} # node -> set of children
for cols in tree:
node_line += 1
if not is_word(cols):
continue
if HEAD >= len(cols):
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return
if cols[HEAD]=='_':
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return
try:
id_ = int(cols[ID])
except ValueError:
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return
try:
head = int(cols[HEAD])
except ValueError:
# This error has been reported on lower levels, do not report it here.
# Do not continue to check annotation if there are elementary flaws.
return
# Incrementally build the set of children of every node.
lines.setdefault(cols[ID], node_line)
nodes.setdefault(cols[ID], cols)
children.setdefault(cols[HEAD], set()).add(cols[ID])
for cols in tree:
if not is_word(cols):
continue
myline = lines.get(cols[ID], sentence_line)
mychildren = children.get(cols[ID], [])
validate_auxiliary_verbs(cols, mychildren, nodes, myline, lang)
validate_copula_lemmas(cols, mychildren, nodes, myline, lang)
#==============================================================================
# Main part.
#==============================================================================
def validate(inp, out, args, tag_sets, known_sent_ids):
global tree_counter
for comments, sentence in trees(inp, tag_sets, args):
tree_counter += 1
#the individual lines have been validated already in trees()
#here go tests which are done on the whole tree
validate_ID_sequence(sentence) # level 1
validate_token_ranges(sentence) # level 1
if args.level > 1:
validate_sent_id(comments, known_sent_ids, args.lang) # level 2
if args.check_tree_text:
validate_text_meta(comments, sentence) # level 2
validate_root(sentence) # level 2
validate_ID_references(sentence) # level 2
validate_deps(sentence) # level 2 and up
validate_misc(sentence) # level 2 and up
tree = build_tree(sentence) # level 2 test: tree is single-rooted, connected, cycle-free
egraph = build_egraph(sentence) # level 2 test: egraph is connected
if tree:
if args.level > 2:
validate_annotation(tree) # level 3
if args.level > 4:
validate_lspec_annotation(sentence, args.lang) # level 5
else:
testlevel = 2
testclass = 'Format'
testid = 'skipped-corrupt-tree'
testmessage = "Skipping annotation tests because of corrupt tree structure."
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
if egraph:
if args.level > 2:
validate_enhanced_annotation(egraph) # level 3
validate_newlines(inp) # level 1
def load_file(f_name):
res=set()
with io.open(f_name, 'r', encoding='utf-8') as f:
for line in f:
line=line.strip()
if not line or line.startswith('#'):
continue
res.add(line)
return res
def load_set(f_name_ud,f_name_langspec,validate_langspec=False,validate_enhanced=False):
"""
Loads a list of values from the two files, and returns their
set. If f_name_langspec doesn't exist, loads nothing and returns
None (ie this taglist is not checked for the given language). If f_name_langspec
is None, only loads the UD one. This is probably only useful for CPOS which doesn't
allow language-specific extensions. Set validate_langspec=True when loading basic dependencies.
That way the language specific deps will be checked to be truly extensions of UD ones.
Set validate_enhanced=True when loading enhanced dependencies. They will be checked to be
truly extensions of universal relations, too; but a more relaxed regular expression will
be checked because enhanced relations may contain stuff that is forbidden in the basic ones.
"""
res=load_file(os.path.join(THISDIR,"data",f_name_ud))
#Now res holds UD
#Next load and optionally check the langspec extensions
if f_name_langspec is not None and f_name_langspec!=f_name_ud:
path_langspec = os.path.join(THISDIR,"data",f_name_langspec)
if os.path.exists(path_langspec):
global curr_fname
curr_fname = path_langspec # so warn() does not fail on undefined curr_fname
l_spec=load_file(path_langspec)
for v in l_spec:
if validate_enhanced:
# We are reading the list of language-specific dependency relations in the enhanced representation
# (i.e., the DEPS column, not DEPREL). Make sure that they match the regular expression that
# restricts enhanced dependencies.
if not edeprel_re.match(v):
testlevel = 4
testclass = 'Enhanced'
testid = 'edeprel-def-regex'
testmessage = "Spurious language-specific enhanced relation '%s' - it does not match the regular expression that restricts enhanced relations." % v
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
continue
elif validate_langspec:
# We are reading the list of language-specific dependency relations in the basic representation
# (i.e., the DEPREL column, not DEPS). Make sure that they match the regular expression that
# restricts basic dependencies. (In particular, that they do not contain extensions allowed in
# enhanced dependencies, which should be listed in a separate file.)
if not re.match(r"^[a-z]+(:[a-z]+)?$", v):
testlevel = 4
testclass = 'Syntax'
testid = 'deprel-def-regex'
testmessage = "Spurious language-specific relation '%s' - in basic UD, it must match '^[a-z]+(:[a-z]+)?'." % v
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
continue
if validate_langspec or validate_enhanced:
try:
parts=v.split(':')
if parts[0] not in res and parts[0] != 'ref':
testlevel = 4
testclass = 'Syntax'
testid = 'deprel-def-universal-part'
testmessage = "Spurious language-specific relation '%s' - not an extension of any UD relation." % v
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
continue
except:
testlevel = 4
testclass = 'Syntax'
testid = 'deprel-def-universal-part'
testmessage = "Spurious language-specific relation '%s' - not an extension of any UD relation." % v
warn(testmessage, testclass, testlevel=testlevel, testid=testid, lineno=False)
continue
res.add(v)
return res
if __name__=="__main__":
opt_parser = argparse.ArgumentParser(description="CoNLL-U validation script")
io_group=opt_parser.add_argument_group("Input / output options")
io_group.add_argument('--quiet', dest="quiet", action="store_true", default=False, help='Do not print any error messages. Exit with 0 on pass, non-zero on fail.')
io_group.add_argument('--max-err', action="store", type=int, default=20, help='How many errors to output before exiting? 0 for all. Default: %(default)d.')
io_group.add_argument('input', nargs='*', help='Input file name(s), or "-" or nothing for standard input.')
#I don't think output makes much sense now that we allow multiple inputs, so it will default to /dev/stdout
#io_group.add_argument('output', nargs='', help='Output file name, or "-" or nothing for standard output.')
list_group=opt_parser.add_argument_group("Tag sets","Options relevant to checking tag sets.")
list_group.add_argument("--lang", action="store", required=True, default=None, help="Which langauge are we checking? If you specify this (as a two-letter code), the tags will be checked using the language-specific files in the data/ directory of the validator. It's also possible to use 'ud' for checking compliance with purely ud.")
tree_group=opt_parser.add_argument_group("Tree constraints","Options for checking the validity of the tree.")
tree_group.add_argument("--level", action="store", type=int, default=5, dest="level", help="Level 1: Test only CoNLL-U backbone. Level 2: UD format. Level 3: UD contents. Level 4: Language-specific labels. Level 5: Language-specific contents.")
tree_group.add_argument("--multiple-roots", action="store_false", default=True, dest="single_root", help="Allow trees with several root words (single root required by default).")
meta_group=opt_parser.add_argument_group("Metadata constraints","Options for checking the validity of tree metadata.")
meta_group.add_argument("--no-tree-text", action="store_false", default=True, dest="check_tree_text", help="Do not test tree text. For internal use only, this test is required and on by default.")
meta_group.add_argument("--no-space-after", action="store_false", default=True, dest="check_space_after", help="Do not test presence of SpaceAfter=No.")
args = opt_parser.parse_args() #Parsed command-line arguments
error_counter={} # Incremented by warn() {key: error type value: its count}
tree_counter=0
# Level of validation
if args.level < 1:
print('Option --level must not be less than 1; changing from %d to 1' % args.level, file=sys.stderr)
args.level = 1
# No language-specific tests for levels 1-3
# Anyways, any Feature=Value pair should be allowed at level 3 (because it may be language-specific),
# and any word form or lemma can contain spaces (because language-specific guidelines may allow it).
# We can also test language 'ud' on level 4; then it will require that no language-specific features are present.
if args.level < 4:
args.lang = 'ud'
tagsets={XPOS:None,UPOS:None,FEATS:None,DEPREL:None,DEPS:None,TOKENSWSPACE:None} #sets of tags for every column that needs to be checked, plus (in v2) other sets, like the allowed tokens with space
if args.lang:
tagsets[DEPREL]=load_set("deprel.ud","deprel."+args.lang,validate_langspec=True)
# All relations available in DEPREL are also allowed in DEPS.
# In addition, there might be relations that are only allowed in DEPS.
# One of them, "ref", is universal and we currently mention it directly
# in the code, although there is also a file "edeprel.ud".
tagsets[DEPS]=tagsets[DEPREL]|{"ref"}|load_set("deprel.ud","edeprel."+args.lang,validate_enhanced=True)
tagsets[FEATS]=load_set("feat_val.ud","feat_val."+args.lang)
tagsets[UPOS]=load_set("cpos.ud",None)
tagsets[TOKENSWSPACE]=load_set("tokens_w_space.ud","tokens_w_space."+args.lang)
tagsets[TOKENSWSPACE]=[re.compile(regex,re.U) for regex in tagsets[TOKENSWSPACE]] #...turn into compiled regular expressions
out=sys.stdout # hard-coding - does this ever need to be anything else?
try:
known_sent_ids=set()
open_files=[]
if args.input==[]:
args.input.append('-')
for fname in args.input:
if fname=='-':
# Set PYTHONIOENCODING=utf-8 before starting Python. See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONIOENCODING
# Otherwise ANSI will be read in Windows and locale-dependent encoding will be used elsewhere.
open_files.append(sys.stdin)
else:
open_files.append(io.open(fname, 'r', encoding='utf-8'))
for curr_fname,inp in zip(args.input,open_files):
validate(inp,out,args,tagsets,known_sent_ids)
except:
warn('Exception caught!', 'Format')
# If the output is used in an HTML page, it must be properly escaped
# because the traceback can contain e.g. "<module>". However, escaping
# is beyond the goal of validation, which can be also run in a console.
traceback.print_exc()
if not error_counter:
if not args.quiet:
print('*** PASSED ***', file=sys.stderr)
sys.exit(0)
else:
if not args.quiet:
for k,v in sorted(error_counter.items()):
print('%s errors: %d' %(k, v), file=sys.stderr)
print('*** FAILED *** with %d errors'%sum(v for k,v in iter(error_counter.items())), file=sys.stderr)
for f_name in sorted(warn_on_missing_files):
filepath = os.path.join(THISDIR, 'data', f_name+'.'+args.lang)
if not os.path.exists(filepath):
print('The language-specific file %s does not exist.'%filepath, file=sys.stderr)
sys.exit(1)
|