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
|
// Copyright (c) 2016 University of Helsinki
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
// See the file COPYING included with this distribution for more
// information.
// This is a swig interface file that is used to create python bindings for HFST.
// Everything will be visible under module 'libhfst', but will be wrapped under
// package 'hfst' and its subpackages 'hfst.exceptions' and 'hfst.rules' (see
// folder 'hfst' in the current directory).
%module libhfst
// Needed for type conversions between c++ and python.
%include "std_string.i"
%include "std_vector.i"
%include "std_pair.i"
%include "std_set.i"
%include "std_map.i"
%include "exception.i"
// We want warnings to be printed to standard error.
%init %{
hfst::set_warning_stream(&std::cerr);
%}
// Make swig aware of what hfst offers.
%{
#define HFSTIMPORT
#include "HfstDataTypes.h"
#include "HfstTransducer.h"
#include "HfstOutputStream.h"
#include "HfstInputStream.h"
#include "HfstExceptionDefs.h"
#include "HfstTokenizer.h"
#include "HfstFlagDiacritics.h"
#include "HfstXeroxRules.h"
#include "parsers/XreCompiler.h"
#include "parsers/LexcCompiler.h"
#include "parsers/XfstCompiler.h"
#include "parsers/SfstCompiler.h"
#include "implementations/HfstBasicTransition.h"
#include "implementations/HfstBasicTransducer.h"
#include "implementations/optimized-lookup/pmatch.h"
#include "implementations/optimized-lookup/pmatch_tokenize.h"
#include "parsers/TwolcCompiler.h"
namespace hfst { typedef std::vector<hfst::xeroxRules::Rule> HfstRuleVector; }
namespace hfst { typedef std::pair<hfst::HfstTransducer*,unsigned int> HfstTransducerUIntPair; }
// Most of C++ extension code is located in separate files.
#include "hfst_regex_extensions.cpp"
#include "hfst_extensions.cpp"
#include "hfst_lexc_extensions.cpp"
#include "hfst_xfst_extensions.cpp"
#include "hfst_pmatch_extensions.cpp"
#include "hfst_pmatch_tokenize_extensions.cpp"
#include "hfst_sfst_extensions.cpp"
#include "hfst_lookup_extensions.cpp"
#include "hfst_rules_extensions.cpp"
#include "hfst_prolog_extensions.cpp"
%}
#ifdef _MSC_VER
%include <windows.h>
#endif
// Templates needed for conversion between c++ and python datatypes.
//
// Note that templating order matters; simple templates used as part of
// more complex templates must be defined first, e.g. StringPair must be
// defined before StringPairSet. Also templates that are not used as such
// but are used as part of other templates must be defined.
%include "typemaps.i"
namespace std {
%template(StringVector) vector<string>;
%template(StringPair) pair<string, string>;
%template(StringPairVector) vector<pair<string, string > >;
%template(FloatVector) vector<float>;
%template(StringSet) set<string>;
%template(StringPairSet) set<pair<string, string> >;
%template(HfstTransducerVector) vector<hfst::HfstTransducer>;
%template(HfstSymbolSubstitutions) map<string, string>;
%template(HfstSymbolPairSubstitutions) map<pair<string, string>, pair<string, string> >;
// needed for HfstBasicTransducer.states()
%template(BarBazFoo) vector<unsigned int>;
%template(HfstBasicTransitions) vector<hfst::implementations::HfstBasicTransition>;
%template(HfstOneLevelPath) pair<float, vector<string> >;
%template(HfstOneLevelPaths) set<pair<float, vector<string> > >;
%template(HfstTwoLevelPath) pair<float, vector<pair<string, string > > >;
%template(HfstTwoLevelPaths) set<pair<float, vector<pair<string, string > > > >;
%template(HfstTransducerPair) pair<hfst::HfstTransducer, hfst::HfstTransducer>;
%template(HfstTransducerPairVector) vector<pair<hfst::HfstTransducer, hfst::HfstTransducer> >;
%template(HfstRuleVector) vector<hfst::xeroxRules::Rule>;
%template(HfstTransducerUIntPair) pair<hfst::HfstTransducer*,unsigned int>;
%template(LocationVector) vector<hfst_ol::Location>;
%template(LocationVectorVector) vector<vector<hfst_ol::Location> >;
}
%include "docstrings.i"
// ****************************************************** //
// ********** WHAT IS MADE AVAILABLE ON PYTHON ********** //
// ****************************************************** //
// *** HfstException and its subclasses (will be wrapped under module hfst.exceptions). *** //
class HfstException
{
public:
HfstException();
HfstException(const std::string&, const std::string&, size_t);
~HfstException();
std::string what() const;
};
class HfstTransducerTypeMismatchException : public HfstException { public: HfstTransducerTypeMismatchException(const std::string&, const std::string&, size_t); ~HfstTransducerTypeMismatchException(); std::string what() const; };
class ImplementationTypeNotAvailableException : public HfstException { public: ImplementationTypeNotAvailableException(const std::string&, const std::string&, size_t, hfst::ImplementationType type); ~ImplementationTypeNotAvailableException(); std::string what() const; hfst::ImplementationType get_type() const; };
class FunctionNotImplementedException : public HfstException { public: FunctionNotImplementedException(const std::string&, const std::string&, size_t); ~FunctionNotImplementedException(); std::string what() const; };
class StreamNotReadableException : public HfstException { public: StreamNotReadableException(const std::string&, const std::string&, size_t); ~StreamNotReadableException(); std::string what() const; };
class StreamCannotBeWrittenException : public HfstException { public: StreamCannotBeWrittenException(const std::string&, const std::string&, size_t); ~StreamCannotBeWrittenException(); std::string what() const; };
class StreamIsClosedException : public HfstException { public: StreamIsClosedException(const std::string&, const std::string&, size_t); ~StreamIsClosedException(); std::string what() const; };
class EndOfStreamException : public HfstException { public: EndOfStreamException(const std::string&, const std::string&, size_t); ~EndOfStreamException(); std::string what() const; };
class TransducerIsCyclicException : public HfstException { public: TransducerIsCyclicException(const std::string&, const std::string&, size_t); ~TransducerIsCyclicException(); std::string what() const; };
class NotTransducerStreamException : public HfstException { public: NotTransducerStreamException(const std::string&, const std::string&, size_t); ~NotTransducerStreamException(); std::string what() const; };
class NotValidAttFormatException : public HfstException { public: NotValidAttFormatException(const std::string&, const std::string&, size_t); ~NotValidAttFormatException(); std::string what() const; };
class NotValidPrologFormatException : public HfstException { public: NotValidPrologFormatException(const std::string&, const std::string&, size_t); ~NotValidPrologFormatException(); std::string what() const; };
class NotValidLexcFormatException : public HfstException { public: NotValidLexcFormatException(const std::string&, const std::string&, size_t); ~NotValidLexcFormatException(); std::string what() const; };
class StateIsNotFinalException : public HfstException { public: StateIsNotFinalException(const std::string&, const std::string&, size_t); ~StateIsNotFinalException(); std::string what() const; };
class ContextTransducersAreNotAutomataException : public HfstException { public: ContextTransducersAreNotAutomataException(const std::string&, const std::string&, size_t); ~ContextTransducersAreNotAutomataException(); std::string what() const; };
class TransducersAreNotAutomataException : public HfstException { public: TransducersAreNotAutomataException(const std::string&, const std::string&, size_t); ~TransducersAreNotAutomataException(); std::string what() const; };
class StateIndexOutOfBoundsException : public HfstException { public: StateIndexOutOfBoundsException(const std::string&, const std::string&, size_t); ~StateIndexOutOfBoundsException(); std::string what() const; };
class TransducerHeaderException : public HfstException { public: TransducerHeaderException(const std::string&, const std::string&, size_t); ~TransducerHeaderException(); std::string what() const; };
class MissingOpenFstInputSymbolTableException : public HfstException { public: MissingOpenFstInputSymbolTableException(const std::string&, const std::string&, size_t); ~MissingOpenFstInputSymbolTableException(); std::string what() const; };
class TransducerTypeMismatchException : public HfstException { public: TransducerTypeMismatchException(const std::string&, const std::string&, size_t); ~TransducerTypeMismatchException(); std::string what() const; };
class EmptySetOfContextsException : public HfstException { public: EmptySetOfContextsException(const std::string&, const std::string&, size_t); ~EmptySetOfContextsException(); std::string what() const; };
class SpecifiedTypeRequiredException : public HfstException { public: SpecifiedTypeRequiredException(const std::string&, const std::string&, size_t); ~SpecifiedTypeRequiredException(); std::string what() const; };
class HfstFatalException : public HfstException { public: HfstFatalException(const std::string&, const std::string&, size_t); ~HfstFatalException(); std::string what() const; };
class TransducerHasWrongTypeException : public HfstException { public: TransducerHasWrongTypeException(const std::string&, const std::string&, size_t); ~TransducerHasWrongTypeException(); std::string what() const; };
class IncorrectUtf8CodingException : public HfstException { public: IncorrectUtf8CodingException(const std::string&, const std::string&, size_t); ~IncorrectUtf8CodingException(); std::string what() const; };
class EmptyStringException : public HfstException { public: EmptyStringException(const std::string&, const std::string&, size_t); ~EmptyStringException(); std::string what() const; };
class SymbolNotFoundException : public HfstException { public: SymbolNotFoundException(const std::string&, const std::string&, size_t); ~SymbolNotFoundException(); std::string what() const; };
class MetadataException : public HfstException { public: MetadataException(const std::string&, const std::string&, size_t); ~MetadataException(); std::string what() const; };
class FlagDiacriticsAreNotIdentitiesException : public HfstException { public: FlagDiacriticsAreNotIdentitiesException(const std::string&, const std::string&, size_t); ~FlagDiacriticsAreNotIdentitiesException(); std::string what() const; };
namespace hfst_ol
{
struct Location
{
unsigned int start;
unsigned int length;
std::string input;
std::string output;
std::string tag;
float weight;
std::vector<size_t> input_parts; // indices in input_symbol_strings
std::vector<size_t> output_parts; // indices in output_symbol_strings
std::vector<std::string> input_symbol_strings;
std::vector<std::string> output_symbol_strings;
//bool operator<(Location rhs) const
//{ return this->weight < rhs.weight; }
};
typedef std::vector<hfst_ol::Location> LocationVector;
typedef std::vector<std::vector<hfst_ol::Location> > LocationVectorVector;
}
namespace hfst
{
// Needed for conversion between c++ and python datatypes.
typedef std::vector<std::string> StringVector;
typedef std::pair<std::string, std::string> StringPair;
typedef std::vector<std::pair<std::string, std::string> > StringPairVector;
typedef std::vector<float> FloatVector;
typedef std::set<std::string> StringSet;
typedef std::set<std::pair<std::string, std::string> > StringPairSet;
typedef std::pair<float, std::vector<std::string> > HfstOneLevelPath;
typedef std::set<std::pair<float, std::vector<std::string> > > HfstOneLevelPaths;
typedef std::pair<float, std::vector<std::pair<std::string, std::string > > > HfstTwoLevelPath;
typedef std::set<std::pair<float, std::vector<std::pair<std::string, std::string> > > > HfstTwoLevelPaths;
typedef std::map<std::string, std::string> HfstSymbolSubstitutions;
typedef std::map<std::pair<std::string, std::string>, std::pair<std::string, std::string> > HfstSymbolPairSubstitutions;
typedef std::vector<hfst::HfstTransducer> HfstTransducerVector;
typedef std::pair<hfst::HfstTransducer, hfst::HfstTransducer> HfstTransducerPair;
typedef std::vector<std::pair<hfst::HfstTransducer, hfst::HfstTransducer> > HfstTransducerPairVector;
typedef std::vector<hfst::xeroxRules::Rule> HfstRuleVector;
typedef std::pair<hfst::HfstTransducer*,unsigned int> HfstTransducerUIntPair;
// *** Some enumerations *** //
enum ImplementationType
{ SFST_TYPE, TROPICAL_OPENFST_TYPE, LOG_OPENFST_TYPE, FOMA_TYPE,
XFSM_TYPE, HFST_OL_TYPE, HFST_OLW_TYPE, HFST2_TYPE,
UNSPECIFIED_TYPE, ERROR_TYPE };
namespace xeroxRules
{
enum ReplaceType {REPL_UP, REPL_DOWN, REPL_RIGHT, REPL_LEFT};
class Rule
{
public:
Rule();
Rule(const hfst::HfstTransducerPairVector&);
Rule(const hfst::HfstTransducerPairVector&, const hfst::HfstTransducerPairVector&, ReplaceType);
Rule(const Rule&);
hfst::HfstTransducerPairVector get_mapping() const;
hfst::HfstTransducerPairVector get_context() const;
ReplaceType get_replType() const;
void encodeFlags();
// friend std::ostream& operator<<(std::ostream &out, const Rule &r);
};
// replace up, left, right, down
hfst::HfstTransducer replace(const Rule &rule, bool optional);
// for parallel rules
hfst::HfstTransducer replace(const HfstRuleVector &ruleVector, bool optional);
// replace up, left, right, down
%rename("xerox_replace_left") replace_left(const Rule &rule, bool optional);
hfst::HfstTransducer replace_left(const Rule &rule, bool optional);
// for parallel rules
%rename("xerox_replace_left") replace_left(const HfstRuleVector &ruleVector, bool optional);
hfst::HfstTransducer replace_left(const HfstRuleVector &ruleVector, bool optional);
// left to right
hfst::HfstTransducer replace_leftmost_longest_match(const Rule &rule);
// left to right
hfst::HfstTransducer replace_leftmost_longest_match(const HfstRuleVector &ruleVector);
// right to left
hfst::HfstTransducer replace_rightmost_longest_match(const Rule &rule);
// right to left
hfst::HfstTransducer replace_rightmost_longest_match(const HfstRuleVector &ruleVector);
hfst::HfstTransducer replace_leftmost_shortest_match(const Rule &rule);
hfst::HfstTransducer replace_leftmost_shortest_match(const HfstRuleVector &ruleVector);
hfst::HfstTransducer replace_rightmost_shortest_match(const Rule &rule);
hfst::HfstTransducer replace_rightmost_shortest_match(const HfstRuleVector &ruleVector);
// replace up, left, right, down
hfst::HfstTransducer replace_epenthesis(const Rule &rule, bool optional);
// replace up, left, right, down
hfst::HfstTransducer replace_epenthesis(const HfstRuleVector &ruleVector, bool optional);
// Restriction function "=>"
%rename("xerox_restriction") restriction(const hfst::HfstTransducer &automata, const hfst::HfstTransducerPairVector &context);
hfst::HfstTransducer restriction(const hfst::HfstTransducer &automata, const hfst::HfstTransducerPairVector &context);
hfst::HfstTransducer before(const hfst::HfstTransducer &left, const hfst::HfstTransducer &right);
hfst::HfstTransducer after(const hfst::HfstTransducer &left, const hfst::HfstTransducer &right);
}
// *** Some other functions *** //
bool is_diacritic(const std::string & symbol);
hfst::HfstTransducerVector compile_pmatch_expression(const std::string & pmatch) throw();
// internal functions
%pythoncode %{
def _is_string(s):
if isinstance(s, str):
return True
else:
return False
def _is_string_pair(sp):
if not isinstance(sp, tuple):
return False
if len(sp) != 2:
return False
if not _is_string(sp[0]):
return False
if not _is_string(sp[1]):
return False
return True
def _is_string_vector(sv):
if not isinstance(sv, tuple):
return False
for s in sv:
if not _is_string(s):
return False
return True
def _is_string_pair_vector(spv):
if not isinstance(spv, tuple):
return False
for sp in spv:
if not _is_string_pair(sp):
return False
return True
def _two_level_paths_to_dict(tlps):
retval = {}
for tlp in tlps:
input = ""
output = ""
for sp in tlp[1]:
input += sp[0]
output += sp[1]
if input in retval:
retval[input].append((output, tlp[0]))
else:
retval[input] = [(output, tlp[0])]
return retval
def _one_level_paths_to_tuple(olps):
retval = []
for olp in olps:
path = ""
for s in olp[1]:
path += s
retval.append((path, olp[0]))
return tuple(retval)
%}
// *** HfstTransducer *** //
// NOTE: all functions returning an HfstTransducer& are commented out and extended
// by replacing them with equivalent functions that return void. This is done in
// order to avoid use of references that are not handled well by swig/python.
// Some constructors and the destructor are also redefined.
class HfstTransducer
{
public:
void set_name(const std::string &name);
std::string get_name() const;
hfst::ImplementationType get_type() const;
void set_property(const std::string& property, const std::string& value);
std::string get_property(const std::string& property) const;
const std::map<std::string,std::string>& get_properties() const;
bool compare(const HfstTransducer&, bool harmonize=true) const throw();
unsigned int number_of_states() const;
unsigned int number_of_arcs() const;
StringSet get_alphabet() const;
bool is_cyclic() const;
bool is_automaton() const;
bool is_infinitely_ambiguous() const;
bool is_lookup_infinitely_ambiguous(const std::string &) const;
bool has_flag_diacritics() const;
void insert_to_alphabet(const std::string &);
void remove_from_alphabet(const std::string &);
static bool is_implementation_type_available(hfst::ImplementationType type);
int longest_path_size(bool obey_flags=true) const;
%extend {
// First versions of all functions returning an HfstTransducer& that return void instead:
void concatenate(const HfstTransducer& tr, bool harmonize=true) throw() { self->concatenate(tr, harmonize); }
void disjunct(const HfstTransducer& tr, bool harmonize=true) throw() { self->disjunct(tr, harmonize); }
void subtract(const HfstTransducer& tr, bool harmonize=true) throw() { self->subtract(tr, harmonize); }
void intersect(const HfstTransducer& tr, bool harmonize=true) throw() { self->intersect(tr, harmonize); }
void compose(const HfstTransducer& tr, bool harmonize=true) throw() { self->compose(tr, harmonize); }
void compose_intersect(const HfstTransducerVector &v, bool invert=false, bool harmonize=true) { self->compose_intersect(v, invert, harmonize); }
void priority_union(const HfstTransducer &another) { self->priority_union(another); }
void lenient_composition(const HfstTransducer &another, bool harmonize=true) { self->lenient_composition(another, harmonize); }
void cross_product(const HfstTransducer &another, bool harmonize=true) throw() { self->cross_product(another, harmonize); }
void shuffle(const HfstTransducer &another, bool harmonize=true) { self->shuffle(another, harmonize); }
void remove_epsilons() { self->remove_epsilons(); }
void determinize() { self->determinize(); }
void minimize() { self->minimize(); }
void prune() { self->prune(); }
void eliminate_flags() { self->eliminate_flags(); }
void eliminate_flag(const std::string& f) throw() { self->eliminate_flag(f); }
void n_best(unsigned int n) { self->n_best(n); }
void convert(ImplementationType impl) { self->convert(impl); }
void repeat_star() { self->repeat_star(); }
void repeat_plus() { self->repeat_plus(); }
void repeat_n(unsigned int n) { self->repeat_n(n); }
void repeat_n_to_k(unsigned int n, unsigned int k) { self->repeat_n_to_k(n, k); }
void repeat_n_minus(unsigned int n) { self->repeat_n_minus(n); }
void repeat_n_plus(unsigned int n) { self->repeat_n_plus(n); }
void invert() { self->invert(); }
void reverse() { self->reverse(); }
void input_project() { self->input_project(); }
void output_project() { self->output_project(); }
void optionalize() { self->optionalize(); }
void insert_freely(const StringPair &symbol_pair, bool harmonize=true) { self->insert_freely(symbol_pair, harmonize); }
void insert_freely(const HfstTransducer &tr, bool harmonize=true) { self->insert_freely(tr, harmonize); }
void _substitute_symbol(const std::string &old_symbol, const std::string &new_symbol, bool input_side=true, bool output_side=true) { self->substitute_symbol(old_symbol, new_symbol, input_side, output_side); }
void _substitute_symbol_pair(const StringPair &old_symbol_pair, const StringPair &new_symbol_pair) { self->substitute_symbol_pair(old_symbol_pair, new_symbol_pair); }
void _substitute_symbol_pair_with_set(const StringPair &old_symbol_pair, const hfst::StringPairSet &new_symbol_pair_set) { self->substitute_symbol_pair_with_set(old_symbol_pair, new_symbol_pair_set); }
void _substitute_symbol_pair_with_transducer(const StringPair &symbol_pair, HfstTransducer &transducer, bool harmonize=true) { self->substitute_symbol_pair_with_transducer(symbol_pair, transducer, harmonize); }
void _substitute_symbols(const hfst::HfstSymbolSubstitutions &substitutions) { self->substitute_symbols(substitutions); } // alias for the previous function which is shadowed
void _substitute_symbol_pairs(const hfst::HfstSymbolPairSubstitutions &substitutions) { self->substitute_symbol_pairs(substitutions); } // alias for the previous function which is shadowed
void set_final_weights(float weight, bool increment=false) { self->set_final_weights(weight, increment); };
void push_weights_to_start() { self->push_weights(hfst::TO_INITIAL_STATE); };
void push_weights_to_end() { self->push_weights(hfst::TO_FINAL_STATE); };
// And some aliases:
// 'union' is a reserved word in python, so it cannot be used as an alias for function 'disjunct'
void minus(const HfstTransducer& t, bool harmonize=true) { $self->subtract(t, harmonize); }
void conjunct(const HfstTransducer& t, bool harmonize=true) { $self->intersect(t, harmonize); }
// Then the actual extensions:
void lookup_optimize() { self->convert(hfst::HFST_OLW_TYPE); }
void remove_optimization() { self->convert(hfst::get_default_fst_type()); }
HfstTransducer() { return hfst::empty_transducer(); }
HfstTransducer(const hfst::HfstTransducer & t) { return hfst::copy_hfst_transducer(t); }
HfstTransducer(const hfst::implementations::HfstBasicTransducer & t) { return hfst::copy_hfst_transducer_from_basic_transducer(t); }
HfstTransducer(const hfst::implementations::HfstBasicTransducer & t, hfst::ImplementationType impl) { return hfst::copy_hfst_transducer_from_basic_transducer(t, impl); }
~HfstTransducer()
{
if ($self->get_type() == hfst::UNSPECIFIED_TYPE || $self->get_type() == hfst::ERROR_TYPE)
{
return;
}
delete $self;
}
// For python's 'print'
char *__str__() {
std::ostringstream oss;
hfst::implementations::HfstBasicTransducer fsm(*$self);
fsm.write_in_att_format(oss,true);
return strdup(oss.str().c_str());
}
void write(hfst::HfstOutputStream & os) { (void) os.redirect(*$self); }
hfst::HfstTwoLevelPaths _extract_shortest_paths()
{
hfst::HfstTwoLevelPaths results;
$self->extract_shortest_paths(results);
return results;
}
hfst::HfstTwoLevelPaths _extract_longest_paths(bool obey_flags)
{
hfst::HfstTwoLevelPaths results;
$self->extract_longest_paths(results, obey_flags);
return results;
}
hfst::HfstTwoLevelPaths _extract_paths(int max_num=-1, int cycles=-1) const throw()
{
hfst::HfstTwoLevelPaths results;
$self->extract_paths(results, max_num, cycles);
return results;
}
hfst::HfstTwoLevelPaths _extract_paths_fd(int max_num=-1, int cycles=-1, bool filter_fd=true) const throw()
{
hfst::HfstTwoLevelPaths results;
$self->extract_paths_fd(results, max_num, cycles, filter_fd);
return results;
}
hfst::HfstTwoLevelPaths _extract_random_paths(int max_num) const
{
hfst::HfstTwoLevelPaths results;
$self->extract_random_paths(results, max_num);
return results;
}
hfst::HfstTwoLevelPaths _extract_random_paths_fd(int max_num, bool filter_fd) const
{
hfst::HfstTwoLevelPaths results;
$self->extract_random_paths_fd(results, max_num, filter_fd);
return results;
}
HfstOneLevelPaths _lookup_vector(const StringVector& s, int limit = -1, double time_cutoff = 0.0) const throw()
{
return hfst::lookup_vector($self, false /*fd*/, s, limit, time_cutoff);
}
HfstOneLevelPaths _lookup_fd_vector(const StringVector& s, int limit = -1, double time_cutoff = 0.0) const throw()
{
return hfst::lookup_vector($self, true /*fd*/, s, limit, time_cutoff);
}
HfstOneLevelPaths _lookup_fd_string(const std::string& s, int limit = -1, double time_cutoff = 0.0) const throw()
{
return hfst::lookup_string($self, true /*fd*/, s, limit, time_cutoff);
}
HfstOneLevelPaths _lookup_string(const std::string & s, int limit = -1, double time_cutoff = 0.0) const throw()
{
return hfst::lookup_string($self, false /*fd*/, s, limit, time_cutoff);
}
%pythoncode %{
def copy(self):
"""
Return a deep copy of the transducer.
"""
return HfstTransducer(self)
def write_to_file(self, filename_):
"""
Write the transducer in binary format to file *filename_*.
"""
ostr = HfstOutputStream(filename=filename_, type=self.get_type(), hfst_format=True)
ostr.write(self)
ostr.close()
def read_from_file(filename_):
"""
Read a binary transducer from file *filename_*.
"""
istr = HfstInputStream(filename_)
tr = istr.read()
istr.close()
return tr
def write_prolog(self, f, write_weights=True):
"""
Write the transducer in prolog format with name *name* to file *f*,
*write_weights* defined whether weights are written.
Parameters
----------
* `f` :
A python file where the transducer is written.
* `write_weights` :
Whether weights are written.
"""
fsm = HfstBasicTransducer(self)
fsm.name = self.get_name()
prologstr = fsm.get_prolog_string(write_weights)
f.write(prologstr)
def write_xfst(self, f, write_weights=True):
"""
Write the transducer in xfst format to file *f*, *write_weights* defined whether
weights are written.
Parameters
----------
* `f` :
A python file where transducer is written.
* `write_weights` :
Whether weights are written.
"""
fsm = HfstBasicTransducer(self)
fsm.name = self.get_name()
xfststr = fsm.get_xfst_string(write_weights)
f.write(xfst)
def write_att(self, f, write_weights=True):
"""
Write the transducer in AT&T format to file *f*, *write_weights* defined whether
weights are written.
Parameters
----------
* `f` :
A python file where transducer is written.
* `write_weights` :
Whether weights are written.
"""
fsm = HfstBasicTransducer(self)
fsm.name = self.get_name()
attstr = fsm.get_att_string(write_weights)
f.write(attstr)
def lookup(self, input, **kwargs):
"""
Lookup string *input*.
Parameters
----------
* `input` :
The input. A string or a pre-tokenized tuple of symbols (i.e. a tuple of strings).
* `kwargs` :
Possible parameters and their default values are: obey_flags=True,
max_number=-1, time_cutoff=0.0, output='tuple'
* `obey_flags` :
Whether flag diacritics are obeyed. Always True for HFST_OL(W)_TYPE transducers.
* `max_number` :
Maximum number of results returned, defaults to -1, i.e. infinity.
* `time_cutoff` :
How long the function can search for results before returning, expressed in
seconds. Defaults to 0.0, i.e. infinitely. Always 0.0 for transducers that are
not of HFST_OL(W)_TYPE.
* `output` :
Possible values are 'tuple', 'text' and 'raw', 'tuple' being the default.
Note: This function has an efficient implementation only for optimized lookup format
(hfst.ImplementationType.HFST_OL_TYPE or hfst.ImplementationType.HFST_OLW_TYPE). Other formats perform the
lookup via composition. Consider converting the transducer to optimized lookup format
or to a HfstBasicTransducer. Conversion to HFST_OL(W)_TYPE might take a while but the
lookup is fast. Conversion to HfstBasicTransducer is quick but lookup is slower.
"""
obey_flags=True
max_number=-1
time_cutoff=0.0
output='tuple' # 'tuple' (default), 'text', 'raw'
for k,v in kwargs.items():
if k == 'obey_flags':
if v == True:
pass
elif v == False:
obey_flags=False
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are True and False.")
elif k == 'output':
if v == 'text':
output='text'
elif v == 'raw':
output='raw'
elif v == 'tuple':
output='tuple'
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are 'tuple' (default), 'text', 'raw'.")
elif k == 'max_number' :
max_number=v
elif k == 'time_cutoff' :
time_cutoff=v
else:
print('Warning: ignoring unknown argument %s.' % (k))
retval=0
if isinstance(input, tuple):
if obey_flags:
retval=self._lookup_fd_vector(input, max_number, time_cutoff)
else:
retval=self._lookup_vector(input, max_number, time_cutoff)
elif isinstance(input, str):
if obey_flags:
retval=self._lookup_fd_string(input, max_number, time_cutoff)
else:
retval=self._lookup_string(input, max_number, time_cutoff)
else:
try:
if obey_flags:
retval=self._lookup_fd_string(str(input), max_number, time_cutoff)
else:
retval=self._lookup_string(str(input), max_number, time_cutoff)
except:
raise RuntimeError('Input argument must be string or tuple.')
if output == 'text':
return one_level_paths_to_string(retval)
elif output == 'tuple':
return _one_level_paths_to_tuple(retval)
else:
return retval
def extract_longest_paths(self, **kwargs):
"""
Extract longest paths of the transducer.
Parameters
----------
* `kwargs` :
Possible parameters and their default values are: obey_flags=True,
output='dict'
* `obey_flags` :
Whether flag diacritics are obeyed. The default is True.
* `output` :
Possible values are 'dict', 'text' and 'raw', 'dict' being the default.
"""
obey_flags=True
output='dict' # 'dict' (default), 'text', 'raw'
for k,v in kwargs.items():
if k == 'obey_flags':
if v == True:
pass
elif v == False:
obey_flags=False
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are True and False.")
elif k == 'output':
if v == 'text':
output == 'text'
elif v == 'raw':
output='raw'
elif v == 'dict':
output='dict'
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are 'dict' (default), 'text', 'raw'.")
else:
print('Warning: ignoring unknown argument %s.' % (k))
retval = self._extract_longest_paths(obey_flags)
if output == 'text':
return two_level_paths_to_string(retval)
elif output == 'dict':
return _two_level_paths_to_dict(retval)
else:
return retval
def extract_shortest_paths(self, **kwargs):
"""
Extract shortest paths of the transducer.
Parameters
----------
* `kwargs` :
Possible parameters and their default values are: obey_flags=True.
* `output` :
Possible values are 'dict', 'text' and 'raw', 'dict' being the default.
"""
output='dict' # 'dict' (default), 'text', 'raw'
for k,v in kwargs.items():
if k == 'output':
if v == 'text':
output == 'text'
elif v == 'raw':
output='raw'
elif v == 'dict':
output='dict'
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are 'dict' (default), 'text', 'raw'.")
else:
print('Warning: ignoring unknown argument %s.' % (k))
retval = self._extract_shortest_paths()
if output == 'text':
return two_level_paths_to_string(retval)
elif output == 'dict':
return _two_level_paths_to_dict(retval)
else:
return retval
def extract_paths(self, **kwargs):
"""
Extract paths that are recognized by the transducer.
Parameters
----------
* `kwargs` :
Arguments recognized are filter_flags, max_cycles, max_number, obey_flags,
output, random.
* `filter_flags` :
Whether flags diacritics are filtered out from the result (default True).
* `max_cycles` :
Indicates how many times a cycle will be followed, with negative numbers
indicating unlimited (default -1 i.e. unlimited).
* `max_number` :
The total number of resulting strings is capped at this value, with 0 or
negative indicating unlimited (default -1 i.e. unlimited).
* `obey_flags` :
Whether flag diacritics are validated (default True).
* `output` :
Output format. Values recognized: 'text' (as a string, separated by
newlines), 'raw' (a dictionary that maps each input string into a list of
tuples of an output string and a weight), 'dict' (a dictionary that maps
each input string into a tuple of tuples of an output string and a weight,
the default).
* `random` :
Whether result strings are fetched randomly (default False).
Returns
-------
The extracted strings. *output* controls how they are represented.
pre: The transducer must be acyclic, if both *max_number* and *max_cycles* have
unlimited values. Else a hfst.exceptions.TransducerIsCyclicException will be
thrown.
An example:
>>> tr = hfst.regex('a:b+ (a:c+)')
>>> print(tr)
0 1 a b 0.000000
1 1 a b 0.000000
1 2 a c 0.000000
1 0.000000
2 2 a c 0.000000
2 0.000000
>>> print(tr.extract_paths(max_cycles=1, output='text'))
a:b 0
aa:bb 0
aaa:bbc 0
aaaa:bbcc 0
aa:bc 0
aaa:bcc 0
>>> print(tr.extract_paths(max_number=4, output='text'))
a:b 0
aa:bc 0
aaa:bcc 0
aaaa:bccc 0
>>> print(tr.extract_paths(max_cycles=1, max_number=4, output='text'))
a:b 0
aa:bb 0
aa:bc 0
aaa:bcc 0
Exceptions
----------
* `TransducerIsCyclicException` :
See also: hfst.HfstTransducer.n_best
"""
obey_flags=True
filter_flags=True
max_cycles=-1
max_number=-1
random=False
output='dict' # 'dict' (default), 'text', 'raw'
for k,v in kwargs.items():
if k == 'obey_flags' :
if v == True:
pass
elif v == False:
obey_flags=False
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are True and False.")
elif k == 'filter_flags' :
if v == True:
pass
elif v == False:
filter_flags=False
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are True and False.")
elif k == 'max_cycles' :
max_cycles=v
elif k == 'max_number' :
max_number=v
elif k == 'random' :
if v == False:
pass
elif v == True:
random=True
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are True and False.")
elif k == 'output':
if v == 'text':
output = 'text'
elif v == 'raw':
output='raw'
elif v == 'dict':
output='dict'
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are 'dict' (default), 'text', 'raw'.")
else:
print('Warning: ignoring unknown argument %s.' % (k))
retval=0
if obey_flags :
if random :
retval=self._extract_random_paths_fd(max_number, filter_flags)
else :
retval=self._extract_paths_fd(max_number, max_cycles)
else :
if random :
retval=self._extract_random_paths(max_number)
else :
retval=self._extract_paths(max_number, max_cycles)
if output == 'text':
return two_level_paths_to_string(retval)
elif output == 'dict':
return _two_level_paths_to_dict(retval)
else:
return retval
def substitute(self, s, S=None, **kwargs):
"""
Substitute symbols or transitions in the transducer.
Parameters
----------
* `s` :
The symbol or transition to be substituted. Can also be a dictionary of
substitutions, if S == None.
* `S` :
The symbol, transition, a tuple of transitions or a transducer
(hfst.HfstTransducer) that substitutes *s*.
* `kwargs` :
Arguments recognized are 'input' and 'output', their values can be False or
True, True being the default. These arguments are valid only if *s* and *S*
are strings, else they are ignored.
* `input` :
Whether substitution is performed on input side, defaults to True. Valid
only if *s* and *S* are strings.
* `output` :
Whether substitution is performed on output side, defaults to True. Valid
only if *s* and \\ S are strings.
For more information, see hfst.HfstBasicTransducer.substitute. The function
works similarly, with the exception of argument *S*, which must be
hfst.HfstTransducer instead of hfst.HfstBasicTransducer.
See also: hfst.HfstBasicTransducer.substitute
"""
if S == None:
if not isinstance(s, dict):
raise RuntimeError('Sole input argument must be a dictionary.')
subst_type=""
for k, v in s.items():
if _is_string(k):
if not subst_type:
subst_type="string"
elif subst_type == "string pair":
raise RuntimeError('')
if not _is_string(v):
raise RuntimeError('')
elif _is_string_pair(k):
if not subst_type:
subst_type="string pair"
elif subst_type == "string":
raise RuntimeError('')
if not _is_string_pair(v):
raise RuntimeError('')
else:
raise RuntimeError('')
if subst_type == "string":
return self._substitute_symbols(s)
else:
return self._substitute_symbol_pairs(s)
if _is_string(s):
if _is_string(S):
input=True
output=True
for k,v in kwargs.items():
if k == 'input':
if v == False:
input=False
elif k == 'output':
if v == False:
output=False
else:
raise RuntimeError('Free argument not recognized.')
return self._substitute_symbol(s, S, input, output)
else:
raise RuntimeError('...')
elif _is_string_pair(s):
if _is_string_pair(S):
return self._substitute_symbol_pair(s, S)
elif _is_string_pair_vector(S):
return self._substitute_symbol_pair_with_set(s, S)
elif isinstance(S, HfstTransducer):
return self._substitute_symbol_pair_with_transducer(s, S, True)
else:
raise RuntimeError('...')
else:
raise RuntimeError('...')
%}
};
}; // class HfstTransducer
// *** HfstOutputStream *** //
hfst::HfstOutputStream * create_hfst_output_stream(const std::string & filename, hfst::ImplementationType type, bool hfst_format);
class HfstOutputStream
{
public:
~HfstOutputStream(void);
HfstOutputStream &flush();
void close(void);
hfst::HfstOutputStream & redirect(hfst::HfstTransducer &) throw();
%extend {
HfstOutputStream() { return new hfst::HfstOutputStream(hfst::get_default_fst_type()); }
%pythoncode %{
def write(self, tr):
"""
Write one or more transducers to stream.
Parameters
----------
* `tr` :
An HfstTransducer or an iterable object of several HfstTransducers.
"""
if isinstance(tr, HfstTransducer):
self.redirect(tr)
else:
for t in tr:
if isinstance(t, HfstTransducer):
self.redirect(t)
else:
raise RuntimeError('Cannot write objects that are not instances of HfstTransducer')
def __init__(self, **kwargs):
"""
Open a stream for writing binary transducers. Note: hfst.HfstTransducer.write_to_file
is probably the easiest way to write a single binary transducer to a file.
Parameters
----------
* `kwargs` :
Arguments recognized are filename, hfst_format, type.
* `filename` :
The name of the file where transducers are written. If the file exists, it
is overwritten. If *filename* is not given, transducers are written to
standard output.
* `hfst_format` :
Whether transducers are written in hfst format (default is True) or as such
in their backend format.
* `type` :
The type of the transducers that will be written to the stream. Default is
hfst.get_default_fst_type().
Examples:
# a stream for writing default type transducers in hfst format to standard output
ostr = hfst.HfstOutputStream()
transducer = hfst.regex('foo:bar::0.5')
ostr.write(transducer)
ostr.flush()
# a stream for writing native sfst type transducers to a file
ostr = hfst.HfstOutputStream(filename='transducer.sfst', hfst_format=False, type=hfst.ImplementationType.SFST_TYPE)
transducer1 = hfst.regex('foo:bar')
transducer1.convert(hfst.ImplementationType.SFST_TYPE) # if not set as the default type
transducer2 = hfst.regex('bar:baz')
transducer2.convert(hfst.ImplementationType.SFST_TYPE) # if not set as the default type
ostr.write(transducer1)
ostr.write(transducer2)
ostr.flush()
ostr.close()
"""
filename = ""
hfst_format = True
type = _libhfst.get_default_fst_type()
for k,v in kwargs.items():
if k == 'filename':
filename = v
if k == 'hfst_format':
hfst_format = v
if k == 'type':
type = v
if not filename:
self.this = _libhfst.create_hfst_output_stream("", type, hfst_format)
else:
self.this = _libhfst.create_hfst_output_stream(filename, type, hfst_format)
%}
}
}; // class HfstOutputStream
// *** HfstInputStream *** //
class HfstInputStream
{
public:
HfstInputStream(void) throw();
HfstInputStream(const std::string &filename) throw();
~HfstInputStream(void);
void close(void);
bool is_eof(void);
bool is_bad(void);
bool is_good(void);
ImplementationType get_type(void) const throw();
%extend {
hfst::HfstTransducer * read() throw (EndOfStreamException) { return new hfst::HfstTransducer(*($self)); }
%pythoncode %{
def read_all(self):
"""
Read all transducers from stream and return them in a list.
"""
retval = []
while(not self.is_eof()):
retval.append(self.read())
return retval
def __iter__(self):
"""
Return *self*. Needed for 'for ... in' statement.
"""
return self
def next(self):
"""
Read next transducer from stream and return it. Needed for 'for ... in' statement.
"""
if self.is_eof():
raise StopIteration
else:
return self.read();
def __next__(self):
"""
Read next transducer from stream and return it. Needed for 'for ... in' statement.
"""
return self.next()
%}
}
}; // class HfstInputStream
// *** HfstTokenizer *** //
class HfstTokenizer
{
public:
HfstTokenizer();
void add_skip_symbol(const std::string &symbol);
void add_multichar_symbol(const std::string& symbol);
StringPairVector tokenize(const std::string &input_string) const;
StringVector tokenize_one_level(const std::string &input_string) const;
static StringPairVector tokenize_space_separated(const std::string & str);
StringPairVector tokenize(const std::string &input_string,
const std::string &output_string) const;
static void check_utf8_correctness(const std::string &input_string);
};
namespace implementations {
class HfstBasicTransducer;
class HfstBasicTransition;
typedef unsigned int HfstState;
typedef std::vector<hfst::implementations::HfstBasicTransition> HfstBasicTransitions;
// *** HfstBasicTransducer *** //
class HfstBasicTransducer {
public:
HfstBasicTransducer(void);
HfstBasicTransducer(const HfstBasicTransducer &graph);
HfstBasicTransducer(const hfst::HfstTransducer &transducer);
std::string name;
void add_symbol_to_alphabet(const std::string &symbol);
void remove_symbol_from_alphabet(const std::string &symbol);
void remove_symbols_from_alphabet(const StringSet &symbols);
void add_symbols_to_alphabet(const StringSet &symbols);
// shadowed by the previous function: void add_symbols_to_alphabet(const StringPairSet &symbols);
std::set<std::string> symbols_used();
void prune_alphabet(bool force=true);
const std::set<std::string> &get_alphabet() const;
StringSet get_input_symbols() const;
StringSet get_output_symbols() const;
StringPairSet get_transition_pairs() const;
HfstState add_state(void);
HfstState add_state(HfstState s);
HfstState get_max_state() const;
std::vector<HfstState> states() const;
void add_transition(HfstState s, const hfst::implementations::HfstBasicTransition & transition, bool add_symbols_to_alphabet=true);
void remove_transition(HfstState s, const hfst::implementations::HfstBasicTransition & transition, bool remove_symbols_from_alphabet=false);
bool is_final_state(HfstState s) const;
float get_final_weight(HfstState s) const throw();
void set_final_weight(HfstState s, const float & weight);
void remove_final_weight(HfstState s);
%rename("_transitions") transitions(HfstState s);
hfst::implementations::HfstBasicTransitions & transitions(HfstState s);
bool is_infinitely_ambiguous();
bool is_lookup_infinitely_ambiguous(const StringVector & s);
int longest_path_size();
%extend {
void _substitute_symbol(const std::string &old_symbol, const std::string &new_symbol, bool input_side=true, bool output_side=true) { self->substitute_symbol(old_symbol, new_symbol, input_side, output_side); }
void _substitute_symbol_pair(const StringPair &old_symbol_pair, const StringPair &new_symbol_pair) { self->substitute_symbol_pair(old_symbol_pair, new_symbol_pair); }
void _substitute_symbol_pair_with_set(const StringPair &old_symbol_pair, const hfst::StringPairSet &new_symbol_pair_set) { self->substitute_symbol_pair_with_set(old_symbol_pair, new_symbol_pair_set); }
void _substitute_symbol_pair_with_transducer(const StringPair &symbol_pair, HfstBasicTransducer &transducer) { self->substitute_symbol_pair_with_transducer(symbol_pair, transducer); }
void _substitute_symbols(const hfst::HfstSymbolSubstitutions &substitutions) { self->substitute_symbols(substitutions); } // alias for the previous function which is shadowed
void _substitute_symbol_pairs(const hfst::HfstSymbolPairSubstitutions &substitutions) { self->substitute_symbol_pairs(substitutions); } // alias for the previous function which is shadowed
void insert_freely(const StringPair &symbol_pair, float weight) { self->insert_freely(symbol_pair, weight); }
void insert_freely(const HfstBasicTransducer &tr) { self->insert_freely(tr); }
void sort_arcs() { self->sort_arcs(); }
void disjunct(const StringPairVector &spv, float weight) { self->disjunct(spv, weight); }
void harmonize(HfstBasicTransducer &another) { self->harmonize(another); }
HfstTwoLevelPaths _lookup(const StringVector &lookup_path, size_t * infinite_cutoff, float * max_weight, bool obey_flags) throw()
{
hfst::HfstTwoLevelPaths results;
$self->lookup(lookup_path, results, infinite_cutoff, max_weight, -1, obey_flags);
return results;
}
std::string get_prolog_string(bool write_weights)
{
std::ostringstream oss;
$self->write_in_prolog_format(oss, self->name, write_weights);
return oss.str();
}
std::string get_xfst_string(bool write_weights)
{
std::ostringstream oss;
$self->write_in_xfst_format(oss, write_weights);
return oss.str();
}
std::string get_att_string(bool write_weights)
{
std::ostringstream oss;
$self->write_in_att_format(oss, write_weights);
std::string retval = oss.str();
if (retval.empty()) // empty transducer must be represented as empty line in python, else read_att fails...
retval = std::string("\n");
return retval;
}
char * __str__()
{
std::ostringstream oss;
$self->write_in_att_format(oss, true);
return strdup(oss.str().c_str());
}
void add_transition(HfstState source, HfstState target, std::string input, std::string output, float weight=0) {
hfst::implementations::HfstBasicTransition tr(target, input, output, weight);
$self->add_transition(source, tr);
}
%pythoncode %{
def transitions(self, s):
"""
...
"""
tr = self._transitions(s)
retval = []
for i in range(0, len(tr)):
retval.append(tr[i])
return retval
def states_and_transitions(self):
"""
...
"""
retval = []
for s in self.states():
retval.append(self.transitions(s))
return retval
def __iter__(self):
"""
Return states and transitions of the transducer.
"""
return self.states_and_transitions().__iter__()
def __enumerate__(self):
"""
Return an enumeration of states and transitions of the transducer.
"""
return enumerate(self.states_and_transitions())
def write_prolog(self, f, write_weights=True):
"""
Write the transducer in prolog format with name *name* to file *f*,
*write_weights* defined whether weights are written.
Parameters
----------
* `f` :
A python file where the transducer is written.
* `write_weights` :
Whether weights are written.
"""
prologstr = self.get_prolog_string(write_weights)
f.write(prologstr)
def write_xfst(self, f, write_weights=True):
"""
Write the transducer in xfst format to file *f*, *write_weights* defined whether
weights are written.
Parameters
----------
* `f` :
A python file where transducer is written.
* `write_weights` :
Whether weights are written.
"""
xfststr = self.get_xfst_string(write_weights)
f.write(xfststr)
def write_att(self, f, write_weights=True):
"""
Write the transducer in AT&T format to file *f*, *write_weights* defined whether
weights are written.
Parameters
----------
* `f` :
A python file where transducer is written.
* `write_weights` :
Whether weights are written.
"""
attstr = self.get_att_string(write_weights)
f.write(attstr)
def lookup(self, lookup_path, **kwargs):
"""
Lookup tokenized input *input* in the transducer.
Parameters
----------
* `str` :
A list/tuple of strings to look up.
* `kwargs` :
infinite_cutoff=-1, max_weight=None, obey_flags=False
* `max_epsilon_loops` :
How many times epsilon input loops are followed. Defaults to -1, i.e. infinitely.
* `max_weight` :
What is the maximum weight of a result allowed. Defaults to None, i.e. infinity.
* `obey_flags` :
Whether flag diacritic constraints are obeyed. Defaults to False.
"""
max_weight = None
max_epsilon_loops = None
obey_flags = False
output='dict' # 'dict' (default), 'text', 'raw'
for k,v in kwargs.items():
if k == 'max_weight' :
max_weight=v
elif k == 'max_epsilon_loops' :
infinite_cutoff=v
elif k == 'obey_flags' :
obey_flags=v
elif k == 'output':
if v == 'text':
output == 'text'
elif v == 'raw':
output='raw'
elif v == 'dict':
output='dict'
else:
print('Warning: ignoring argument %s as it has value %s.' % (k, v))
print("Possible values are 'dict' (default), 'text', 'raw'.")
else:
print('Warning: ignoring unknown argument %s.' % (k))
retval = self._lookup(lookup_path, max_epsilon_loops, max_weight, obey_flags)
if output == 'text':
return _two_level_paths_to_string(retval)
elif output == 'dict':
return _two_level_paths_to_dict(retval)
else:
return retval
def substitute(self, s, S=None, **kwargs):
"""
Substitute symbols or transitions in the transducer.
Parameters
----------
* `s` :
The symbol or transition to be substituted. Can also be a dictionary of
substitutions, if S == None.
* `S` :
The symbol, transition, a tuple of transitions or a transducer
(hfst.HfstBasicTransducer) that substitutes *s*.
* `kwargs` :
Arguments recognized are 'input' and 'output', their values can be False or
True, True being the default. These arguments are valid only if *s* and *S*
are strings, else they are ignored.
* `input` :
Whether substitution is performed on input side, defaults to True. Valid
only if *s* and *S* are strings.
* `output` :
Whether substitution is performed on output side, defaults to True. Valid
only if *s* and *S* are strings.
Possible combinations of arguments and their types are:
(1) substitute(str, str, input=bool, output=bool): substitute symbol with symbol
on input, output or both sides of each transition in the transducer. (2)
substitute(strpair, strpair): substitute transition with transition (3)
substitute(strpair, strpairtuple): substitute transition with several
transitions (4) substitute(strpair, transducer): substitute transition with a
transducer (5) substitute(dict): perform several symbol-to-symbol substitutions
(6) substitute(dict): perform several transition-to-transition substitutions
Examples:
(1) tr.substitute('a', 'A', input=True, output=False): substitute lowercase a:s
with uppercase ones (2) tr.substitute(('a','b'),('A','B')): substitute
transitions that map lowercase a into lowercase b with transitions that map
uppercase a into uppercase b (3) tr.substitute(('a','b'),
(('A','B'),('a','B'),('A','b'))): change either or both sides of a transition
[a:b] to uppercase (4) tr.substitute(('a','b'), hfst.regex('[a:b]+')) change
[a:b] transition into one or more consecutive [a:b] transitions (5)
tr.substitute({'a':'A', 'b':'B', 'c':'C'}) change lowercase a, b and c into
their uppercase variants (6) tr.substitute( {('a','a'):('A','A'),
('b','b'):('B','B'), ('c','c'):('C','C')} ): change lowercase a, b and c into
their uppercase variants
In case (4), epsilon transitions are used to attach copies of transducer *S*
between the SOURCE and TARGET state of each transition that is substituted. The
transition itself is deleted, but its weight is copied to the epsilon transition
leading from SOURCE to the initial state of *S*. Each final state of *S* is made
non-final and an epsilon transition leading to TARGET is attached to it. The
final weight is copied to the epsilon transition.
"""
if S == None:
if not isinstance(s, dict):
raise RuntimeError('First input argument must be a dictionary.')
subst_type=""
for k, v in s.items():
if _is_string(k):
if not subst_type:
subst_type="string"
elif subst_type == "string pair":
raise RuntimeError('')
if not _is_string(v):
raise RuntimeError('')
elif _is_string_pair(k):
if not subst_type:
subst_type="string pair"
elif subst_type == "string":
raise RuntimeError('')
if not _is_string_pair(v):
raise RuntimeError('')
else:
raise RuntimeError('')
if subst_type == "string":
return self._substitute_symbols(s)
else:
return self._substitute_symbol_pairs(s)
if _is_string(s):
if _is_string(S):
input=True
output=True
for k,v in kwargs.items():
if k == 'input':
if v == False:
input=False
elif k == 'output':
if v == False:
output=False
else:
raise RuntimeError('Free argument not recognized.')
return self._substitute_symbol(s, S, input, output)
else:
raise RuntimeError('...')
elif _is_string_pair(s):
if _is_string_pair(S):
return self._substitute_symbol_pair(s, S)
elif _is_string_pair_vector(S):
return self._substitute_symbol_pair_with_set(s, S)
elif isinstance(S, HfstBasicTransducer):
return self._substitute_symbol_pair_with_transducer(s, S)
else:
raise RuntimeError('...')
else:
raise RuntimeError('...')
%}
}
}; // class HfstBasicTransducer
// *** HfstBasicTransition *** //
class HfstBasicTransition {
public:
HfstBasicTransition();
HfstBasicTransition(hfst::implementations::HfstState, std::string, std::string, float);
~HfstBasicTransition();
HfstState get_target_state() const;
std::string get_input_symbol() const;
void set_input_symbol(const std::string & symbol);
std::string get_output_symbol() const;
void set_output_symbol(const std::string & symbol);
float get_weight() const;
void set_weight(float f);
%extend{
char *__str__() {
static char str[1024];
sprintf(str, "%u %s %s %f", $self->get_target_state(), $self->get_input_symbol().c_str(), $self->get_output_symbol().c_str(), $self->get_weight());
return str;
}
}
}; // class HfstBasicTransition
} // namespace implementations
// *** XreCompiler: offer only a limited set of functions ***
namespace xre {
class XreCompiler
{
public:
XreCompiler();
XreCompiler(hfst::ImplementationType impl);
void define_list(const std::string& name, const std::set<std::string>& symbol_list);
bool define_function(const std::string& name, unsigned int arguments, const std::string& xre);
bool is_definition(const std::string& name);
bool is_function_definition(const std::string& name);
void undefine(const std::string& name);
HfstTransducer* compile(const std::string& xre);
//HfstTransducer* compile_first(const std::string& xre, unsigned int & chars_read);
void set_verbosity(bool verbose);
bool getOutputToConsole();
void set_expand_definitions(bool expand); // TODO: should this be set automatically to True?
void set_harmonization(bool harmonize);
bool contained_only_comments();
// *** Some wrappers *** //
%extend{
void define_xre(const std::string& name, const std::string& xre)
{
self->set_expand_definitions(true);
self->define(name, xre);
}
void define_transducer(const std::string& name, const HfstTransducer & transducer)
{
self->set_expand_definitions(true);
self->define(name, transducer);
}
void setOutputToConsole(bool value)
{
(void)self->setOutputToConsole(value);
}
HfstTransducerUIntPair compile_first(const std::string & xre)
{
unsigned int c=0;
hfst::HfstTransducer * result = self->compile_first(xre, c);
return std::pair<hfst::HfstTransducer*, unsigned int>(result, c);
}
}
};
}
// *** The LexcCompiler functions are offered only because they are needed in some python functions... *** //
namespace lexc {
class LexcCompiler
{
public:
LexcCompiler();
LexcCompiler(hfst::ImplementationType impl);
LexcCompiler(hfst::ImplementationType impl, bool withFlags, bool alignStrings);
LexcCompiler& setVerbosity(unsigned int verbose);
void setOutputToConsole(bool);
};
}
// *** The XfstCompiler functions are offered only because they are needed in some python functions... *** //
namespace xfst {
class XfstCompiler
{
public:
XfstCompiler();
XfstCompiler(hfst::ImplementationType impl);
XfstCompiler& setOutputToConsole(bool value);
XfstCompiler& setReadInteractiveTextFromStdin(bool Value);
XfstCompiler& setReadline(bool value);
XfstCompiler& setVerbosity(bool verbosity);
XfstCompiler& set(const char* name, const char* text);
char * get_prompt() const;
XfstCompiler& apply_up(const char* indata);
XfstCompiler& apply_down(const char* indata);
int parse_line(std::string line);
bool quit_requested() const;
};
}
// internal functions
std::string hfst::get_hfst_regex_error_message();
hfst::HfstTransducer * hfst::hfst_regex(hfst::xre::XreCompiler & comp, const std::string & regex_string, const std::string & error_stream);
char * hfst::get_hfst_xfst_string_one();
char * hfst::get_hfst_xfst_string_two();
int hfst::hfst_compile_xfst_to_string_one(hfst::xfst::XfstCompiler & comp, std::string input);
int hfst::hfst_compile_xfst(hfst::xfst::XfstCompiler & comp, std::string input, const std::string & output_stream, const std::string & error_stream);
std::string hfst::get_hfst_lexc_output();
hfst::HfstTransducer * hfst::hfst_compile_lexc(hfst::lexc::LexcCompiler & comp, const std::string & filename, const std::string & error_stream);
std::string hfst::get_hfst_sfst_output();
hfst::HfstTransducer * hfst::hfst_compile_sfst(const std::string & filename, const std::string & error_stream, bool verbose, bool output_to_console);
std::string hfst::one_level_paths_to_string(const HfstOneLevelPaths &);
std::string hfst::two_level_paths_to_string(const HfstTwoLevelPaths &);
bool parse_prolog_network_line(const std::string & line, hfst::implementations::HfstBasicTransducer * graph);
bool parse_prolog_arc_line(const std::string & line, hfst::implementations::HfstBasicTransducer * graph);
bool parse_prolog_symbol_line(const std::string & line, hfst::implementations::HfstBasicTransducer * graph);
bool parse_prolog_final_line(const std::string & line, hfst::implementations::HfstBasicTransducer * graph);
// fuctions visible under module hfst
void hfst::set_default_fst_type(hfst::ImplementationType t);
hfst::ImplementationType hfst::get_default_fst_type();
std::string hfst::fst_type_to_string(hfst::ImplementationType t);
// *** hfst_rules (will be wrapped under module hfst.rules) *** //
namespace hfst_rules {
HfstTransducer two_level_if(const HfstTransducerPair & context, const StringPairSet & mappings, const StringPairSet & alphabet);
HfstTransducer two_level_only_if(const HfstTransducerPair &context, const StringPairSet &mappings, const StringPairSet &alphabet);
HfstTransducer two_level_if_and_only_if(const HfstTransducerPair &context, const StringPairSet &mappings, const StringPairSet &alphabet);
HfstTransducer replace_down(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer replace_down_karttunen(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer replace_right(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer replace_left(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer replace_up(const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer replace_down(const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_up(const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_up(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_down(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_down_karttunen(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_left(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer left_replace_right(const HfstTransducerPair &context, const HfstTransducer &mapping, bool optional, const StringPairSet &alphabet);
HfstTransducer restriction(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer restriction_and_coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer surface_restriction(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer surface_coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer surface_restriction_and_coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer deep_restriction(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer deep_coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
HfstTransducer deep_restriction_and_coercion(const HfstTransducerPairVector &contexts, const HfstTransducer &mapping, const StringPairSet &alphabet);
} // namespace hfst_rules
} // namespace hfst
namespace hfst {
namespace twolc {
class TwolcCompiler
{
public:
static int compile(const std::string & inputfile, const std::string & outputfile,
bool silent, bool verbose, bool resolve_left_conflicts,
bool resolve_right_conflicts, hfst::ImplementationType type);
};
}
}
// *** PmatchContainer *** //
// hfst_pmatch_tokenize_extensions.cc
namespace hfst {
std::string pmatch_get_tokenized_output(hfst_ol::PmatchContainer * cont,
const std::string & input_text,
const std::string & output_format,
int * max_weight_classes,
bool dedupe,
bool print_weights,
bool print_all,
double time_cutoff,
bool verbose,
float beam,
bool tokenize_multichar);
hfst_ol::LocationVectorVector pmatch_locate(hfst_ol::PmatchContainer * cont,
const std::string & input,
double time_cutoff = 0.0);
hfst_ol::LocationVectorVector pmatch_locate(hfst_ol::PmatchContainer * cont,
const std::string & input,
double time_cutoff,
float weight_cutoff);
}
namespace hfst_ol {
class PmatchContainer
{
public:
PmatchContainer(void);
PmatchContainer(hfst::HfstTransducerVector transducers);
~PmatchContainer(void);
std::string match(const std::string & input, double time_cutoff = 0.0);
std::string get_profiling_info(void);
void set_verbose(bool b);
//void set_extract_tags_mode(bool b);
void set_profile(bool b);
%extend {
PmatchContainer(const std::string & filename)
{
std::ifstream ifs(filename.c_str());
hfst_ol::PmatchContainer * retval = new hfst_ol::PmatchContainer(ifs);
ifs.close();
return retval;
}
// extension because of inf default value of weight_cutoff...
hfst_ol::LocationVectorVector locate(const std::string & input,
double time_cutoff = 0.0)
{
return hfst::pmatch_locate(self, input, time_cutoff);
};
hfst_ol::LocationVectorVector locate(const std::string & input,
double time_cutoff,
float weight_cutoff)
{
return hfst::pmatch_locate(self, input, time_cutoff, weight_cutoff);
};
%pythoncode %{
def get_tokenized_output(self, input, **kwargs):
"""
Tokenize *input* and get a string representation of the tokenization
(essentially the same that command line tool hfst-tokenize would give).
Parameters
----------
* `input` :
The input string to be tokenized.
* `kwargs` :
Possible parameters are:
output_format, max_weight_classes, dedupe, print_weights, print_all,
time_cutoff, verbose, beam, tokenize_multichar.
* `output_format` :
The format of output; possible values are 'tokenize', 'xerox', 'cg', 'finnpos',
'giellacg', 'conllu' and 'visl'; 'tokenize' being the default.
* `max_weight_classes` :
Maximum number of best weight classes to output
(where analyses with equal weight constitute a class), defaults to None i.e. no limit.
* `dedupe` :
Whether duplicate analyses are removed, defaults to False.
* `print_weights` :
Whether weights are printd, defaults to False.
* `print_all` :
Whether nonmatching text is printed, defaults to False.
* `time_cutoff` :
Maximum number of seconds used per input after limiting the search.
* `verbose` :
Whether input is processed verbosely, defaults to True.
* `beam` :
Beam within analyses must be to get printed.
* `tokenize_multichar` :
Tokenize input into multicharacter symbols present in the transducer, defaults to false.
"""
output_format='tokenize'
max_weight_classes=None
dedupe=False
print_weights=False
print_all=False
time_cutoff=0.0
verbose=True
beam=-1.0
tokenize_multichar=False
for k,v in kwargs.items():
if k == 'output_format':
if v == 'tokenize' or v == 'space_separated' or v == 'xerox' or v == 'cg' or v == 'finnpos' or v == 'giellacg' or v == 'conllu':
output_format=v
else:
print('Warning: ignoring unknown value %s for argument %s.' % (v,k))
elif k == 'max_weight_classes':
max_weight_classes=int(v)
elif k == 'dedupe':
dedupe=v
elif k == 'print_weights':
print_weights=v
elif k == 'print_all':
print_all=v
elif k == 'time_cutoff':
time_cutoff=float(v)
elif k == 'verbose':
verbose=v
elif k == 'beam':
beam=float(v)
elif k == 'tokenize_multichar':
tokenize_multichar=v
else:
print('Warning: ignoring unknown argument %s.' % (k))
return pmatch_get_tokenized_output(self, input, output_format, max_weight_classes, dedupe, print_weights, print_all, time_cutoff, verbose, beam, tokenize_multichar)
def tokenize(self, input):
"""
Tokenize *input* and return a list of tokens i.e. strings.
Parameters
----------
* `input` :
The string to be tokenized.
"""
retval = []
locations = self.locate(input)
for loc in locations:
if loc[0].output != "@_NONMATCHING_@":
retval.append(loc[0].input)
return retval
%}
}
}; // class PmatchContainer
} // namespace hfst_ol
%pythoncode %{
class ImplementationType:
"""
Back-end implementation.
Attributes:
SFST_TYPE: SFST type, unweighted
TROPICAL_OPENFST_TYPE: OpenFst type with tropical weights
LOG_OPENFST_TYPE: OpenFst type with logarithmic weights (limited support)
FOMA_TYPE: FOMA type, unweighted
XFSM_TYPE: XFST type, unweighted (limited support)
HFST_OL_TYPE: HFST optimized-lookup type, unweighted
HFST_OLW_TYPE: HFST optimized-lookup type, weighted
HFST2_TYPE: HFST version 2 legacy type
UNSPECIFIED_TYPE: type not specified
ERROR_TYPE: (something went wrong)
"""
SFST_TYPE = _libhfst.SFST_TYPE
TROPICAL_OPENFST_TYPE = _libhfst.TROPICAL_OPENFST_TYPE
LOG_OPENFST_TYPE = _libhfst.LOG_OPENFST_TYPE
FOMA_TYPE = _libhfst.FOMA_TYPE
XFSM_TYPE = _libhfst.XFSM_TYPE
HFST_OL_TYPE = _libhfst.HFST_OL_TYPE
HFST_OLW_TYPE = _libhfst.HFST_OLW_TYPE
HFST2_TYPE = _libhfst.HFST2_TYPE
UNSPECIFIED_TYPE = _libhfst.UNSPECIFIED_TYPE
ERROR_TYPE = _libhfst.ERROR_TYPE
class ReplaceType:
"""
Replace type in Xerox-type rules.
Attributes:
REPL_UP: Match contexts on input level
REPL_DOWN: Match contexts on output level
REPL_RIGHT: Match left contexts on input level and right contexts on output level
REPL_LEFT: Match left contexts on output level and right contexts on input level
"""
REPL_UP = _libhfst.REPL_UP
REPL_DOWN = _libhfst.REPL_DOWN
REPL_RIGHT = _libhfst.REPL_RIGHT
REPL_LEFT = _libhfst.REPL_LEFT
%}
|