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
|
2012-03-29 09:13 sloot
* [r14588] NEWS: updated NEWS for release
2012-03-28 15:03 sloot
* [r14580] NEWS, configure.ac: depend on newer ucto (mostly because
of its config)
2012-03-28 13:38 sloot
* [r14574] src/Frog.cxx, src/tst.sh: adapted to other way of
configuration handling
2012-03-28 12:26 sloot
* [r14571] DPconfig: remove these too
2012-03-28 12:25 sloot
* [r14570] Makefile.am, NEWS, config, configure.ac: remove the
config files.
they are to be found in separate frogdata tree
2012-03-27 09:07 sloot
* [r14525] config/mblem.tree, src/mblem_mod.cxx: enable <alt>
lemmas in mblem
small fix in mblem tree
2012-03-22 15:33 sloot
* [r14505] include/frog/mblem_mod.h, src/mblem_mod.cxx: added
possibility to insert alternative lemma's in FoLiA.
disabled atm
2012-03-22 13:00 sloot
* [r14501] src/mblem_mod.cxx, src/mbma_mod.cxx: added shortcuts for
LET (a la SPEC)
2012-03-22 11:37 sloot
* [r14489] include/frog/cgn_tagger_mod.h, src/cgn_tagger_mod.cxx:
detect more URL-isch stuff. not just URL-WWW
2012-03-22 09:37 sloot
* [r14487] config/mblem.transtable, config/mblem.tree,
config/mblem.tree.wgt: updated mblem data. contained a strange
bug
2012-03-21 13:41 sloot
* [r14483] src/mbma_mod.cxx: ok, for now, i stop my attempts to
understand this code
2012-03-21 12:57 sloot
* [r14482] src/mbma_mod.cxx: modernize
2012-03-21 11:26 sloot
* [r14481] src/Parser.cxx, src/cgn_tagger_mod.cxx,
src/iob_tagger_mod.cxx, src/mblem_mod.cxx, src/mbma_mod.cxx,
src/ner_tagger_mod.cxx: - attempt to avoid irregular crashes,
probably because of MT problems
- cleanup mbma code
2012-03-21 09:00 sloot
* [r14480] src/mblem_mod.cxx: some clarification
2012-03-20 17:01 sloot
* [r14479] src/mblem_mod.cxx: code reshuffling. a bit cleared (to
me) and faster!
2012-03-19 16:10 sloot
* [r14478] include/frog/cgn_tagger_mod.h,
include/frog/iob_tagger_mod.h, include/frog/mblem_mod.h,
include/frog/mbma_mod.h, include/frog/mwu_chunker_mod.h,
src/Frog.cxx, src/Parser.cxx, src/cgn_tagger_mod.cxx,
src/iob_tagger_mod.cxx, src/mblem_mod.cxx, src/mbma_mod.cxx,
src/mwu_chunker_mod.cxx: cleaned up LibFolia stuff (less generic
pointers, more specific)
2012-03-19 13:25 sloot
* [r14475] configure.ac: we prefer recent libfolia
2012-03-19 09:28 sloot
* [r14470] DPconfig/frog.cfg, config/small-frog.cfg,
include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx: removed
unused configuration item
2012-03-13 10:12 sloot
* [r14454] DPconfig/frog.cfg, config/small-frog.cfg: updated config
2012-03-12 16:41 sloot
* [r14448] src/iob_tagger_mod.cxx: small name change
2012-03-12 16:34 sloot
* [r14447] include/frog/Parser.h, include/frog/cgn_tagger_mod.h,
include/frog/iob_tagger_mod.h, include/frog/mblem_mod.h,
include/frog/mbma_mod.h, include/frog/mwu_chunker_mod.h,
include/frog/ner_tagger_mod.h, src/Frog.cxx, src/Parser.cxx,
src/cgn_tagger_mod.cxx, src/iob_tagger_mod.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx, src/mwu_chunker_mod.cxx,
src/ner_tagger_mod.cxx: refactoring: make the tagset names
configurable, and don't let them appear
at manifold places in the code.
2012-03-12 12:02 sloot
* [r14445] NEWS, config/Makefile.am, config/ner.data.settings,
config/small-frog.cfg, tests/tst.ok, tests/tst.txt: fixed config
and install
changed 'make check' test
2012-03-08 22:36 antalb
* [r14431] config/ner.data.10paxes,
config/ner.data.known.ddwdwfWawaa,
config/ner.data.known.ddwdwfWawawaa,
config/ner.data.known.ddwdwfWawawaa.wgt, config/ner.data.lex,
config/ner.data.lex.ambi.05, config/ner.data.settings,
config/ner.data.top1000, config/ner.data.top500,
config/ner.data.unknown.chnppddwdwFawawaasss,
config/ner.data.unknown.chnppddwdwFawawasss: updating the
replacement of the NER config files
2012-03-08 22:18 antalb
* [r14430] config/ner.data.10paxes, config/ner.data.5paxes,
config/ner.data.known.dddwfWawa,
config/ner.data.known.dddwfWawa.wgt,
config/ner.data.known.ddwdwfWawaa, config/ner.data.lex,
config/ner.data.lex.ambi.05, config/ner.data.settings,
config/ner.data.top1000, config/ner.data.top500,
config/ner.data.unknown.chnppddwFawsss,
config/ner.data.unknown.chnppddwdwFawawasss: replaced first NER
with optimizer (more accurate, slower) NER
2012-03-08 14:43 sloot
* [r14426] src/Frog.cxx: small edit
2012-03-08 10:59 sloot
* [r14422] config/ner.data.known.dddwfWawa,
config/ner.data.known.dddwfWawa.wgt,
config/ner.data.unknown.chnppddwFawsss: retrained with -eEL
2012-03-06 10:49 sloot
* [r14381] NEWS, configure.ac, include/frog/cgn_tagger_mod.h,
include/frog/iob_tagger_mod.h, include/frog/ner_tagger_mod.h,
src/Frog.cxx, src/cgn_tagger_mod.cxx, src/iob_tagger_mod.cxx,
src/ner_tagger_mod.cxx: using a new MBT API function, code has
become simpler, faster, better!
2012-03-01 13:20 sloot
* [r14367] NEWS, src/cgn_tagger_mod.cxx, src/iob_tagger_mod.cxx,
src/ner_tagger_mod.cxx: fix problem with trailing / in input.
Mbt should provide a better API!
2012-03-01 11:12 sloot
* [r14365] configure.ac: bump version
2012-02-29 17:02 sloot
* [r14361] NEWS, src/Frog.cxx, tests/tst.ok: argl!
2012-02-29 14:39 sloot
* [r14360] configure.ac: bump version after release
2012-02-29 14:38 sloot
* [r14358] src/tst.sh: oesp. belongs to 0.12.12
2012-02-29 10:07 sloot
* [r14351] src/iob_tagger_mod.cxx, src/mwu_chunker_mod.cxx,
src/ner_tagger_mod.cxx: more OMP attempts
2012-02-29 09:25 sloot
* [r14350] src/Frog.cxx, src/cgn_tagger_mod.cxx,
src/iob_tagger_mod.cxx, src/mbma_mod.cxx,
src/mwu_chunker_mod.cxx, src/ner_tagger_mod.cxx: rechecked some
OPM stuff. Mayby fixex threading problems now?
2012-02-28 10:13 sloot
* [r14346] config/small-frog.cfg: oesp
2012-02-27 16:40 sloot
* [r14344] include/frog/Configuration.h, include/frog/Frog.h,
include/frog/Parser.h, src/Configuration.cxx, src/Frog-util.cxx,
src/Frog.cxx, src/Parser.cxx: some cleanup in global variables
2012-02-27 16:02 sloot
* [r14343] NEWS: news
2012-02-27 13:50 mvgompel
* [r14339] src/Frog.cxx: updated -h
2012-02-23 16:56 sloot
* [r14331] include/frog/ner_tagger_mod.h, src/Frog.cxx,
src/ner_tagger_mod.cxx: some refactoring
2012-02-23 16:40 sloot
* [r14330] include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/Parser.cxx, src/iob_tagger_mod.cxx, src/mwu_chunker_mod.cxx,
src/ner_tagger_mod.cxx: adapted to much stricter libfolia
2012-02-22 14:53 sloot
* [r14306] DPconfig/frog.cfg, src/Frog.cxx, src/Parser.cxx,
src/cgn_tagger_mod.cxx, src/frog-dp-update,
src/iob_tagger_mod.cxx, src/mblem_mod.cxx, src/mbma_mod.cxx,
src/ner_tagger_mod.cxx: cleaning up in FoLiA stuff
2012-02-21 15:48 sloot
* [r14301] config/small-frog.cfg, include/frog/Configuration.h,
src/Configuration.cxx, src/Frog.cxx: We signal sooner if some
config is missing.
2012-02-21 09:37 sloot
* [r14283] src/cgn_tagger_mod.cxx: oesp
2012-02-21 08:32 sloot
* [r14282] src/cgn_tagger_mod.cxx: oesp. thread safety first
2012-02-15 17:49 sloot
* [r14273] src/Frog.cxx: IOB tags were lost.
fixed
2012-02-15 17:40 sloot
* [r14272] configure.ac, src/Frog.cxx: NER now seems to work
2012-02-15 13:05 sloot
* [r14267] config/Frog.mbt.1.0.1paxes,
config/Frog.mbt.1.0.known.dddwfWawa,
config/Frog.mbt.1.0.known.dddwfWawa.wgt, config/Frog.mbt.1.0.lex,
config/Frog.mbt.1.0.lex.ambi.05, config/Frog.mbt.1.0.settings,
config/Frog.mbt.1.0.top500,
config/Frog.mbt.1.0.unknown.chnppdddwFawasss,
config/Frog.mwu.1.0, config/Makefile.am, config/cgntags.main,
config/cgntags.sub, config/chunker.train.10paxes,
config/chunker.train.known.dddwfWawa,
config/chunker.train.known.dddwfWawa.wgt,
config/chunker.train.lex, config/chunker.train.lex.ambi.05,
config/chunker.train.settings, config/chunker.train.top1000,
config/chunker.train.unknown.chnppddwFawsss, config/frog-de.cfg,
config/frog-en.cfg, config/frog-fr.cfg, config/frog-it.cfg,
config/mblem.transtable, config/mblem.tree,
config/mblem.tree.wgt, config/mbma.igtree,
config/mbma.igtree.wgt, config/ner.data.5paxes,
config/ner.data.known.dddwfWawa,
config/ner.data.known.dddwfWawa.wgt, config/ner.data.lex,
config/ner.data.lex.ambi.05, config/ner.data.settings,
config/ner.data.top1000, config/ner.data.unknown.chnppddwFawsss,
config/small-frog.cfg, include/frog/Frog.h,
include/frog/Makefile.am, include/frog/cgn_tagger_mod.h,
include/frog/iob_tagger_mod.h, include/frog/ner_tagger_mod.h,
include/frog/ucto_tokenizer_mod.h, src/Frog.cxx, src/Makefile.am,
src/cgn_tagger_mod.cxx, src/iob_tagger_mod.cxx,
src/mwu_chunker_mod.cxx, src/ner_tagger_mod.cxx,
src/ucto_tokenizer_mod.cxx: added experimental NER code
2012-02-15 10:22 sloot
* [r14265] src/Frog.cxx: typo
2012-02-15 10:14 sloot
* [r14264] src/Frog.cxx: Added a --max-parser-tokens option
2012-02-13 14:21 sloot
* [r14261] config/Frog.mwu.1.0, configure.ac: dependency changed
modified mwu list
2012-02-10 23:49 antalb
* [r14250] config/Frog.mwu.1.0: more cleaning
2012-02-10 23:06 antalb
* [r14249] config/Frog.mwu.1.0: more cleaning!
2012-02-10 22:48 antalb
* [r14248] config/Frog.mwu.1.0: and more cleaning
2012-02-10 22:42 antalb
* [r14247] config/Frog.mwu.1.0: more cleaning
2012-02-10 22:39 antalb
* [r14246] config/Frog.mwu.1.0: cleansed the Frog.mwu.1.0 config
file
2012-02-09 16:23 sloot
* [r14241] configure.ac: bump version after release
2012-02-09 15:54 sloot
* [r14239] NEWS, docs/Makefile.am, docs/frog-dp-update.1: added a
manpage
2012-02-09 15:38 sloot
* [r14238] src/frog-dp-update: OMG
Why!
2012-02-09 14:45 sloot
* [r14236] configure.ac: bumped version after release
2012-02-09 14:35 sloot
* [r14233] NEWS, src/Makefile.am: last small edits before release
2012-02-09 14:18 sloot
* [r14232] src/Makefile.am, src/frog-dp-update,
src/frog-dp-update.sh: make debianista's happy
2012-02-09 13:33 sloot
* [r14231] NEWS, src/iob_tagger_mod.cxx, tests/tst.ok,
tests/tst.txt: fixed ION chunker
2012-02-08 17:04 sloot
* [r14220] src/iob_tagger_mod.cxx: Ok, fixed some problems.
Code is still ugly
2012-02-07 17:10 sloot
* [r14217] src/iob_tagger_mod.cxx: some cleanup. still a bit messy
2012-02-07 16:45 sloot
* [r14216] src/iob_tagger_mod.cxx: added confidence to the IOB
chunks
2012-02-07 15:24 sloot
* [r14215] config/chunker.train.known.dddwfWawa,
config/chunker.train.known.dddwfWawa.wgt,
config/chunker.train.unknown.chnppddwFawsss: desperately needed
files
2012-02-07 15:18 sloot
* [r14214] config/chunker.train.settings: added +D to enable
confidence calculations
2012-02-07 14:24 sloot
* [r14213] config/chunker.train.settings, src/cgn_tagger_mod.cxx,
src/iob_tagger_mod.cxx: make the taggers use the debug settings
somewhat better
2012-02-07 13:28 sloot
* [r14211] src/Makefile.am: argl
2012-02-07 13:24 sloot
* [r14210] NEWS, config/Makefile.am, config/chunker.train.5paxes,
config/chunker.train.known.dddfWaa,
config/chunker.train.known.dddfWaa.wgt, config/chunker.train.lex,
config/chunker.train.lex.ambi.05, config/chunker.train.settings,
config/chunker.train.unknown.chnppddwFasss, src/Frog.cxx: Updated
chunker files
2012-02-07 13:04 sloot
* [r14209] AUTHORS: updated
2012-02-07 12:43 sloot
* [r14208] src/Makefile.am, src/frog-dp-update.sh,
src/frog-update.sh: renamed the script
2012-02-07 11:27 sloot
* [r14207] src/frog-update.sh: small improvement
2012-02-07 10:56 sloot
* [r14206] src/Makefile.am, src/frog-update.sh: added a frog-update
script that downloads and install the dependency parser files.
Bit experimental still
2012-02-07 09:22 sloot
* [r14205] DPconfig/README, src/Frog.cxx, src/iob_tagger_mod.cxx:
make frog tell it's config dir.
adapted README
2012-02-06 21:14 antalb
* [r14204] DPconfig/README: edited the README
2012-02-06 15:51 sloot
* [r14203] configure.ac: bumped version after release
2012-02-06 15:50 sloot
* [r14200] NEWS, src/tst.sh: ouch. forgotten to check in
2012-02-06 14:55 sloot
* [r14198] config/Makefile.am, config/frog.cfg,
config/small-frog.cfg, src/Frog.cxx: attempt to make it smart.
frog installs together with small-frog.cfg.
Whenever a frog.cfg is installed, or otherwise added, that will
take precedence.
2012-02-06 14:38 sloot
* [r14197] src/Frog.cxx: fix
2012-02-06 14:37 sloot
* [r14196] DPconfig/README: better
2012-02-06 13:15 sloot
* [r14194] DPconfig/Frog.mbdp.1.0.dir.ibase,
DPconfig/Frog.mbdp.1.0.dir.ibase.wgt,
DPconfig/Frog.mbdp.1.0.pairs.sampled.ibase,
DPconfig/Frog.mbdp.1.0.pairs.sampled.ibase.wgt,
DPconfig/Frog.mbdp.1.0.rels.ibase,
DPconfig/Frog.mbdp.1.0.rels.ibase.wgt, DPconfig/README,
DPconfig/frog.cfg: added a README
set keywords
2012-02-06 11:46 sloot
* [r14193] DPconfig/frog.cfg: added a frog.cfg which includes the
parser
2012-02-06 11:03 sloot
* [r14192] DPconfig, DPconfig/Frog.mbdp.1.0.dir.ibase,
DPconfig/Frog.mbdp.1.0.dir.ibase.wgt,
DPconfig/Frog.mbdp.1.0.pairs.sampled.ibase,
DPconfig/Frog.mbdp.1.0.pairs.sampled.ibase.wgt,
DPconfig/Frog.mbdp.1.0.rels.ibase,
DPconfig/Frog.mbdp.1.0.rels.ibase.wgt,
config/Frog.mbdp.1.0.dir.ibase,
config/Frog.mbdp.1.0.dir.ibase.wgt,
config/Frog.mbdp.1.0.pairs.sampled.ibase,
config/Frog.mbdp.1.0.pairs.sampled.ibase.wgt,
config/Frog.mbdp.1.0.rels.ibase,
config/Frog.mbdp.1.0.rels.ibase.wgt, config/Makefile.am,
config/frog.cfg: moved DP files to own dir.
No longer install or package those files.
2012-02-06 11:02 sloot
* [r14191] src/Configuration.cxx, src/Frog.cxx: Frog now checks if
the Dependency Parser is installed. If not:
require --skip=p.
2012-02-02 16:26 sloot
* [r14179] src/Frog.cxx: renamed variables to make things more
clear
2012-02-02 16:01 sloot
* [r14178] src/Frog.cxx: beetje beter
2012-02-02 15:44 sloot
* [r14177] src/Frog.cxx: More refactoring get rid of some of the
zillion Test*() functions
2012-02-02 14:50 sloot
* [r14176] src/Frog.cxx: more cleanup
2012-02-02 14:26 sloot
* [r14175] include/frog/Frog.h, src/Frog.cxx: some code cleanup
2012-02-02 11:35 sloot
* [r14173] tests/tst.ok: now make distcheck works again
2012-02-01 10:35 sloot
* [r14170] config/chunker.train.settings: made the iob chunker a
bit less verbose
2012-02-01 10:28 sloot
* [r14169] src/Frog.cxx: cleaner layout of timing info
2012-02-01 09:46 sloot
* [r14167] src/Frog.cxx: the server now can handle FoLia in AND out
(using -x -X)
documents must be separated by an empty line.
two empty lines will stop the thread.
Code is a bit messy still (cough)
2012-01-31 16:15 sloot
* [r14165] src/Frog.cxx: added mbma declaration
2012-01-31 15:47 sloot
* [r14163] docs/frog.1, src/Frog.cxx: fixed man page
fixed proycons fix so that FoLiA handling is correct more often
2012-01-31 15:21 mvgompel
* [r14160] src/Frog.cxx, src/cgn_tagger_mod.cxx, src/mblem_mod.cxx:
Added FoLiA declaration stuff with references to set URLs that
can be filled later.
2012-01-31 14:27 mvgompel
* [r14158] include/frog/ucto_tokenizer_mod.h: oops
2012-01-31 14:20 mvgompel
* [r14157] src/Frog.cxx, src/ucto_tokenizer_mod.cxx: added support
for FoLiA document IDs using id==
2012-01-31 13:29 sloot
* [r14156] configure.ac: attempt to fix --prefix stuff
2012-01-31 11:48 sloot
* [r14155] NEWS: updated the NEWS
2012-01-31 11:12 sloot
* [r14150] src/Frog.cxx, src/cgn_tagger_mod.cxx: fixed problem with
tags containing //
updated usage()
2012-01-31 11:11 sloot
* [r14149] docs/frog.1: updated man page
2012-01-30 14:18 sloot
* [r14143] src/Frog.cxx: added IOB tags to 'tabbed' output.
complaints welcome
2012-01-30 11:41 sloot
* [r14133] include/frog/cgn_tagger_mod.h, src/cgn_tagger_mod.cxx:
get debug handling in line with other modules
2012-01-30 10:55 sloot
* [r14131] config/frog.cfg, include/frog/iob_tagger_mod.h,
src/iob_tagger_mod.cxx: fixed I wtthout B problem.
2012-01-30 09:35 sloot
* [r14129] src/Frog.cxx: IOB tagging is enabled per default now.
disable with --skip=i
2012-01-30 09:30 sloot
* [r14128] config/Makefile.am: new config
2012-01-30 09:25 sloot
* [r14127] config/chunker.train.5paxes,
config/chunker.train.known.dddfWaa,
config/chunker.train.known.dddfWaa.wgt,
config/chunker.train.known.dwdwdwfWawaw,
config/chunker.train.settings,
config/chunker.train.unknown.chnppddwFasss,
config/chunker.train.unknown.dwdwdwppsssFawaw: smaller and faster
chunker files
2012-01-26 15:52 sloot
* [r14121] src/Frog.cxx, src/iob_tagger_mod.cxx: IOB only when
--skip=i (sic!)
removed debug lines
2012-01-26 15:22 sloot
* [r14120] config/Makefile.am, config/chunker.train.10paxes,
config/chunker.train.known.dwdwdwfWawaw,
config/chunker.train.lex, config/chunker.train.lex.ambi.05,
config/chunker.train.settings, config/chunker.train.top1000,
config/chunker.train.unknown.dwdwdwppsssFawaw, config/frog.cfg,
include/frog/Frog.h, include/frog/iob_tagger_mod.h, src/Frog.cxx,
src/iob_tagger_mod.cxx: added IOB chunker (experimental)
2012-01-26 13:24 sloot
* [r14117] src/Frog.cxx: fix. folia::Document doesn't have a
working copy/assignment operator
2012-01-26 13:04 sloot
* [r14115] src/Frog.cxx: -x options works for server too
2012-01-26 11:00 sloot
* [r14114] src/Frog.cxx, src/ucto_tokenizer_mod.cxx: refactored
commandline options stuff a bit. It is way too complicated now.
please rethink!
2012-01-25 17:12 sloot
* [r14111] include/frog/ucto_tokenizer_mod.h, src/Frog.cxx,
src/ucto_tokenizer_mod.cxx: added a '-x' option to parse Folia
input
2012-01-25 15:38 sloot
* [r14110] include/frog/Makefile.am, include/frog/iob_tagger_mod.h,
src/Frog.cxx, src/Makefile.am, src/iob_tagger_mod.cxx: added iob
stuff, and removed ner garbage
2012-01-25 15:11 sloot
* [r14108] include/frog/ucto_tokenizer_mod.h, src/Frog.cxx,
src/mblem_mod.cxx, src/ucto_tokenizer_mod.cxx: small improvements
2012-01-25 13:31 sloot
* [r14107] config/frog.cfg, include/frog/Frog.h,
include/frog/Makefile.am, include/frog/cgn_tagger_mod.h,
include/frog/mblem_mod.h, include/frog/mbma_mod.h,
include/frog/mwu_chunker_mod.h,
include/frog/ucto_tokenizer_mod.h, src/Frog.cxx, src/Makefile.am,
src/cgn_tagger_mod.cxx, src/mblem_mod.cxx, src/mbma_mod.cxx,
src/mwu_chunker_mod.cxx, src/ucto_tokenizer_mod.cxx: finally!
sorted out most of the logging hassle.
every module has it own Logstream with own id
No more mixup when running in parallel. (ahum: one problem left)
2012-01-24 09:27 sloot
* [r14105] include/frog/ucto_tokenizer_mod.h,
src/ucto_tokenizer_mod.cxx: get more in line with other modules
2012-01-24 08:58 sloot
* [r14104] include/frog/Makefile.am, include/frog/cgn_tagger_mod.h,
include/frog/mbma_mod.h, include/frog/ucto_tokenizer_mod.h,
src/Frog.cxx, src/Makefile.am, src/cgn_tagger_mod.cxx,
src/ucto_tokenizer_mod.cxx: moved most tokenizer stuff to one
"module". Bit more cleansing to do
renamed MBTagger class to CGNTagger class
2012-01-23 10:15 sloot
* [r14093] configure.ac, m4/ax_icu_check.m4: rather desperate
attempt to make configure work on Mac
2012-01-19 11:59 sloot
* [r14092] NEWS, src/Frog.cxx: removed useless (I hope...) loop
2012-01-19 10:31 sloot
* [r14091] NEWS, src/Frog.cxx: argh!!!!
2012-01-12 16:47 sloot
* [r13990] frog.spec: was moved to Timbl-dev
2012-01-12 15:09 sloot
* [r13986] src/Frog.cxx: small improvement
2012-01-12 14:57 sloot
* [r13985] configure.ac: bumped version after Release
2012-01-12 14:57 sloot
* [r13983] src/Frog.cxx: last minute fix
2012-01-12 13:51 sloot
* [r13981] NEWS: typo
2012-01-11 14:55 sloot
* [r13963] NEWS: updated
2012-01-11 14:49 sloot
* [r13962] src/Frog.cxx: split a long function into two
2012-01-11 14:36 mvgompel
* [r13961] src/Frog.cxx: moved omp_set_threads to main
2012-01-11 14:23 mvgompel
* [r13959] src/Frog.cxx: No parallelisation in server mode (would
fork on each snippet, too expensive)
2012-01-11 14:03 mvgompel
* [r13957] src/Frog.cxx: different timer behaviour in server mode
2012-01-11 10:44 sloot
* [r13948] include/frog/mbma_mod.h, src/Frog.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx: added more openMp directives
to avoid race problems
2012-01-10 17:43 sloot
* [r13946] configure.ac, src/Frog.cxx: cleaned up configure.
Detected a small problem in the fly...
2012-01-10 15:32 sloot
* [r13938] configure.ac: Bumped version after Release
2012-01-10 12:03 sloot
* [r13924] configure.ac: forgotten to Bump :{
2012-01-10 11:51 sloot
* [r13923] NEWS: updated NEWS
2012-01-09 11:41 sloot
* [r13913] NEWS, src/Frog-util.cxx: bug fix
2012-01-06 16:03 mvgompel
* [r13898] src/cgn_tagger_mod.cxx: typo: refl1 -> refl
2012-01-05 11:16 sloot
* [r13879] NEWS, src/Parser.cxx: added pid to intermediate files
2012-01-02 13:47 sloot
* [r13840] README, include/frog/Configuration.h,
include/frog/Frog.h, include/frog/Parser.h,
include/frog/cgn_tagger_mod.h, include/frog/mblem_mod.h,
include/frog/mbma_mod.h, include/frog/mwu_chunker_mod.h,
src/Configuration.cxx, src/Frog-util.cxx, src/Frog.cxx,
src/Parser.cxx, src/cgn_tagger_mod.cxx, src/mblem_mod.cxx,
src/mbma_mod.cxx, src/mwu_chunker_mod.cxx: It is 2012!
2012-01-02 13:31 sloot
* [r13839] NEWS, src/Frog.cxx: small fix for GNU/Hurd
2011-12-22 11:30 sloot
* [r13782] src/Frog-util.cxx: fixed small memoryleak
2011-12-22 10:51 sloot
* [r13780] docs/frog.1: updated man page
2011-12-22 10:42 sloot
* [r13779] src/Frog.cxx: added a --xmldir option. Modified -o and
-X options.
Now you can frog a whole dir (--testdir option) and save
the output in one dir (--outputdir option) and the FoLiA
XML in another dir (--xmldir option)
2011-12-21 14:50 mvgompel
* [r13769] src/Frog.cxx: die on failure to bind to port
2011-12-21 14:31 sloot
* [r13768] configure.ac: bump version after release
2011-12-21 14:12 sloot
* [r13766] configure.ac: grmbl
2011-12-21 13:52 sloot
* [r13765] src/Frog.cxx, src/Parser.cxx, tests/tst.ok: small
cleanup
fixed 'make check'
2011-12-21 12:07 sloot
* [r13763] src/Parser.cxx, src/mblem_mod.cxx, src/mbma_mod.cxx,
src/mwu_chunker_mod.cxx: cleaned up some namespace mess
2011-12-15 16:49 sloot
* [r13710] src/Parser.cxx: ok. last desparate attempt.
It seems to work now
2011-12-15 15:29 sloot
* [r13709] src/Parser.cxx: use an other way off setting the import
path.
Now frog can also find .py files in the
/usr/lib/pymodules/python2.x
directory that the debian installer uses
2011-12-13 14:39 sloot
* [r13685] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
fixed a leak
2011-12-13 13:15 sloot
* [r13683] include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/mwu_chunker_mod.cxx: mwu cleanup
2011-12-13 10:33 sloot
* [r13679] src/Frog.cxx, src/Parser.cxx, src/cgn_tagger_mod.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx, src/mwu_chunker_mod.cxx:
reshuffled again to use POS tags with head attribute
2011-12-12 16:07 sloot
* [r13672] src/Frog.cxx, src/Parser.cxx, src/mbma_mod.cxx: attempt
to make multithreading a bit more reliable
2011-12-08 10:52 sloot
* [r13661] src/Frog.cxx, src/Parser.cxx, src/mblem_mod.cxx,
src/mbma_mod.cxx, src/mwu_chunker_mod.cxx: adapted to changing
libfolia API
2011-12-06 16:44 sloot
* [r13653] src/Frog.cxx, src/Parser.cxx, src/cgn_tagger_mod.cxx,
src/mwu_chunker_mod.cxx: libfolia API change!
2011-12-06 15:14 sloot
* [r13649] configure.ac, include/frog/Parser.h,
include/frog/cgn_tagger_mod.h, include/frog/mblem_mod.h,
include/frog/mbma_mod.h, include/frog/mwu_chunker_mod.h,
src/Frog.cxx, src/Parser.cxx, src/cgn_tagger_mod.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx, src/mwu_chunker_mod.cxx:
adapted to change in libfolia: AbstractElement ==> FoliaElement
2011-12-06 14:24 sloot
* [r13642] src/cgn_tagger_mod.cxx: cgn tag ==> subset translations
in a tabel now.
Should be a configuration file of course
2011-12-06 11:24 sloot
* [r13641] src/mbma_mod.cxx: more cleanup
2011-12-06 11:08 sloot
* [r13640] include/frog/mbma_mod.h, src/mbma_mod.cxx: more cleanup
2011-12-06 10:07 sloot
* [r13635] include/frog/cgn_tagger_mod.h,
include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/cgn_tagger_mod.cxx, src/mwu_chunker_mod.cxx: more
folianizing.
folia classes E-MAIL and WWW-URL ==> SPEC(symb)
2011-12-06 08:53 sloot
* [r13634] include/frog/mblem_mod.h, src/Frog.cxx,
src/mblem_mod.cxx: more cleanup, more folia
2011-12-06 08:13 sloot
* [r13633] src/Frog.cxx: added -X option to save results in FoLiA
XML format.
2011-12-05 16:43 sloot
* [r13631] src/cgn_tagger_mod.cxx, src/mblem_mod.cxx: use ucto tags
SMILEY and KNOWN-ABBREVIATION to modify the POS tags to SPEC()
2011-12-05 15:40 sloot
* [r13629] include/frog/mbma_mod.h, src/Frog.cxx, src/Parser.cxx,
src/cgn_tagger_mod.cxx, src/mbma_mod.cxx: Tagger result is now
split into separate <feat> nodes
SPEC() always gets confidence 1.0
2011-11-29 10:03 sloot
* [r13617] src/mblem_mod.cxx: small cleanup
2011-11-28 15:41 sloot
* [r13614] include/frog/Makefile.am, include/frog/cgn_tagger_mod.h,
include/frog/tagger_mod.h, src/Frog.cxx, src/Makefile.am,
src/cgn_tagger_mod.cxx, src/tagger_mod.cxx: renamed tagger+mod to
cgn_tagger_mod
2011-11-24 16:44 sloot
* [r13578] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
more cleaning done
2011-11-24 16:25 sloot
* [r13577] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
ok, new cleaning attempt
2011-11-24 15:53 sloot
* [r13576] include/frog/tagger_mod.h, src/Frog.cxx,
src/tagger_mod.cxx: move a lot code from main progrtam to tagger
module
2011-11-24 15:31 sloot
* [r13575] include/frog/mblem_mod.h, include/frog/mbma_mod.h,
include/frog/mwu_chunker_mod.h, src/Frog.cxx, src/mblem_mod.cxx,
src/mbma_mod.cxx, src/mwu_chunker_mod.cxx: more cleanup
2011-11-24 14:13 sloot
* [r13573] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
reverted to old mwu module.
something was broken. rethinking later…
2011-11-24 13:22 sloot
* [r13572] include/frog/tagger_mod.h, src/tagger_mod.cxx: we need
thes too, then
2011-11-24 13:21 sloot
* [r13571] include/frog/Makefile.am, src/Frog.cxx, src/Makefile.am:
started to implement a tagger module.
should make adding another one more easy
2011-11-24 10:03 sloot
* [r13570] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
this realy cleans up
2011-11-23 11:46 sloot
* [r13563] include/frog/mwu_chunker_mod.h, src/mwu_chunker_mod.cxx:
cleanup
2011-11-23 11:26 sloot
* [r13562] include/frog/Parser.h, include/frog/mwu_chunker_mod.h,
src/Parser.cxx, src/mwu_chunker_mod.cxx: cleanup continues
2011-11-22 16:37 sloot
* [r13561] include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/mwu_chunker_mod.cxx: next cleanup step
lot to do still!
2011-11-22 13:51 sloot
* [r13560] include/frog/FrogData.h, include/frog/Makefile.am,
include/frog/Parser.h, src/Frog.cxx, src/FrogData.cxx,
src/Makefile.am, src/Parser.cxx: first cleanup step
2011-11-22 13:38 sloot
* [r13559] include/frog/Parser.h, src/Frog.cxx, src/Parser.cxx: now
we are able to handle all based on a FoLiA document.
Next step: a lot of cleaning
2011-11-17 16:36 sloot
* [r13557] src/Parser.cxx: The parser now sort-of adds dependencies
to the FoLia doc.
MWU' will fail
2011-11-15 16:28 sloot
* [r13549] include/frog/Parser.h, src/Frog.cxx, src/FrogData.cxx,
src/Parser.cxx: started to modify the parser wrapper for FoLiA
usage.
Almost works, but needs libfolia extensions that Maarten forgot
2011-11-14 16:26 sloot
* [r13547] include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx, src/mwu_chunker_mod.cxx:
alles tot de parser werkt nu "folia-based".
Parser nog niet!!!!
Alles is nog wel wat houterig.
2011-11-10 14:36 sloot
* [r13537] include/frog/Frog.h, include/frog/mblem_mod.h,
include/frog/mbma_mod.h, src, src/Frog-util.cxx, src/Frog.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx, src/tst.sh, tests,
tests/Makefile.am, tests/test.txt, tests/tst.ok, tests/tst.txt:
this version builds a FoLiA tree in parallel with the normal
processing.
This is not finished yet, and slows down processing too.
The output is still "old style" and seems to be OK still.
The produced FoLiA doc is dumped at the end for informational
purposes.
Do not upgrade to this version please!
2011-11-03 15:57 sloot
* [r13516] Makefile.am, configure.ac, src/Frog.cxx,
src/Makefile.am, src/tst.sh, test.txt, tests, tests/Makefile.am,
tests/test.txt, tests/tst.ok: added a 'make check' / 'make
distcheck' target
Frog now works with both Mbt 3.2.6 and higer versions
2011-11-03 09:33 sloot
* [r13513] NEWS, configure.ac, include/frog/Frog.h, src/Frog.cxx,
src/mblem_mod.cxx, src/mbma_mod.cxx: merged with the foliabased
branch. folia rulezzzz
2011-10-25 13:06 sloot
* [r13460] NEWS: NEWS was not updated for a while. what's new?
2011-10-24 14:23 sloot
* [r13450] configure.ac: seems to work well with older Mbt too
2011-08-31 15:13 sloot
* [r13056] config/Frog.mbt.1.0.settings, configure.ac,
src/Frog.cxx: fixed a problem in the settings.
Depends on new Mbt because we us +vcf to call the tagger
2011-08-31 09:36 sloot
* [r13045] docs/frog.1, src/Frog.cxx: made -V (and --version)
consistent
2011-08-31 08:17 sloot
* [r13038] configure.ac: Bumped version after release
2011-08-23 13:22 sloot
* [r12954] include/frog/Frog.h, src/Frog.cxx: numb change
2011-08-23 12:36 sloot
* [r12952] configure.ac: bumped version after release
2011-08-23 12:33 sloot
* [r12951] NEWS: release!
2011-08-23 12:13 sloot
* [r12948] config/.cvsignore, include/.cvsignore,
include/frog/.cvsignore, src/.cvsignore: soem remains form the
past removed
2011-08-23 10:29 sloot
* [r12944] NEWS, docs/frog.1: NEWS
man page update
2011-08-23 10:25 sloot
* [r12943] src/Frog.cxx: reversed -Q behaviour
2011-08-22 14:08 sloot
* [r12933] configure.ac: lower version of ucto works too
2011-08-22 13:30 sloot
* [r12929] configure.ac, src/Frog.cxx: adapted to changed ucto API.
Now the correct ucto config is used (I hope)
2011-06-08 14:25 sloot
* [r10463] src/Frog.cxx: oesp
2011-06-08 14:19 sloot
* [r10462] src/Frog.cxx: Use the same Tagger commandline arguments
both for Server and Normal mode!
2011-06-08 13:57 mvgompel
* [r10460] src/Frog.cxx: added option to disable quote detection in
tokeniser
2011-05-23 10:50 sloot
* [r10161] src/Frog.cxx: zo beter Maarten?
2011-05-12 13:26 sloot
* [r9905] NEWS: news
2011-05-12 13:23 sloot
* [r9904] src/mwu_chunker_mod.cxx: avoid scientific notation
2011-05-12 12:50 sloot
* [r9902] config/Frog.mbt.1.0.settings, configure.ac,
include/frog/mwu_chunker_mod.h, src/Frog.cxx,
src/mwu_chunker_mod.cxx: added a confidence column. Needs the
latest and greatest Timbl and Mbt.
2011-05-12 10:16 antalb
* [r9882] config/Frog.mbt.1.0.known.dddwfWawa,
config/Frog.mbt.1.0.settings: updated the Frog MBT known ibase
with class distributions (+D)
2011-05-11 14:32 sloot
* [r9865] src/Frog.cxx: even for PassThru we want tokenizer config
to be present. We are going to use ucto anyway.
Als make sure to set the tokenizer debug level.
2011-05-11 13:22 sloot
* [r9864] config/Makefile.am, config/tokconfig-de,
config/tokconfig-en, config/tokconfig-fr, config/tokconfig-it,
config/tokconfig-nl: No longer install and maintain ucto files
here!
Don't install non-dutch stuff. It is incomplete.
2011-04-27 16:49 mvgompel
* [r9731] configure.ac: version bump after release
2011-04-27 16:37 mvgompel
* [r9728] NEWS, configure.ac, src/Frog.cxx: moved nasty sentence
per line patch away, support now in ucto itself
2011-04-19 14:53 mvgompel
* [r9588] configure.ac: version update for next round
2011-04-19 14:52 mvgompel
* [r9587] NEWS: news update
2011-04-19 14:38 mvgompel
* [r9585] src/Frog.cxx: Fixed max buffer size problem (a bit
patchy, but ok)
2011-04-18 14:19 sloot
* [r9558] configure.ac: bumped version after release
2011-04-18 13:41 sloot
* [r9556] configure.ac, src/Frog.cxx: ok. for now we do not want to
introduce dependencies on very recent packages.
removed some code and lowered our expectations
2011-04-18 13:05 sloot
* [r9554] NEWS, include/frog/mblem_mod.h, include/frog/mbma_mod.h,
include/frog/mwu_chunker_mod.h, src/Frog.cxx, src/mblem_mod.cxx,
src/mbma_mod.cxx, src/mwu_chunker_mod.cxx: check the init()
functions for failures and stop execution on errors.
2011-04-07 13:07 sloot
* [r9331] src/Frog.cxx: Use TimblServer as include
2011-04-07 10:23 sloot
* [r9319] configure.ac, src/Frog.cxx: now we announe are partners.
Needs the most recent versions of ucto, timbl, timblserver and
mbt
2011-03-31 12:35 sloot
* [r9241] leapfrogged
2011-03-31 12:30 sloot
* [r9237] changed debugging a bit
2011-03-29 14:52 sloot
* [r9217] default is NO debug.
2011-03-29 12:40 sloot
* [r9216] when the [mblem] transFile option is empty (or missing),
mblem no longer translates the tags.
Only useful when mble is als trained without translations.
2011-03-29 12:29 sloot
* [r9214] Bumped version after release
props set
2011-03-24 10:51 sloot
* [r9114] reverted to previous version
2011-03-24 10:44 sloot
* [r9113] reverted to old version
2011-03-23 10:58 sloot
* [r9085] this one too
2011-03-23 10:57 sloot
* [r9084] more decapping
2011-03-22 16:35 antalb
* [r9054] new mbma data
2011-03-22 13:28 sloot
* [r9038] make sure pthreads are used
2011-03-21 16:06 sloot
* [r9002] arghhh
2011-03-21 13:09 sloot
* [r8998] decapped
2011-03-20 14:38 joostvb
* [r8983] typo
2011-03-20 14:37 joostvb
* [r8982] new upstream, new homepage, versioned build-depends
2011-03-20 10:44 joostvb
* [r8979] ship better 0.11.1
2011-03-20 10:42 joostvb
* [r8978] add Frog.1 .so link: consistent with name of binary
2011-03-20 10:13 joostvb
* [r8977] record changes
2011-03-17 09:32 sloot
* [r8897] bumped version
depends on newer ucto (i think)
2011-03-16 16:00 sloot
* [r8890] cleaned up Parser Python meuck
2011-03-16 15:37 sloot
* [r8881] For now python stuff is fixed
we can do better I think
2011-03-16 13:47 sloot
* [r8878] almost -pedantic proof.
Python stuff complains about "warning: ISO C++ 1998 does not
support ‘long long’"
2011-03-16 13:08 sloot
* [r8873] updated the NEWS
2011-03-16 13:03 sloot
* [r8872] make some compilers happy
2011-03-15 16:35 sloot
* [r8870] geen debug=10 in SVN svp
2011-03-15 16:33 sloot
* [r8869] propset
use ICU toLower instead of homegrown decap
2011-03-15 15:52 sloot
* [r8866] decap all words, independent from tag
when tag==SPEC() ignore mblem and mbma results
2011-03-15 14:50 antalb
* [r8865] perhaps, maybe, hopefully fixed the "weesten" issue
2011-03-14 17:49 antalb
* [r8857] let's hope this tree file reverts to the correct encoding
situation
2011-03-14 15:38 antalb
* [r8856] fixed "emmen" and "vrienden" errors
2011-03-14 11:26 sloot
* [r8845] satisfy the compiler
2011-03-14 08:57 sloot
* [r8835] smaal edit
2011-03-12 20:09 joostvb
* [r8820] new upstream, new homepage
2011-03-09 16:02 sloot
* [r8760] removed unwanted options
2011-03-09 15:48 sloot
* [r8759] more detagging )
2011-03-09 14:37 sloot
* [r8758] start to 'untag' mblem
2011-03-09 14:22 sloot
* [r8757] made mbma classify independant from tagger result.
pre and postprocessing still needs that
2011-03-09 13:56 sloot
* [r8756] more cleanup
2011-03-09 13:40 sloot
* [r8755] cleanup.
removed inconvenient options like --vtok --stok.
disables paragraph detection, because it lead to strange results
in tokenizer.getSentenceString()
2011-03-08 10:53 sloot
* [r8743] added a man page
2011-03-04 13:08 mvgompel
* [r8686] added logo
2011-03-01 14:00 sloot
* [r8638] bumped version. seemed a nice moment for 0.11
2011-03-01 13:39 sloot
* [r8635] We need the most recent ucto!
2011-02-28 17:25 mvgompel
* [r8630] when using testdir, ignore hidden files (dotfiles)
2011-02-28 16:13 mvgompel
* [r8626] sentence per line on input side
2011-02-28 15:54 mvgompel
* [r8625] fix
2011-02-28 15:53 mvgompel
* [r8624] prettier help output
2011-02-28 15:49 mvgompel
* [r8623] newline
2011-02-28 15:47 sloot
* [r8621] now bootstrap works
2011-02-27 17:08 joostvb
* [r8598] ship it
2011-02-27 16:53 joostvb
* [r8597] files
2011-02-27 16:02 joostvb
* [r8596] it just might compile
2011-02-27 15:58 joostvb
* [r8595] initial shot at frog rpm
2011-02-27 12:26 joostvb
* [r8589] make sure tmp installpath not encoded in .pyc files
2011-02-27 12:07 joostvb
* [r8588] restart 0.10.4
2011-02-27 12:06 joostvb
* [r8587] upstream rerelease
2011-02-27 12:01 joostvb
* [r8586] ship a better 0.10.3
2011-02-27 11:59 joostvb
* [r8585] install scripts, data and util pythoncode in separate
dirs.
2011-02-27 11:40 joostvb
* [r8584]
2011-02-27 11:38 joostvb
* [r8583] new upstream
2011-02-27 11:38 joostvb
* [r8582] start 0.10.4, tags
2011-02-27 11:28 joostvb
* [r8581] ship it: 0.10.3
2011-02-27 11:24 joostvb
* [r8580] tags
2011-02-27 11:23 joostvb
* [r8579] do not set pythondir to $(PYTHONDIR): it is unneeded for
installation, and breaks "make install prefix=/foo" (used by fink
on Mac OS X, e.g.)
2011-02-27 10:41 joostvb
* [r8577] build-depend upon new split ucto. add python to
build-depends
2011-02-27 10:26 joostvb
* [r8575] first shot at from fink package
2011-02-14 13:49 sloot
* [r8319] added a '-n' option to do 'one sentence per line'
tokenizing.
2011-02-13 07:36 joostvb
* [r8307] start 0.10.3
2011-02-13 07:26 joostvb
* [r8306] ship it: 0.10.2
2011-02-13 07:11 joostvb
* [r8305] do not install ChangeLog. packagers take care of that
2011-02-13 06:56 joostvb
* [r8304] use sysconfdir variable, not hardcoded etc/
2011-02-12 18:49 joostvb
* [r8303] 0.10.1 is released. start 0.10.2
2011-02-12 18:33 joostvb
* [r8302] ship it. version nr in sync with the one found in
configure.ac
2011-02-12 18:27 joostvb
* [r8301] changelog is autogenerate, removed from svn
2011-02-12 18:27 joostvb
* [r8300] record changes
2011-02-12 17:35 joostvb
* [r8295] lets call this "frog", not "Frog": sane tarbaball name
2011-02-12 17:31 joostvb
* [r8294] merge frog-ng patch to deal with unavailable icu 4.6
2011-02-10 16:05 sloot
* [r8287] we need ucto >= 0.3.6
2011-02-10 15:52 sloot
* [r8285] added -e option to set the encoding
2011-02-09 10:15 sloot
* [r8268] changed displaying of MWU's.
Added (fatal) error when an entry in the MWU file is invalid
2011-02-09 09:04 sloot
* [r8266] Removed invalid (non MWU) entry
2011-02-08 11:05 antalb
* [r8252] moved to a more comprehensive MWU file based on the Lassy
+ Alpino treebanks
2011-02-07 20:32 antalb
* [r8248] another fix
2011-02-07 20:29 antalb
* [r8247] little fix
2011-02-07 18:38 antalb
* [r8244] replaced old & small parser files by Frog.mbdp.1.0 parser
files
2011-02-07 15:23 sloot
* [r8240] renamed groupSize
bumped version
fixed install for new tagger files
2011-02-07 15:00 antalb
* [r8239] removed older cgn-wotan-dcoi.mbt tagger files
2011-02-07 14:56 antalb
* [r8238] adding new Frog.mbt.1.0 tagger files, also updated
frog.cfg
2011-02-02 14:18 sloot
* [r8187] tags and props
2011-02-02 13:36 sloot
* [r8175] it's another year
2011-02-02 12:00 sloot
* [r8173] not needed anymore
2011-02-02 11:58 sloot
* [r8172] don't use private unicode_utils. ucto provides what we
need
2011-02-01 15:10 sloot
* [r8150] fixed include
2011-01-31 15:58 sloot
* [r8124] Removed redundant -s from tagger command
disabled -s from usage. Tt is not used.
2011-01-31 13:39 sloot
* [r8115] bumped version
now uses ucto-icu.pc
2011-01-27 11:14 sloot
* [r8031] bumped version after release
2011-01-27 09:24 sloot
* [r8026] props set
2011-01-27 09:23 sloot
* [r8025] made it work with recent ucto
addes some TODO
2011-01-13 13:40 sloot
* [r7812] explicitly set theErrLog
2011-01-11 14:41 mvgompel
* [r7782] same fixes as in ucto
2011-01-10 15:46 mvgompel
* [r7766] Re-added support for pre-tokenised data, bypassing most
of ucto
2011-01-10 15:14 mvgompel
* [r7764] re-enabled --tok , but it's a bit of a secret function
now, best use ucto directly for only tokenisation.
2011-01-10 15:01 mvgompel
* [r7763] Refactored main Test function, containing main
tokenisation loop, now much cleaner and compliant with new API
2011-01-05 16:16 sloot
* [r7721] simple identification of ourself
2011-01-05 15:54 mvgompel
* [r7718] small version bump
2011-01-05 15:52 sloot
* [r7717] not needed in SVN
is auto installed
2011-01-05 15:33 mvgompel
* [r7715] adapted to new ucto API
2010-12-16 10:24 sloot
* [r7444] changed illegal '=='
2010-12-15 11:49 sloot
* [r7407] use ucto to also get ICU ok (experimental)
2010-12-14 16:58 sloot
* [r7397] Always ICU please!
2010-12-14 16:57 sloot
* [r7396] We don't support Frog without ICU
2010-12-13 15:53 sloot
* [r7368] small ucto tokenizer interface change
2010-12-13 15:13 sloot
* [r7365] knip/plak foutje
2010-12-13 14:54 sloot
* [r7362] propset
2010-12-13 14:51 sloot
* [r7361] use ucto lib!
2010-12-13 14:51 sloot
* [r7360] no longer needed. We use ucto
2010-12-13 14:42 sloot
* [r7359] removed from trunk. see FrogNG branch
2010-12-07 09:59 sloot
* [r7165] added standard © info
2010-12-07 09:59 sloot
* [r7164] unused file
2010-12-06 16:20 sloot
* [r7157] make compiler happy
2010-12-01 16:27 sloot
* [r7088] small edits to make the compiler happy
2010-10-26 14:35 mvgompel
* [r6675] last move
2010-10-26 14:33 mvgompel
* [r6674] moving Frog stuff to trunk
2010-10-26 14:29 mvgompel
* [r6673] moving stuff to new trunk, first test
2010-10-26 10:29 mvgompel
* [r6657] added trunk
|