1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431
|
/* rainbow - a document classification front-end to libbow. */
/* Copyright (C) 1997, 1998, 1999, 2000 Andrew McCallum
Written by: Andrew Kachites McCallum <mccallum@cs.cmu.edu>
This file is part of the Bag-Of-Words Library, `libbow'.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
as published by the Free Software Foundation, version 2.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA */
#include <bow/libbow.h>
#include <argp.h>
#include <argp/argp1.h> /* drapp-2/11 */
#include <setjmp.h> /* drapp-2/11 */
#include <errno.h> /* needed on DEC Alpha's */
#include <unistd.h> /* for getopt(), maybe */
#include <stdlib.h> /* for atoi() */
#include <string.h> /* for strrchr() */
#include <strings.h> /* for bzero() on Solaris */
#include <sys/types.h>
#include <sys/socket.h>
#ifndef WINNT
#include <sys/un.h>
#endif /* WINNT */
#include <netinet/in.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
static int rainbow_sockfd;
/* The version number of this program. */
#define RAINBOW_MAJOR_VERSION 0
#define RAINBOW_MINOR_VERSION 2
#define rainbow_default_method (&bow_method_naivebayes)
/* Definitions for using argp command-line processing */
const char *argp_program_version =
"rainbow "
STRINGIFY(RAINBOW_MAJOR_VERSION) "." STRINGIFY(RAINBOW_MINOR_VERSION);
const char *argp_program_bug_address = "<mccallum@cs.cmu.edu>";
static char rainbow_argp_doc[] =
"Rainbow -- a document classification front-end to libbow";
static char rainbow_argp_args_doc[] = "[ARG...]";
enum {
PRINT_COUNTS_FOR_WORD_KEY = 10000,
INFOGAIN_PAIR_VECTOR_KEY,
USE_VOCAB_IN_FILE_KEY,
NO_LISP_SCORE_TRUNCATION_KEY,
SERVER_KEY,
FORKING_SERVER_KEY,
PRINT_DOC_NAMES_KEY,
PRINT_LOG_ODDS_RATIO_KEY,
WORD_PROBABILITIES_KEY,
PRINT_WORD_PROBABILITIES_KEY,
INDEX_MATRIX_KEY,
HIDE_VOCAB_IN_FILE_KEY,
HIDE_VOCAB_INDICES_IN_FILE_KEY,
TEST_ON_TRAINING_KEY,
VPC_ONLY_KEY,
BUILD_AND_SAVE,
TEST_FROM_SAVED,
USE_SAVED_CLASSIFIER_KEY,
PRINT_DOC_LENGTH_KEY,
INDEX_LINES_KEY,
};
static struct argp_option rainbow_options[] =
{
{0, 0, 0, 0,
"For building data structures from text files:", 20},
{"index", 'i', 0, 0,
"Tokenize training documents found under directories ARG... "
"(where each ARG directory contains documents of a different class), "
"build token-document matrix, and save it to disk."},
{"index-matrix", INDEX_MATRIX_KEY, "FORMAT", 0,
"Read document/word statistics from a file in the format produced by "
"--print-matrix=FORMAT. See --print-matrix for details about FORMAT."},
{"index-lines", INDEX_LINES_KEY, "FILENAME", 0,
"Read documents' contents from the filename argument, one-per-line. "
"The first two "
"space-delimited words on each line are the document name and class name "
"respectively"},
#if VPC_ONLY
{"vpc-only", VPC_ONLY_KEY, 0, 0,
"Only create a vector-per-class barrel. Do not create a document barrel. "
"Useful for creating barrels to be used with --query-server. "
"NOTE: This is a hack which assumes multinomial and a naive Bayes-like "
"method. Not meant for general purpose usage!"},
#endif
{0, 0, 0, 0,
"For doing document classification using the token-document matrix "
"built with -i:", 21},
{"query", 'q', "FILE", OPTION_ARG_OPTIONAL,
"Tokenize input from stdin [or FILE], then print classification scores."},
{"output-text", 'o', "FILE", OPTION_HIDDEN,
"Intead of outputing the classnames, output the contents of FILE in the "
"data directory of the winning class, (for use as email auto-answer)."},
{"repeat", 'r', 0, 0,
"Prompt for repeated queries."},
{"query-server", SERVER_KEY, "PORTNUM", 0,
"Run rainbow in server mode, listening on socket number PORTNUM. "
"You can try it by executing this command, then in a different shell "
"window on the same machine typing `telnet localhost PORTNUM'."},
{"forking-query-server", FORKING_SERVER_KEY, "PORTNUM", 0,
"Same as `--query-server', except allow multiple clients at once by "
"forking for each client."},
{"print-doc-length", PRINT_DOC_LENGTH_KEY, 0, 0,
"When printing the classification scores for each test document, at the "
"end also print the number of words in the document. This only works "
"with the --test option."},
{0, 0, 0, 0,
"Rainbow-specific vocabulary options:", 22},
{"use-vocab-in-file", USE_VOCAB_IN_FILE_KEY, "FILE", 0,
"Limit vocabulary to just those words read as space-separated strings "
"from FILE. Note that regular lexing is not done on these strings."},
{"hide-vocab-in-file", HIDE_VOCAB_IN_FILE_KEY, "FILE", 0,
"Hide from the vocabulary all words read as space-separated strings "
"from FILE. Note that regular lexing is not done on these strings."},
{"hide-vocab-indices-in-file", HIDE_VOCAB_INDICES_IN_FILE_KEY, "FILE", 0,
"Hide from the vocabulary all words read as space-separated word "
"integer indices from FILE."},
{0, 0, 0, 0,
"Testing documents that were indexed with `-i':", 23},
{"test", 't', "N", 0,
"Perform N test/train splits of the indexed documents, and output "
"classifications of all test documents each time. The parameters of "
"the test/train splits are determined by the option `--test-set' "
"and its siblings"},
{"test-on-training", TEST_ON_TRAINING_KEY, "N", 0,
"Like `--test', but instead of classifing the held-out test documents "
"classify the training data in leave-one-out fashion. Perform N trials."},
#if 0
{"no-lisp-score-truncation", NO_LISP_SCORE_TRUNCATION_KEY, 0, 0,
"Normally scores that are lower than 1e-35 are printed as 0, "
"because our LISP reader can't handle floating point numbers smaller "
"than 1e-35. This option turns off that truncation."},
#endif
{0, 0, 0, 0,
"Testing documents that are specified on the command line:", 5},
{"test-files", 'x', 0, 0,
"In same format as `-t', output classifications of documents in "
"the directory ARG The ARG must have the same subdir names as the "
"ARG's specified when --index'ing."},
{"test-files-loo", 'X', 0, 0,
"Same as --test-files, but evaulate the files assuming that they "
"were part of the training data, and doing leave-one-out "
"cross-validation. This only works with the classification methods "
"that support leave-one-out evaluation"},
{0, 0, 0, 0,
"Diagnostics:", 24},
{"print-word-infogain", 'I', "N", 0,
"Print the N words with the highest information gain."},
{"print-word-pair-infogain", INFOGAIN_PAIR_VECTOR_KEY, "N", 0,
"Print the N word-pairs, which when co-occuring in a document, have "
"the highest information gain. (Unfinished; ignores N.)"},
{"print-log-odds-ratio", PRINT_LOG_ODDS_RATIO_KEY, "N", OPTION_ARG_OPTIONAL,
"For each class, print the N words with the highest log odds ratio score. "
"Default is N=10."},
{"print-word-weights", 'W', "CLASSNAME", 0,
"Print the word/weight vector for CLASSNAME, "
"sorted with high weights first. The meaning of `weight' is undefined."},
{"print-word-probabilities", PRINT_WORD_PROBABILITIES_KEY, "CLASS", 0,
"Print P(w|CLASS), the probability in class CLASS "
"of each word in the vocabulary."},
{"print-word-foilgain", 'F', "CLASSNAME", 0,
"Print the word/foilgain vector for CLASSNAME. See Mitchell's "
"Machine Learning textbook for a description of foilgain."},
{"print-matrix", 'B', "FORMAT", OPTION_ARG_OPTIONAL,
"Print the word/document count matrix in an awk- or perl-accessible "
"format. Format is specified by the following letters:\n"
"print all vocab or just words in document:\n"
" a=all OR s=sparse\n"
"print counts as ints or binary:\n"
" b=binary OR i=integer\n"
"print word as:\n "
" n=integer index OR w=string OR e=empty OR c=combination\n"
"The default is the last in each list"},
{"print-barrel", 'B', "FORMAT",
OPTION_ARG_OPTIONAL | OPTION_ALIAS | OPTION_HIDDEN},
{"print-word-counts", PRINT_COUNTS_FOR_WORD_KEY, "WORD", 0,
"Print the number of times WORD occurs in each class."},
{"print-counts-for-word", PRINT_COUNTS_FOR_WORD_KEY, "WORD",
OPTION_ALIAS | OPTION_HIDDEN},
{"print-doc-names", PRINT_DOC_NAMES_KEY, "TAG", OPTION_ARG_OPTIONAL,
"Print the filenames of documents contained in the model. "
"If the optional TAG argument is given, print only the documents "
"that have the specified tag, where TAG might be `train', `test', etc."},
{"build-and-save", BUILD_AND_SAVE, 0, 0,
"Builds a class model and saves it to disk. This option is unstable."},
{"test-from-saved", TEST_FROM_SAVED, 0, 0,
"Classify using the class model saved to disk. This option is unstable."},
{"use-saved-classifier", USE_SAVED_CLASSIFIER_KEY, 0, 0,
"Don't ever re-train the classifier. Use whatever class barrel was saved "
"to disk. This option designed for use with --query-server"},
{ 0 }
};
struct rainbow_arg_state
{
/* Is this invocation of rainbow to do indexing or querying? */
enum {
rainbow_indexing,
rainbow_querying,
rainbow_query_serving,
rainbow_testing, /* many queries, from train/test split */
rainbow_file_testing, /* many queries, from a directory */
rainbow_infogain_printing,
rainbow_infogain_pair_printing,
rainbow_logodds_printing,
rainbow_weight_vector_printing,
rainbow_foilgain_printing,
rainbow_barrel_printing,
rainbow_word_count_printing,
rainbow_doc_name_printing,
rainbow_printing_word_probabilities,
rainbow_building_and_saving,
rainbow_testing_from_saved_model,
rainbow_indexing_lines
} what_doing;
/* Where to find query text, or if NULL get query text from stdin */
const char *query_filename;
/* Name of file to find in each class directory; output the contents
of this file instead of the classname. */
const char *output_filename;
/* If we are doing test, how many test are we doing? */
int num_trials;
/* If we are printing info gain stats, how many of the top words? */
int infogain_words_to_print;
/* If we are printing log odds ratio stats, how many of the top words? */
int logodds_words_to_print;
/* Used for selecting the class for which the weight-vector will be
printed. */
const char *printing_class;
/* Index into argv of the non-option args at the end (i.e. for -i
classnames or -x filenames, etc). */
int non_option_argi;
int repeat_query;
bow_int4str *vocab_map;
bow_int4str *hide_vocab_map;
int use_lisp_score_truncation;
int loo_cv;
const char *server_port_num;
const char *barrel_printing_format;
const char *hide_vocab_indices_filename;
int test_on_training;
int use_saved_classifier;
int forking_server;
#if VPC_ONLY
/* Set if we only want to build a class barrel */
int vpc_only;
#endif
int print_doc_length;
const char *indexing_lines_filename;
} rainbow_arg_state;
static error_t
rainbow_parse_opt (int key, char *arg, struct argp_state *state)
{
switch (key)
{
case 'q':
rainbow_arg_state.what_doing = rainbow_querying;
rainbow_arg_state.query_filename = arg;
break;
case FORKING_SERVER_KEY:
rainbow_arg_state.forking_server = 1;
case SERVER_KEY:
rainbow_arg_state.what_doing = rainbow_query_serving;
rainbow_arg_state.server_port_num = arg;
bow_lexer_document_end_pattern = "\n.\r\n";
break;
case 'i':
rainbow_arg_state.what_doing = rainbow_indexing;
break;
case INDEX_MATRIX_KEY:
rainbow_arg_state.what_doing = rainbow_indexing;
rainbow_arg_state.barrel_printing_format = arg;
break;
#if VPC_ONLY
case VPC_ONLY_KEY:
rainbow_arg_state.vpc_only = 1;
break;
#endif
case INDEX_LINES_KEY:
rainbow_arg_state.what_doing = rainbow_indexing_lines;
rainbow_arg_state.indexing_lines_filename = arg;
break;
case 'r':
rainbow_arg_state.repeat_query = 1;
break;
case USE_VOCAB_IN_FILE_KEY:
rainbow_arg_state.vocab_map = bow_int4str_new_from_string_file (arg);
bow_verbosify (bow_progress,
"Using vocab with %d words from file `%s'\n",
rainbow_arg_state.vocab_map->str_array_length, arg);
bow_word2int_do_not_add = 1;
break;
case HIDE_VOCAB_IN_FILE_KEY:
rainbow_arg_state.hide_vocab_map = bow_int4str_new_from_string_file(arg);
break;
case HIDE_VOCAB_INDICES_IN_FILE_KEY:
rainbow_arg_state.hide_vocab_indices_filename = arg;
break;
/* Switches for testing */
case 't':
rainbow_arg_state.what_doing = rainbow_testing;
rainbow_arg_state.num_trials = atoi (arg);
break;
case TEST_ON_TRAINING_KEY:
rainbow_arg_state.what_doing = rainbow_testing;
rainbow_arg_state.test_on_training = 1;
rainbow_arg_state.num_trials = atoi (arg);
break;
case NO_LISP_SCORE_TRUNCATION_KEY:
rainbow_arg_state.use_lisp_score_truncation = 0;
break;
/* Switches for file testing */
case 'X':
rainbow_arg_state.loo_cv = 1;
case 'x':
rainbow_arg_state.what_doing = rainbow_file_testing;
break;
/* Switches for diagnostics */
case 'I':
/* Print out ARG number of vocab words ranked by infogain. */
rainbow_arg_state.what_doing = rainbow_infogain_printing;
rainbow_arg_state.infogain_words_to_print = atoi (arg);
break;
case PRINT_LOG_ODDS_RATIO_KEY:
/* Print out ARG number of vocab words ranked by infogain. */
rainbow_arg_state.what_doing = rainbow_logodds_printing;
if (arg)
rainbow_arg_state.logodds_words_to_print = atoi (arg);
break;
case 'W':
/* Print the weight-vector for the named class */
rainbow_arg_state.what_doing = rainbow_weight_vector_printing;
rainbow_arg_state.printing_class = arg;
break;
case 'F':
/* Print the foil gain for the named class */
rainbow_arg_state.what_doing = rainbow_foilgain_printing;
rainbow_arg_state.printing_class = arg;
break;
case 'P':
/* Print the contribution of each word to each class during
scoring. */
bow_print_word_scores = 1;
break;
case 'B':
/* Print the barrel in awk-accessible form to stdout. */
rainbow_arg_state.what_doing = rainbow_barrel_printing;
rainbow_arg_state.barrel_printing_format = arg;
break;
case PRINT_COUNTS_FOR_WORD_KEY:
rainbow_arg_state.what_doing = rainbow_word_count_printing;
rainbow_arg_state.printing_class = arg;
break;
case INFOGAIN_PAIR_VECTOR_KEY:
rainbow_arg_state.what_doing = rainbow_infogain_pair_printing;
rainbow_arg_state.infogain_words_to_print = atoi (arg);
break;
case PRINT_DOC_NAMES_KEY:
rainbow_arg_state.what_doing = rainbow_doc_name_printing;
rainbow_arg_state.printing_class = arg;
break;
case PRINT_WORD_PROBABILITIES_KEY:
rainbow_arg_state.what_doing = rainbow_printing_word_probabilities;
rainbow_arg_state.printing_class = arg;
break;
#if 0
case ARGP_KEY_NO_ARGS:
argp_usage (state);
#endif
case ARGP_KEY_ARG:
/* Now we consume all the rest of the arguments. STATE->next is the
index in STATE->argv of the next argument to be parsed, which is the
first STRING we're interested in, so we can just use
`&state->argv[state->next]' as the value for RAINBOW_ARG_STATE->ARGS.
IN ADDITION, by setting STATE->next to the end of the arguments, we
can force argp to stop parsing here and return. */
rainbow_arg_state.non_option_argi = state->next - 1;
if (rainbow_arg_state.what_doing == rainbow_indexing
&& rainbow_arg_state.barrel_printing_format == NULL
&& state->next == state->argc)
{
/* Only one classname is not enough. */
fprintf (stderr, "Need data from more than one class.\n");
argp_usage (state);
}
state->next = state->argc;
break;
case ARGP_KEY_END:
/* Here we know that STATE->arg_num == 0, since we force argument
parsing to end before any more arguments can get here. */
if (rainbow_arg_state.what_doing == rainbow_indexing
|| rainbow_arg_state.what_doing == rainbow_file_testing)
{
if (state->arg_num == 0)
{
/* Too few arguments. */
fprintf (stderr, "No non-option arguments needed.\n");
argp_usage (state);
}
}
else if (state->arg_num != 0)
{
/* Too many arguments. */
fprintf (stderr, "No non-option arguments needed.\n");
argp_usage (state);
}
break;
case BUILD_AND_SAVE:
rainbow_arg_state.what_doing = rainbow_building_and_saving;
break;
case TEST_FROM_SAVED:
rainbow_arg_state.what_doing = rainbow_testing_from_saved_model;
break;
case USE_SAVED_CLASSIFIER_KEY:
rainbow_arg_state.use_saved_classifier = 1;
break;
case PRINT_DOC_LENGTH_KEY:
rainbow_arg_state.print_doc_length = 1;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static struct argp rainbow_argp =
{ rainbow_options, rainbow_parse_opt, rainbow_argp_args_doc,
rainbow_argp_doc, bow_argp_children};
/* The structures that hold the data necessary for answering a query. */
bow_barrel *rainbow_doc_barrel; /* the stats about words and documents */
bow_barrel *rainbow_class_barrel=NULL; /* the stats about words and classes */
/* The static structure in bow/int4word.c is also used. */
/* Given a fully-specified file path name (all the way from `/'),
return just the last filename part of it. */
static inline const char *
filename_to_classname (const char *filename)
{
#if 0
/* Don't bother stripping off the directory name from the classname.
This way, even when we give rainbow multi-directory
specifications for where to find the data for each class, and
some of the lowest-level directories have the same name, we can
still distinguish between them. */
return filename;
#else
const char *ret;
ret = strrchr (filename, '/');
if (ret)
return ret + 1;
return filename;
#endif
}
/* Writing and reading the word/document stats to disk. */
#define VOCABULARY_FILENAME "vocabulary"
#define DOC_BARREL_FILENAME "doc-barrel"
#define CLASS_BARREL_FILENAME "class-barrel"
#define OUTPUTNAME_FILENAME "outfile"
#define FORMAT_VERSION_FILENAME "format-version"
/* Write the stats in the directory DATA_DIRNAME. */
void
rainbow_archive ()
{
char filename[BOW_MAX_WORD_LENGTH];
char *fnp;
FILE *fp;
strcpy (filename, bow_data_dirname);
strcat (filename, "/");
fnp = filename + strlen (filename);
strcpy (fnp, FORMAT_VERSION_FILENAME);
bow_write_format_version_to_file (filename);
strcpy (fnp, OUTPUTNAME_FILENAME);
fp = bow_fopen (filename, "w");
if (rainbow_arg_state.output_filename)
fprintf (fp, "%s\n", rainbow_arg_state.output_filename);
fclose (fp);
strcpy (fnp, VOCABULARY_FILENAME);
fp = bow_fopen (filename, "wb");
bow_words_write (fp);
fclose (fp);
strcpy (fnp, CLASS_BARREL_FILENAME);
fp = bow_fopen (filename, "wb");
bow_barrel_write (rainbow_class_barrel, fp);
fclose (fp);
strcpy (fnp, DOC_BARREL_FILENAME);
fp = bow_fopen (filename, "wb");
bow_barrel_write (rainbow_doc_barrel, fp);
fclose (fp);
}
/* Read the stats from the directory DATA_DIRNAME. */
void
rainbow_unarchive ()
{
char filename[BOW_MAX_WORD_LENGTH];
char *fnp;
FILE *fp;
char buf[1024];
struct stat st;
int e;
if (rainbow_arg_state.what_doing != rainbow_query_serving)
bow_verbosify (bow_progress, "Loading data files...\n");
strcpy (filename, bow_data_dirname);
strcat (filename, "/");
fnp = filename + strlen (filename);
strcpy (fnp, FORMAT_VERSION_FILENAME);
e = stat (filename, &st);
if (e != 0)
{
/* Assume this means the file doesn't exist, and this archive
was created before BOW_DEFAULT_FORMAT_VERSION was added to
the library. The version number before
BOW_DEFAULT_FORMAT_VERSION was added to the library was 3. */
bow_file_format_version = 3;
}
else
{
bow_read_format_version_from_file (filename);
}
strcpy (fnp, OUTPUTNAME_FILENAME);
fp = fopen (filename, "r");
if (fp)
{
buf[0] = '\0';
fscanf (fp, "%s", buf);
rainbow_arg_state.output_filename = strdup (buf);
fclose (fp);
}
else
{
rainbow_arg_state.output_filename = NULL;
}
strcpy (fnp, VOCABULARY_FILENAME);
fp = bow_fopen (filename, "rb");
bow_words_read_from_fp (fp);
fclose (fp);
strcpy (fnp, CLASS_BARREL_FILENAME);
fp = bow_fopen (filename, "rb");
rainbow_class_barrel = bow_barrel_new_from_data_fp (fp);
/* Don't close it because bow_wi2dvf_dv will still need to read it. */
strcpy (fnp, DOC_BARREL_FILENAME);
fp = bow_fopen (filename, "rb");
rainbow_doc_barrel = bow_barrel_new_from_data_fp (fp);
/* Don't close it because bow_wi2dvf_dv will still need to read it. */
/* Only do this if the document barrel exists */
if (rainbow_doc_barrel && rainbow_doc_barrel->classnames == NULL)
{
int i;
bow_cdoc *cdoc;
rainbow_doc_barrel->classnames = bow_int4str_new (0);
rainbow_class_barrel->classnames = bow_int4str_new (0);
for (i = 0; i < rainbow_class_barrel->cdocs->length; i++)
{
cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs, i);
bow_str2int (rainbow_doc_barrel->classnames,
filename_to_classname (cdoc->filename));
bow_str2int (rainbow_class_barrel->classnames,
filename_to_classname (cdoc->filename));
}
}
/* Don't want doc priors set equal - want class priors set equal */
if (bow_uniform_class_priors)
bow_barrel_set_cdoc_priors_to_class_uniform (rainbow_class_barrel);
/*bow_barrel_set_cdoc_priors_to_class_uniform (rainbow_doc_barrel);*/
}
/* Building the word/document stats. */
/* Traverse the directories CLASSDIR_NAMES, gathering word/document
stats, and write the stats to disk in BOW_DATA_DIRNAME. */
void
rainbow_index (int num_classes, const char *classdir_names[],
const char *exception_name)
{
int class_index;
void do_indexing ()
{
if (rainbow_doc_barrel)
bow_free_barrel (rainbow_doc_barrel);
/* Index all the documents. */
rainbow_doc_barrel = bow_barrel_new (0, 0, sizeof (bow_cdoc), NULL);
#if VPC_ONLY
if (rainbow_arg_state.vpc_only)
rainbow_doc_barrel->is_vpc = 1;
#endif VPC_ONLY
if (bow_argp_method)
rainbow_doc_barrel->method = (rainbow_method*)bow_argp_method;
else
rainbow_doc_barrel->method = rainbow_default_method;
for (class_index = 0; class_index < num_classes; class_index++)
{
bow_verbosify (bow_progress, "Class `%s'\n ",
filename_to_classname (classdir_names[class_index]));
#if HAVE_HDB
if (bow_hdb)
{
/* Gathers stats on all documents in HDB database */
if (bow_barrel_add_from_hdb
(rainbow_doc_barrel,
classdir_names[class_index],
exception_name,
filename_to_classname (classdir_names[class_index]))
== 0)
bow_verbosify (bow_quiet,
"No text files found in database `%s'\n",
classdir_names[class_index]);
}
else
#endif
/* This function traverses the class directory
gathering word/document stats. Return the number of
documents indexed. This gathers stats on individual
documents; we have yet to "sum together the word vectors
of all documents for each particular class". */
if (bow_barrel_add_from_text_dir
(rainbow_doc_barrel,
classdir_names[class_index],
exception_name,
filename_to_classname (classdir_names[class_index]))
== 0)
bow_verbosify (bow_quiet,
"No text files found in directory `%s'\n",
classdir_names[class_index]);
}
if (bow_uniform_class_priors)
bow_barrel_set_cdoc_priors_to_class_uniform (rainbow_doc_barrel);
}
/* Do all the parsing to build a barrel with word counts. */
if (bow_prune_vocab_by_occur_count_n)
{
/* Parse all the documents to get word occurrence counts. */
for (class_index = 0; class_index < num_classes; class_index++)
{
bow_verbosify (bow_progress,
"Class `%s'\n ",
filename_to_classname
(classdir_names[class_index]));
#if HAVE_HDB
if (bow_hdb)
bow_words_add_occurrences_from_hdb
(classdir_names[class_index], "");
else
#endif
bow_words_add_occurrences_from_text_dir
(classdir_names[class_index], "");
}
/* xxx This should be (bow_prune_vocab_by_occur_count_n+1) !! */
bow_words_remove_occurrences_less_than
(bow_prune_vocab_by_occur_count_n);
/* Now insist that future calls to bow_word2int*() will not
register new words. */
bow_word2int_do_not_add = 1;
}
do_indexing ();
if (bow_prune_vocab_by_infogain_n
|| bow_prune_words_by_doc_count_n)
{
if (0)
{
/* Change barrel by removing words with small information gain. */
bow_barrel_keep_top_words_by_infogain
(bow_prune_vocab_by_infogain_n, rainbow_doc_barrel, num_classes);
}
else
{
/* Change vocabulary to remove words with small information gain */
bow_wi2dvf_hide_words_by_doc_count (rainbow_doc_barrel->wi2dvf,
bow_prune_words_by_doc_count_n);
/* The doc count pruning must be before the infogain pruning,
because this function below is the one that re-assigns
the word-indices. */
bow_words_keep_top_by_infogain (bow_prune_vocab_by_infogain_n,
rainbow_doc_barrel,
num_classes);
/* Now insist that future calls to bow_word2int*() will not
register new words. */
bow_word2int_do_not_add = 1;
do_indexing ();
}
}
#if VPC_ONLY
/* Weights have been calculated - all that is left to do is to calculate
* priors */
if (rainbow_arg_state.vpc_only)
{
bow_cdoc *cdocp;
double prior_sum = 0.0;
int num_classes = bow_barrel_num_classes (rainbow_doc_barrel);
int ci;
/* Normalize the class priors */
for (ci=0; ci < num_classes; ci++)
{
cdocp = bow_array_entry_at_index (rainbow_doc_barrel->cdocs, ci);
prior_sum += cdocp->prior;
}
if (prior_sum)
for (ci=0; ci < num_classes; ci++)
{
cdocp = bow_array_entry_at_index (rainbow_doc_barrel->cdocs, ci);
cdocp->prior = cdocp->prior / prior_sum;
}
else
bow_verbosify (bow_progress, "WARNING: All classes have zero prior\n");
/* Recalculate word counts for each class */
{
bow_wv *wv = NULL;
int wvi;
bow_cdoc *cdoc;
int di;
bow_dv_heap *heap = bow_test_new_heap (rainbow_doc_barrel);
while ((di = bow_heap_next_wv (heap, rainbow_doc_barrel, &wv,
bow_cdoc_yes)) != -1)
{
cdoc = bow_array_entry_at_index (rainbow_doc_barrel->cdocs, di);
cdoc->word_count = 0;
for (wvi = 0; wvi < wv->num_entries; wvi++)
{
if (bow_wi2dvf_dv (rainbow_doc_barrel->wi2dvf,
wv->entry[wvi].wi))
cdoc->word_count += wv->entry[wvi].count;
}
}
}
/* We have been (secretly) using the doc_barrel as a class barrel
* all along. Set doc_barrel to NULL so that an empty file is
* written to disk. This will keep future executions from
* attempting to recalculate the class_barrel */
rainbow_class_barrel = rainbow_doc_barrel;
rainbow_doc_barrel = NULL;
return;
}
#endif
/* Combine the documents into class statistics. */
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
}
void
rainbow_index_printed_barrel (const char *filename)
{
rainbow_doc_barrel =
bow_barrel_new_from_printed_barrel_file
(filename, rainbow_arg_state.barrel_printing_format);
/* Combine the documents into class statistics. */
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
}
/* Index each line of ARCHER_ARG_STATE.DIRNAME as if it were a
separate file, named after the line number. Does not deal with labels.*/
void
rainbow_index_lines (const char *filename)
{
static const int max_line_length = 40000;
char *buf;
int n, classindex, nchars;
FILE *fp;
bow_cdoc cdoc;
int di;
char docname[BOW_MAX_WORD_LENGTH];
char classname[BOW_MAX_WORD_LENGTH];
buf = alloca (max_line_length);
rainbow_doc_barrel = bow_barrel_new (0, 0, sizeof (bow_cdoc), NULL);
fp = bow_fopen (filename, "r");
bow_verbosify (bow_progress, "Indexing lines: ");
di = 0;
while (fgets (buf, max_line_length, fp))
{
if (buf[0] == '%')
continue;
n = sscanf (buf, "%s %d %n", docname, &classindex, &nchars);
assert (n >= 2);
if (classindex < 0)
classindex = 0;
sprintf (classname, "class%d", classindex);
if (!(rainbow_doc_barrel->classnames))
rainbow_doc_barrel->classnames = bow_int4str_new (0);
classindex = bow_str2int (rainbow_doc_barrel->classnames, classname);
cdoc.type = bow_doc_train;
cdoc.class = classindex;
/* Set to one so bow_infogain_per_wi_new() works correctly
by default. */
cdoc.prior = 1.0f;
assert (cdoc.class >= 0);
cdoc.filename = strdup (docname);
assert (cdoc.filename);
cdoc.class_probs = NULL;
/* Add the CDOC to CDOCS, and determine the "index" of this
document. */
di = bow_array_append (rainbow_doc_barrel->cdocs, &cdoc);
if (strlen (buf+nchars))
bow_wi2dvf_add_di_text_str (&(rainbow_doc_barrel->wi2dvf), di,
buf+nchars, docname);
di++;
if (di % 100 == 0)
bow_verbosify(bow_progress, "\b\b\b\b\b\b%6d", di);
}
fclose (fp);
bow_verbosify (bow_progress, "\n");
/* Combine the documents into class statistics. */
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
}
/* Perform a query. */
/* Print the contents of file FILENAME to stdout. */
static inline void
print_file (const char *filename)
{
FILE *fp;
int byte;
if ((fp = fopen (filename, "r")) == NULL)
bow_error ("Couldn't open file `%s' for reading", filename);
while ((byte = fgetc (fp)) != EOF)
fputc (byte, stdout);
fclose (fp);
}
int iBrokenPipe = 0; /* drapp-2/10 */
jmp_buf env; /* drapp-2/10 */
/* Get some query text, and print its best-matching documents among
those previously indexed. The number of matching documents is
NUM_HITS_TO_SHOW. If QUERY_FILENAME is non-null, the query text
will be obtained from that file; otherwise it will be prompted for
and read from stdin. */
int
rainbow_query (FILE *in, FILE *out)
{
/* Show as many hits as there are classes. */
int num_hits_to_show;
bow_score *hits;
int actual_num_hits;
int i;
bow_wv *query_wv = NULL;
num_hits_to_show = bow_barrel_num_classes (rainbow_class_barrel);
hits = alloca (sizeof (bow_score) * num_hits_to_show);
/* Commented out for WhizBang --query-server */
#if 0
/* (Re)set the weight-setting method, if requested with a `-m' on
the command line. */
/* If we don't have the document barrel, we can't do this... */
if (rainbow_doc_barrel)
{
if (bow_argp_method)
rainbow_doc_barrel->method = (rainbow_method*)bow_argp_method;
else
rainbow_doc_barrel->method = rainbow_default_method;
}
if (bow_prune_vocab_by_infogain_n
&& rainbow_doc_barrel)
{
/* Change barrel by removing words with small information gain. */
bow_barrel_keep_top_words_by_infogain
(bow_prune_vocab_by_infogain_n, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel));
}
/* Infogain pruning must be done before this vocab_map pruning, because
infogain pruning first unhides all words! */
if (rainbow_arg_state.vocab_map)
{
if (rainbow_doc_barrel)
/* Remove words not in the VOCAB_MAP. */
bow_barrel_prune_words_not_in_map (rainbow_doc_barrel,
rainbow_arg_state.vocab_map);
if (rainbow_class_barrel)
/* Remove words not in the VOCAB_MAP. */
bow_barrel_prune_words_not_in_map (rainbow_class_barrel,
rainbow_arg_state.vocab_map);
}
if (rainbow_arg_state.hide_vocab_map
&& rainbow_doc_barrel)
{
bow_barrel_prune_words_in_map (rainbow_doc_barrel,
rainbow_arg_state.hide_vocab_map);
}
/* Re-build the rainbow_class_barrel, if necessary */
/* Make sure that we have the document barrel */
if (rainbow_doc_barrel &&
(rainbow_doc_barrel->method != rainbow_class_barrel->method
|| rainbow_arg_state.vocab_map
|| rainbow_arg_state.hide_vocab_map
|| bow_prune_vocab_by_infogain_n))
{
bow_free_barrel (rainbow_class_barrel);
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
}
#endif
/* Get the query text, and create a "word vector" from the query text. */
query_again:
if (rainbow_arg_state.query_filename)
{
FILE *fp;
fp = bow_fopen (rainbow_arg_state.query_filename, "r");
query_wv = bow_wv_new_from_text_fp (fp,
rainbow_arg_state.query_filename);
fclose (fp);
}
else
{
if (rainbow_arg_state.what_doing != rainbow_query_serving)
bow_verbosify (bow_quiet,
"Type your query text now. End with a Control-D.\n");
if (feof (in))
clearerr (in);
query_wv = bow_wv_new_from_text_fp (in, NULL);
}
if (query_wv == NULL || query_wv->num_entries == 0)
{
if (rainbow_arg_state.query_filename)
bow_verbosify (bow_quiet, "No query text found in `%s'.\n",
rainbow_arg_state.query_filename);
else
if (rainbow_arg_state.what_doing != rainbow_query_serving)
bow_verbosify (bow_quiet, "No query text found.");
else
{
fprintf(out, ".\n");
if ( sigsetjmp(env, 0) == 0 ) /* drapp-2/10 */
{
fflush(out);
}
else
{
iBrokenPipe = 1; /* drapp-2/10 */
}
}
if (rainbow_arg_state.repeat_query)
bow_verbosify (bow_progress, " Stopping query repeat\n");
return 0;
}
/* Remove words not in the class_barrel */
bow_wv_prune_words_not_in_wi2dvf (query_wv, rainbow_class_barrel->wi2dvf);
#if 0
/* Print the WV, just for debugging */
bow_wv_fprintf (stderr, query_wv);
fflush (stderr);
#endif
/* Get the best matching documents. */
/* When using vpc-only, we should use a method that specifies weight
* and normalization functions which do not use the doc barrel */
#if 0
if (rainbow_doc_barrel)
{
bow_wv_set_weights (query_wv, rainbow_doc_barrel);
bow_wv_normalize_weights (query_wv, rainbow_doc_barrel);
}
else
#endif
{
bow_wv_set_weights (query_wv, rainbow_class_barrel);
bow_wv_normalize_weights (query_wv, rainbow_class_barrel);
}
actual_num_hits = bow_barrel_score (rainbow_class_barrel, query_wv,
hits, num_hits_to_show, -1);
bow_free (query_wv);
/* Print them. */
if (rainbow_arg_state.what_doing != rainbow_query_serving)
fprintf (out, "\n");
for (i = 0; i < actual_num_hits; i++)
{
bow_cdoc *cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs,
hits[i].di);
if (strlen (rainbow_arg_state.output_filename))
{
char buf[1024];
strcpy (buf, cdoc->filename);
strcat (buf, "/");
strcat (buf, rainbow_arg_state.output_filename);
print_file (buf);
}
else
{
/* For the sake CommonLisp, don't print numbers smaller than
1e-35, because it can't `(read)' them. */
if (rainbow_arg_state.use_lisp_score_truncation
&& hits[i].weight < 1e-35
&& hits[i].weight > 0)
hits[i].weight = 0;
fprintf (out, "%s %.*g\n",
/* cdoc->filename,*/
/* When knn runs, CDOCS entries correspond to documents
* rather than classes. We want to print class names. */
bow_int2str (rainbow_class_barrel->classnames, hits[i].di),
bow_score_print_precision, hits[i].weight);
}
}
if (rainbow_arg_state.what_doing == rainbow_query_serving)
fprintf(out, ".\n");
if ( sigsetjmp(env, 0) == 0 ) /* drapp-2/10 */
{
fflush(out);
}
else
{
iBrokenPipe = 1; /* drapp-2/10 */
}
if (rainbow_arg_state.repeat_query)
goto query_again;
return actual_num_hits;
}
void SigPipeHandler( int iParm ) /* drapp-2/10 */
{
bow_verbosify (bow_progress, "Broken Pipe.\n");
siglongjmp( env, 1 );
}
void
rainbow_socket_init (const char *socket_name, int use_unix_socket)
{
int servlen, type, bind_ret;
struct sockaddr_in in_addr;
struct sockaddr *sap;
type = use_unix_socket ? AF_UNIX : AF_INET;
rainbow_sockfd = socket(type, SOCK_STREAM, 0);
assert(rainbow_sockfd >= 0);
if (type == AF_UNIX)
{
#ifdef WINNT
servlen = 0; /* so that the compiler is happy */
sap = 0;
assert(WINNT == 0);
#else /* !WINNT */
struct sockaddr_un un_addr;
sap = (struct sockaddr *)&un_addr;
bzero((char *)sap, sizeof(un_addr));
strcpy(un_addr.sun_path, socket_name);
servlen = strlen(un_addr.sun_path) + sizeof(un_addr.sun_family) + 1;
#endif /* WINNT */
}
else
{
sap = (struct sockaddr *)&in_addr;
bzero((char *)sap, sizeof(in_addr));
in_addr.sin_port = htons(atoi(socket_name));
in_addr.sin_addr.s_addr = htonl(INADDR_ANY);
servlen = sizeof(in_addr);
}
sap->sa_family = type;
bind_ret = bind(rainbow_sockfd, sap, servlen);
assert(bind_ret >= 0);
listen(rainbow_sockfd, 5);
}
void
rainbow_serve ()
{
int newsockfd, clilen;
struct sockaddr cli_addr;
FILE *in, *out;
pid_t pid;
iBrokenPipe = 0; /* drapp-2/10 */
clilen = sizeof(cli_addr);
bow_verbosify (bow_progress, "Waiting for connection...\n");
newsockfd = accept(rainbow_sockfd, &cli_addr, &clilen);
assert(newsockfd >= 0);
in = fdopen(newsockfd, "r");
out = fdopen(newsockfd, "w");
if (rainbow_arg_state.forking_server)
{
if ((pid = fork ()) != 0)
{
/* Parent - return to server mode */
fclose (in);
fclose (out);
close (newsockfd);
return;
}
}
bow_verbosify (bow_progress, "Got connection.\n");
while (!feof(in) && !iBrokenPipe) /* drapp-2/10 */
rainbow_query(in, out);
fclose(in);
fclose(out);
close(newsockfd);
bow_verbosify (bow_progress, "Closed connection.\n");
/* Kill the child - don't want it hanging around, sucking up memory */
if (rainbow_arg_state.forking_server)
exit (0);
}
#if RAINBOW_LISP
/* Setup rainbow so that we can do our lisp interface. */
void
rainbow_lisp_setup (char *datadirname)
{
/* Defined in deflexer.c */
extern void _bow_default_lexer_init ();
/* Defined in naivebayes.c */
extern void _register_method_crossentropy ();
extern void _register_method_naivebayes ();
/* Defined in tfidf.c */
extern void _register_method_tfidf_words ();
extern void _register_method_tfidf_log_words ();
extern void _register_method_tfidf_log_occur ();
/* Defined in prind.c */
extern void _register_method_prind ();
extern void _register_method_svm ();
char *dirname = bow_malloc (strlen (datadirname) + 1);
int argc;
static char *argv[] = {
"rainbow-lisp-interface",
"-q",
"-H",
"-h",
"-s",
"-b",
"-m", "kl",
/* "--lex-pipe-command", "/afs/cs/project/theo-9/webkb/univ4.rainbow/tag-digits.pl", */
"-d", 0,
0};
for (argc = 0; argv[argc]; argc++);
strcpy (dirname, datadirname);
argv[argc] = dirname;
for (argc = 0; argv[argc]; argc++);
/* Since this was dynamically loaded, the __attribute__((constructor))
functions weren't called. Call them now. */
_bow_default_lexer_init ();
_register_method_crossentropy ();
_register_method_naivebayes ();
_register_method_tfidf_words ();
_register_method_tfidf_log_words ();
_register_method_tfidf_log_occur ();
_register_method_prind ();
_register_method_kl ();
_register_method_evi ();
_register_method_svm ();
/* Default command-line argument values */
rainbow_arg_state.what_doing = rainbow_indexing;
rainbow_arg_state.query_filename = NULL;
rainbow_arg_state.output_filename = NULL;
rainbow_arg_state.num_trials = 0;
rainbow_arg_state.infogain_words_to_print = 10;
rainbow_arg_state.logodds_words_to_print = 10;
rainbow_arg_state.printing_class = 0;
rainbow_arg_state.non_option_argi = 0;
rainbow_arg_state.repeat_query = 0;
rainbow_arg_state.vocab_map = NULL;
rainbow_arg_state.hide_vocab_map = NULL;
rainbow_arg_state.use_lisp_score_truncation = 1;
rainbow_arg_state.loo_cv = 0;
rainbow_arg_state.indexing_lines_filename = NULL;
argp_parse (&rainbow_argp, argc, argv, 0, 0, &rainbow_arg_state);
rainbow_unarchive ();
if (bow_argp_method)
rainbow_doc_barrel->method = bow_argp_method;
else
rainbow_doc_barrel->method = rainbow_default_method;
/* if (rainbow_doc_barrel->method != rainbow_class_barrel->method)
{ */
bow_free_barrel (rainbow_class_barrel);
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
/* } */
}
/* Classify the text in the file QUERY_FILE, and return the
class scores (in sorted order) in SCORES. NUM_SCORES indicates
the maximum number of slots for which space is allocated in SCORES. */
int
rainbow_lisp_query (const char *query_file,
bow_score *scores, int num_scores)
{
/* Show as many hits as there are classes. */
int actual_num_scores;
bow_wv *query_wv;
/* Get the query text, and create a "word vector" from the query text. */
if (query_file)
{
FILE *fp;
fp = bow_fopen (query_file, "r");
query_wv = bow_wv_new_from_text_fp (fp, NULL);
fclose (fp);
}
else
{
bow_verbosify (bow_quiet,
"Type your query text now. End with a Control-D.\n");
query_wv = bow_wv_new_from_text_fp (stdin, NULL);
}
if (query_wv == NULL || query_wv->num_entries == 0)
{
return 0;
}
/* Get the best matching documents. */
bow_wv_set_weights (query_wv, rainbow_class_barrel);
bow_wv_normalize_weights (query_wv, rainbow_class_barrel);
actual_num_scores = bow_barrel_score (rainbow_class_barrel, query_wv,
scores, num_scores, -1);
bow_wv_free (query_wv);
return actual_num_scores;
}
#endif /* RAINBOW_LISP */
extern FILE *svml_test_file;
/* Run test trials, outputing results to TEST_FP. The results are
indended to be read and processed by the Perl script
./rainbow-stats. */
void
rainbow_test (FILE *test_fp)
{
int tn; /* trial number */
bow_dv_heap *test_heap; /* we'll extract test WV's from here */
bow_wv *query_wv;
int di; /* a document index */
bow_score *hits = NULL;
int num_hits_to_retrieve=0;
int actual_num_hits;
int hi; /* hit index */
bow_cdoc *doc_cdoc;
bow_cdoc *class_cdoc;
int (*classify_cdoc_p)(bow_cdoc*);
/* (Re)set the weight-setting method, if requested with `-m' argument. */
if (bow_argp_method)
rainbow_doc_barrel->method = (rainbow_method*)bow_argp_method;
hits = NULL;
/* Loop once for each trial. */
for (tn = 0; tn < rainbow_arg_state.num_trials; tn++)
{
bow_set_doc_types_for_barrel (rainbow_doc_barrel);
if (bow_uniform_class_priors)
bow_barrel_set_cdoc_priors_to_class_uniform (rainbow_doc_barrel);
if (bow_prune_vocab_by_infogain_n)
{
/* Change barrel by removing words with small information gain. */
bow_barrel_keep_top_words_by_infogain
(bow_prune_vocab_by_infogain_n, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel));
}
if (bow_prune_vocab_by_occur_count_n)
bow_error ("Sorry, `-O' implemented only for --index, not --test");
if (bow_prune_words_by_doc_count_n)
bow_error ("Sorry, `-D' implemented only for --index, not --test");
/* Infogain pruning must be done before this vocab_map pruning,
because infogain pruning first unhides all words! */
if (rainbow_arg_state.vocab_map)
{
bow_barrel_prune_words_not_in_map (rainbow_doc_barrel,
rainbow_arg_state.vocab_map);
}
if (rainbow_arg_state.hide_vocab_map)
{
bow_barrel_prune_words_in_map (rainbow_doc_barrel,
rainbow_arg_state.hide_vocab_map);
}
if (rainbow_arg_state.hide_vocab_indices_filename)
{
FILE *fp =
bow_fopen (rainbow_arg_state.hide_vocab_indices_filename, "r");
int wi;
int num_hidden = 0;
while (fscanf (fp, "%d", &wi) == 1)
{
bow_wi2dvf_hide_wi (rainbow_doc_barrel->wi2dvf, wi);
num_hidden++;
}
fclose (fp);
bow_verbosify (bow_progress, "%d words hidden by index\n",
num_hidden);
}
/* Re-create the vector-per-class barrel in accordance with the
new train/test settings. */
bow_free_barrel (rainbow_class_barrel);
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
if (rainbow_class_barrel->method->vpc_set_priors)
(*rainbow_class_barrel->method->vpc_set_priors) (rainbow_class_barrel,
rainbow_doc_barrel);
/* do this late for --em-multi-hump-neg */
if (!hits)
{
num_hits_to_retrieve = bow_barrel_num_classes (rainbow_class_barrel);
assert (num_hits_to_retrieve);
hits = alloca (sizeof (bow_score) * num_hits_to_retrieve);
}
fprintf (test_fp, "#%d\n", tn);
/* Create the heap from which we'll get WV's. NOTE: We are also
including "hidden" words here---words that were previously
"removed" by, for example, feature selection.*/
test_heap = bow_make_dv_heap_from_wi2dvf_hidden
(rainbow_doc_barrel->wi2dvf, 0);
/* Initialize QUERY_WV so BOW_TEST_NEXT_WV() knows not to try to free */
query_wv = NULL;
/* Determine if we are classifying the testing documents or the
training documents. */
if (rainbow_arg_state.test_on_training)
{
classify_cdoc_p = bow_cdoc_is_train;
assert (rainbow_arg_state.num_trials == 1);
}
else
{
classify_cdoc_p = bow_cdoc_is_test;
}
/* Loop once for each test document. NOTE: This will skip documents
that don't have any words that are in the vocabulary. */
while ((di = bow_heap_next_wv (test_heap, rainbow_doc_barrel, &query_wv,
classify_cdoc_p)) != -1)
{
doc_cdoc = bow_array_entry_at_index (rainbow_doc_barrel->cdocs,
di);
class_cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs,
doc_cdoc->class);
/* Remove words not in the class_barrel */
bow_wv_prune_words_not_in_wi2dvf (query_wv,
rainbow_class_barrel->wi2dvf);
bow_wv_set_weights (query_wv, rainbow_class_barrel);
bow_wv_normalize_weights (query_wv, rainbow_class_barrel);
if (!strcmp(rainbow_class_barrel->method->name, "em"))
{
actual_num_hits =
bow_barrel_score (rainbow_class_barrel,
query_wv, hits,
num_hits_to_retrieve,
(rainbow_arg_state.test_on_training
? (int) doc_cdoc->class_probs
: (int) NULL));
}
else {
if (svml_test_file) {
fprintf (svml_test_file,"%d ",-1*((doc_cdoc->class*2)-1));
}
actual_num_hits =
bow_barrel_score (rainbow_class_barrel,
query_wv, hits,
num_hits_to_retrieve,
(rainbow_arg_state.test_on_training
? doc_cdoc->class
: -1));
}
//assert (actual_num_hits == num_hits_to_retrieve);
#if 0
printf ("%8.6f %d %8.6f %8.6f %d ",
class_cdoc->normalizer,
class_cdoc->word_count,
class_cdoc->normalizer / class_cdoc->word_count,
class_cdoc->prior,
doc_cdoc->class);
if (hits[0].di == doc_cdoc->class)
printf ("1\n");
else
printf ("0\n");
#endif
fprintf (test_fp, "%s %s ",
doc_cdoc->filename,
bow_barrel_classname_at_index (rainbow_doc_barrel,
doc_cdoc->class));
for (hi = 0; hi < actual_num_hits; hi++)
{
class_cdoc =
bow_array_entry_at_index (rainbow_class_barrel->cdocs,
hits[hi].di);
/* For the sake CommonLisp, don't print numbers smaller than
1e-35, because it can't `(read)' them. */
if (rainbow_arg_state.use_lisp_score_truncation
&& hits[hi].weight < 1e-35
&& hits[hi].weight > 0)
hits[hi].weight = 0;
fprintf (test_fp, "%s:%.*g ",
bow_barrel_classname_at_index
(rainbow_class_barrel, hits[hi].di),
bow_score_print_precision,
hits[hi].weight);
}
if (rainbow_arg_state.print_doc_length)
fprintf (test_fp, "%d", bow_wv_word_count (query_wv));
fprintf (test_fp, "\n");
}
/* Don't free the heap here because bow_test_next_wv() does it
for us. */
}
}
/* Run test trials, outputing results to TEST_FP. The results are
indended to be read and processed by the Perl script
./rainbow-stats. The test documents come from files inside the
directories that are named in argv[]. */
void
rainbow_test_files (FILE *out_fp, const char *test_dirname)
{
bow_score *hits;
/* int num_test_docs; */
int num_hits_to_retrieve = bow_barrel_num_classes (rainbow_class_barrel);
int actual_num_hits;
int hi; /* hit index */
const char *current_class;
int current_ci;
int ci;
unsigned int dirlen = 1024;
char dir[dirlen];
/* Deals with the word vector once it has been taken from the file
or HDB database. Called by test_file and test_hdb_file. (see below) */
int process_wv (const char *filename, bow_wv *query_wv, void *context)
{
bow_cdoc *class_cdoc;
if (!query_wv)
{
bow_verbosify (bow_progress, "%s found to be empty.\n", filename);
return 0;
}
fprintf (out_fp, "%s %s ",
filename, /* This test instance */
current_class); /* The name of the correct class */
/* Remove words not in the class_barrel */
bow_wv_prune_words_not_in_wi2dvf (query_wv,
rainbow_class_barrel->wi2dvf);
bow_wv_set_weights (query_wv, rainbow_class_barrel);
bow_wv_normalize_weights (query_wv, rainbow_class_barrel);
actual_num_hits =
bow_barrel_score (rainbow_class_barrel,
query_wv, hits,
num_hits_to_retrieve,
(rainbow_arg_state.loo_cv
? current_ci
: -1));
for (hi = 0; hi < actual_num_hits; hi++)
{
class_cdoc =
bow_array_entry_at_index (rainbow_class_barrel->cdocs,
hits[hi].di);
/* For the sake CommonLisp, don't print numbers smaller than
1e-35, because it can't `(read)' them. */
if (rainbow_arg_state.use_lisp_score_truncation
&& hits[hi].weight < 1e-35
&& hits[hi].weight > 0)
hits[hi].weight = 0;
fprintf (out_fp, "%s:%.*g ",
filename_to_classname (class_cdoc->filename),
bow_score_print_precision, hits[hi].weight);
}
fprintf (out_fp, "\n");
return 0;
}
/* This nested function is called once for each test document. */
int test_file (const char *filename, void *context)
{
bow_wv *query_wv = NULL;
FILE *fp;
fp = fopen (filename, "r");
if (!fp)
{
bow_verbosify (bow_progress,
"test_file: Couldn't open file %s\n", filename);
return 0;
}
/* Must test to see if text here because this was done when the
barrel was build in barrel.c:bow_barrel_add_from_text_dir().
Otherwise we may read a document that was not included in the
original barrel, and get negative word occurrence counts
since we subtract to do leave-one-out processing here. */
if (bow_fp_is_text (fp))
query_wv = bow_wv_new_from_text_fp (fp, filename);
fclose (fp);
return process_wv (filename, query_wv, context);
}
#if HAVE_HDB
/* This is used for the case that we are dealing with HDB files.
At this point, the fulltext of the file has already been retrieved
and is passed in as DATA. */
int test_hdb_file (const char *filename, char *data, void *context)
{
bow_wv *query_wv = NULL;
bow_lex lex;
lex.document = data;
lex.document_length = strlen (data);
lex.document_position = 0;
if (bow_str_is_text (data))
query_wv = bow_wv_new_from_lex (&lex);
return process_wv (filename, query_wv, context);
}
#endif
hits = alloca (sizeof (bow_score) * num_hits_to_retrieve);
fprintf (out_fp, "#0\n");
for (ci = 0; ci < bow_barrel_num_classes (rainbow_doc_barrel); ci++)
{
/* Build a string containing the name of this directory. */
bow_cdoc *class_cdoc;
strcpy (dir, test_dirname);
class_cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs, ci);
strcat (dir, "/");
strcat (dir, filename_to_classname (class_cdoc->filename));
assert (strlen (dir) < dirlen);
/* Remember which classname this comes from, so, above, we know
the correct class */
current_ci = class_cdoc->class;
current_class = bow_barrel_classname_at_index (rainbow_doc_barrel, ci);
/* Test each document in that diretory. */
#if HAVE_HDB
if (bow_hdb)
bow_map_filenames_from_hdb (test_hdb_file, 0, dir, "");
else
#endif
bow_map_filenames_from_dir (test_file, 0, dir, "");
}
}
void
bow_print_log_odds_ratio (FILE *fp, bow_barrel *barrel, int num_to_print)
{
int ci;
bow_cdoc *cdoc;
int wi; /* a "word index" into WI2DVF */
int max_wi; /* the highest "word index" in WI2DVF. */
bow_dv *dv; /* the "document vector" at index WI */
int dvi; /* an index into the DV */
int weight_setting_num_words = 0;
int total_num_words = 0;
struct lorth
{
int wi;
float lor;
} lors[barrel->cdocs->length][num_to_print];
int wci;
float *total_word_counts;
/* bow_error("Can't use this while normalizer is being used for non-integral word_count"); */
/* We assume that we have already called BOW_BARREL_NEW_VPC() on
BARREL, so BARREL already has one-document-per-class. */
/* This might be useful to have. However, some VPC barrels do not
have this variable set, so we probably shouldn't enforce this - jrennie */
/* assert (barrel->is_vpc); */
max_wi = MIN (barrel->wi2dvf->size, bow_num_words());
total_word_counts = bow_malloc (sizeof (float) * max_wi);
for (ci = 0; ci < barrel->cdocs->length; ci++)
for (wci = 0; wci < num_to_print; wci++)
{
lors[ci][wci].lor = 0.0;
lors[ci][wci].wi = -1;
}
/* assume that word_count, normalizer are already set */
/* Calculate the total number of occurrences of each word; store this
int TOTAL_WORD_COUNTS. */
for (wi = 0; wi < max_wi; wi++)
{
dv = bow_wi2dvf_dv (barrel->wi2dvf, wi);
if (dv == NULL)
continue;
total_word_counts[wi] = 0;
for (dvi = 0; dvi < dv->length; dvi++)
{
/* Is cdoc used for anything? - jrennie */
cdoc = bow_array_entry_at_index (barrel->cdocs,
dv->entry[dvi].di);
if (cdoc->type == bow_doc_train)
{
total_num_words += dv->entry[dvi].weight;
total_word_counts[wi] += dv->entry[dvi].weight;
}
}
}
/* Set the weights in the BARREL's WI2DVF so that they are
equal to P(w|C), the probability of a word given a class. */
for (wi = 0; wi < max_wi; wi++)
{
double pr_w = 0.0;
dv = bow_wi2dvf_dv (barrel->wi2dvf, wi);
if (wi % 100 == 0)
bow_verbosify(bow_progress, "\b\b\b\b\b\b%6d", wi);
/* If the model doesn't know about this word, skip it. */
if (dv == NULL)
continue;
pr_w = total_word_counts[wi] / total_num_words;
/* Now loop through all the elements, setting their weights */
for (dvi = 0; dvi < dv->length; dvi++)
{
double pr_w_c;
double pr_w_not_c;
double log_likelihood_ratio;
cdoc = bow_array_entry_at_index (barrel->cdocs,
dv->entry[dvi].di);
/* Here CDOC->WORD_COUNT is the total number of words in the class */
/* We use Laplace Estimation. */
pr_w_c = ((double)dv->entry[dvi].weight
/ (cdoc->word_count + cdoc->normalizer));
pr_w_c = (((double)dv->entry[dvi].weight + 1)
/ (cdoc->word_count + barrel->wi2dvf->num_words));
pr_w_not_c = ((total_word_counts[wi] - dv->entry[dvi].weight
+ barrel->cdocs->length - 1)
/
(total_num_words - cdoc->word_count
+ (barrel->wi2dvf->num_words
* (barrel->cdocs->length - 1))));
log_likelihood_ratio = log (pr_w_c / pr_w_not_c);
wci = num_to_print - 1;
while (wci >= 0 &&
(lors[dv->entry[dvi].di][wci].lor < pr_w_c * log_likelihood_ratio))
wci--;
if (wci < num_to_print - 1)
{
int new_wci = wci + 1;
for (wci = num_to_print-1; wci > new_wci; wci--)
{
lors[dv->entry[dvi].di][wci].lor =
lors[dv->entry[dvi].di][wci - 1].lor;
lors[dv->entry[dvi].di][wci].wi =
lors[dv->entry[dvi].di][wci - 1].wi;
}
lors[dv->entry[dvi].di][new_wci].lor = pr_w_c * log_likelihood_ratio;
lors[dv->entry[dvi].di][new_wci].wi = wi;
}
}
weight_setting_num_words++;
}
bow_verbosify (bow_progress, "\n");
fprintf (fp, "Log Odds Ratio - top %d words\n\n", num_to_print);
for (ci = 0; ci < barrel->cdocs->length; ci++)
{
bow_cdoc *cdoc = bow_array_entry_at_index(barrel->cdocs, ci);
int i;
fprintf (fp, "%s\n", filename_to_classname(cdoc->filename));
for (i=0; i < strlen (filename_to_classname(cdoc->filename)); i++)
fprintf (fp, "-");
fprintf (fp, "\n");
for (wci = 0; wci < num_to_print; wci++)
fprintf (fp, "%1.15f %s\n", lors[ci][wci].lor,
lors[ci][wci].wi >= 0
? bow_int2word (lors[ci][wci].wi)
: "<nothing>");
/* Print feedline and newpage */
fprintf (fp, "%c\n",12);
}
}
void
rainbow_print_weight_vector (const char *classname)
{
int ci; /* The `class index' of CLASSNAME */
bow_cdoc *cdoc;
int wi, max_wi; /* a word index */
bow_dv *dv; /* a class vector */
int dvi; /* an index into DV */
/* Find the `class index' of the class with name CLASSNAME */
for (ci = 0; ci < bow_barrel_num_classes (rainbow_class_barrel); ci++)
{
cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs, ci);
if (!strcmp (filename_to_classname (cdoc->filename), classname))
break;
}
if (ci == bow_barrel_num_classes (rainbow_class_barrel))
bow_error ("No class named `%s'\n", classname);
/* Get the CDOC for this class, so we can use its NORMALIZER. */
cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs, ci);
/* Print the `weight' for each word in the class */
max_wi = MIN (bow_num_words (), rainbow_class_barrel->wi2dvf->size);
for (wi = 0; wi < max_wi; wi++)
{
dv = bow_wi2dvf_dv (rainbow_class_barrel->wi2dvf, wi);
if (dv == NULL)
continue;
/* Find the DVI with the DI matching CI */
for (dvi = 0; dvi < dv->length && dv->entry[dvi].di < ci; dvi++);
if (!(dv && dvi < dv->length && dv->entry[dvi].di == ci))
continue;
/* This is an attempt for a test to see if the weights need to
be "normalized" before being used. */
if (rainbow_class_barrel->method->normalize_weights)
printf ("%20.10f %s\n",
dv->entry[dvi].weight * cdoc->normalizer,
bow_int2word (wi));
else
printf ("%20.10f %s\n",
dv->entry[dvi].weight,
bow_int2word (wi));
}
}
void
rainbow_print_foilgain (const char *classname)
{
int ci; /* The `class index' of CLASSNAME */
int wi;
bow_cdoc *cdoc;
float **fig_per_wi_ci;
int fig_num_wi;
/* Find the `class index' of the class with name CLASSNAME */
for (ci = 0; ci < bow_barrel_num_classes (rainbow_class_barrel); ci++)
{
cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs, ci);
if (!strcmp (filename_to_classname (cdoc->filename), classname))
break;
}
if (ci == bow_barrel_num_classes (rainbow_class_barrel))
bow_error ("No class named `%s'\n", classname);
/* Get the foilgains. */
fig_per_wi_ci =
bow_foilgain_per_wi_ci_new (rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel),
&fig_num_wi);
/* Print the `foilgain' for each word in the class */
for (wi = 0; wi < fig_num_wi; wi++)
{
printf ("%20.6f %s\n",
fig_per_wi_ci[wi][ci], bow_int2word (wi));
}
bow_foilgain_free (fig_per_wi_ci, fig_num_wi);
}
/* The main() function. */
extern int _bow_nextprime (unsigned n);
#if !RAINBOW_LISP
int
main (int argc, char *argv[])
{
/* Default command-line argument values */
rainbow_arg_state.what_doing = rainbow_indexing;
rainbow_arg_state.query_filename = NULL;
rainbow_arg_state.output_filename = NULL;
rainbow_arg_state.num_trials = 0;
rainbow_arg_state.infogain_words_to_print = 10;
rainbow_arg_state.logodds_words_to_print = 10;
rainbow_arg_state.printing_class = 0;
rainbow_arg_state.non_option_argi = 0;
rainbow_arg_state.repeat_query = 0;
rainbow_arg_state.vocab_map = NULL;
rainbow_arg_state.hide_vocab_map = NULL;
rainbow_arg_state.use_lisp_score_truncation = 1;
rainbow_arg_state.loo_cv = 0;
rainbow_arg_state.barrel_printing_format = NULL;
rainbow_arg_state.hide_vocab_indices_filename = NULL;
rainbow_arg_state.test_on_training = 0;
rainbow_arg_state.use_saved_classifier = 0;
rainbow_arg_state.forking_server = 0;
rainbow_arg_state.print_doc_length = 0;
rainbow_arg_state.indexing_lines_filename = NULL;
#ifdef VPC_ONLY
rainbow_arg_state.vpc_only = 0;
#endif
/* Parse the command-line arguments. */
argp_parse (&rainbow_argp, argc, argv, 0, 0, &rainbow_arg_state);
if (rainbow_arg_state.what_doing == rainbow_indexing)
{
/* Strip any trailing `/'s from the classnames, so we can find the
classname later using FILENAME_TO_CLASSNAME. */
int argi, len;
const char **rainbow_classnames;
/* if we've fixed the vocab from a file, then use it */
if (rainbow_arg_state.vocab_map)
bow_words_set_map(rainbow_arg_state.vocab_map, 1);
if (rainbow_arg_state.barrel_printing_format)
{
rainbow_index_printed_barrel
(argv[rainbow_arg_state.non_option_argi]);
}
else
{
for (argi = rainbow_arg_state.non_option_argi; argi < argc; argi++)
{
len = strlen (argv[argi]);
if (argv[argi][len-1] == '/')
argv[argi][len-1] = '\0';
}
rainbow_classnames =
(const char **)(argv + rainbow_arg_state.non_option_argi);
/* Index text in the directories. */
rainbow_index (argc - rainbow_arg_state.non_option_argi,
rainbow_classnames,
rainbow_arg_state.output_filename);
}
if (bow_num_words ())
rainbow_archive ();
else
bow_error ("No text documents found.");
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_indexing_lines)
{
rainbow_index_lines (rainbow_arg_state.indexing_lines_filename);
if (bow_num_words ())
rainbow_archive ();
else
bow_error ("No text documents found.");
exit (0);
}
/* We are using an already built model. Get it from disk. */
rainbow_unarchive ();
if (rainbow_arg_state.hide_vocab_indices_filename)
{
FILE *fp =
bow_fopen (rainbow_arg_state.hide_vocab_indices_filename, "r");
int wi;
while (fscanf (fp, "%d", &wi) == 1)
bow_wi2dvf_hide_wi (rainbow_doc_barrel->wi2dvf, wi);
fclose (fp);
}
/* (Re)set the weight-setting method, if requested with a `-m' on
the command line. */
if (bow_argp_method)
rainbow_doc_barrel->method = (rainbow_method*)bow_argp_method;
/* Make the test/train split */
/* Don't touch anything if we don't have the document barrel */
if (rainbow_doc_barrel && rainbow_arg_state.what_doing != rainbow_testing)
bow_set_doc_types_for_barrel (rainbow_doc_barrel);
/* Do things that update their own class/word weights. */
#if 0
/* Compute the number of word pairs that co-occur in documents more
than 0 times. Did this for Jeff Schneider. */
if (1)
{
static const int max_vocab_size = 10000;
int vocab_sizes[] = {max_vocab_size, max_vocab_size};
bow_bitvec *co_occurrences = bow_bitvec_new (2, vocab_sizes);
int wi_pair[2];
int wvi1, wvi2;
bow_dv_heap *heap;
bow_wv *doc_wv;
int di;
int num_co_occurrences;
/* Make vocabulary size manageable. */
bow_barrel_keep_top_words_by_infogain
(max_vocab_size-1, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel));
/* Step through each document, setting bit for each word-pair
co-occurrence. */
heap = bow_test_new_heap (rainbow_doc_barrel);
doc_wv = NULL;
while ((di = bow_model_next_wv (heap, rainbow_doc_barrel, &doc_wv))
!= -1)
{
for (wvi1 = 0; wvi1 < doc_wv->num_entries; wvi1++)
{
for (wvi2 = 0; wvi2 < doc_wv->num_entries; wvi2++)
{
wi_pair[0] = doc_wv->entry[wvi1].wi;
wi_pair[1] = doc_wv->entry[wvi2].wi;
bow_bitvec_set (co_occurrences, wi_pair, 1);
}
}
}
/* Don't free the heap here because bow_model_next_wv() does it
for us. */
/* Count the number of co-occurrences. */
num_co_occurrences = 0;
for (wvi1 = 0; wvi1 < max_vocab_size; wvi1++)
{
for (wvi2 = 0; wvi2 < max_vocab_size; wvi2++)
{
wi_pair[0] = wvi1;
wi_pair[1] = wvi2;
if (bow_bitvec_value (co_occurrences, wi_pair))
num_co_occurrences++;
}
}
printf ("Num co-occurrences = %d\n", num_co_occurrences);
exit (0);
}
#endif
/* Do things that don't require the class/word weights to be updated. */
if (rainbow_arg_state.what_doing == rainbow_testing)
{
/* We are doing test trials, and making output for Perl. */
rainbow_test (stdout);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_infogain_printing)
{
bow_infogain_per_wi_print
(stdout, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel),
rainbow_arg_state.infogain_words_to_print);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_logodds_printing)
{
assert (rainbow_class_barrel);
bow_print_log_odds_ratio (stdout, rainbow_class_barrel,
rainbow_arg_state.logodds_words_to_print);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_foilgain_printing)
{
rainbow_print_foilgain (rainbow_arg_state.printing_class);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_infogain_pair_printing)
{
int s;
bow_infogain_per_wi_new_using_pairs
(rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel),
&s);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_doc_name_printing)
{
int di;
int tag = -1;
bow_cdoc *cdoc;
if (rainbow_arg_state.printing_class)
{
tag = bow_str2type (rainbow_arg_state.printing_class);
if (tag == -1)
bow_error ("Argument to --print-doc-names, `%s', is not a tag\n"
"Try `train', `test', `unlabeled', etc");
}
for (di = 0; di < rainbow_doc_barrel->cdocs->length; di++)
{
cdoc = bow_array_entry_at_index (rainbow_doc_barrel->cdocs, di);
if (rainbow_arg_state.printing_class == NULL
|| (tag >= 0 && cdoc->type == tag))
printf ("%s\n", cdoc->filename);
}
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_building_and_saving)
{
if (bow_uniform_class_priors)
bow_barrel_set_cdoc_priors_to_class_uniform (rainbow_doc_barrel);
if (bow_prune_vocab_by_infogain_n)
{
/* Change barrel by removing words with small information gain. */
bow_barrel_keep_top_words_by_infogain
(bow_prune_vocab_by_infogain_n, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel));
}
/* Infogain pruning must be done before this vocab_map pruning,
because infogain pruning first unhides all words! */
if (rainbow_arg_state.vocab_map)
{
bow_barrel_prune_words_not_in_map (rainbow_doc_barrel,
rainbow_arg_state.vocab_map);
}
if (rainbow_arg_state.hide_vocab_map)
{
bow_barrel_prune_words_in_map (rainbow_doc_barrel,
rainbow_arg_state.hide_vocab_map);
}
if (rainbow_arg_state.hide_vocab_indices_filename)
{
FILE *fp =
bow_fopen (rainbow_arg_state.hide_vocab_indices_filename, "r");
int wi;
int num_hidden = 0;
while (fscanf (fp, "%d", &wi) == 1)
{
bow_wi2dvf_hide_wi (rainbow_doc_barrel->wi2dvf, wi);
num_hidden++;
}
fclose (fp);
bow_verbosify (bow_progress, "%d words hidden by index\n",
num_hidden);
}
bow_free_barrel (rainbow_class_barrel);
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
rainbow_archive();
exit(0);
}
/* stolen from the second half of rainbow test */
if (rainbow_arg_state.what_doing == rainbow_testing_from_saved_model)
{
bow_dv_heap *test_heap; /* we'll extract test WV's from here */
bow_wv *query_wv;
int di; /* a document index */
bow_score *hits = NULL;
int num_hits_to_retrieve=0;
int actual_num_hits;
int hi; /* hit index */
bow_cdoc *doc_cdoc;
bow_cdoc *class_cdoc;
int (*classify_cdoc_p)(bow_cdoc*);
/* Create the heap from which we'll get WV's. */
test_heap = bow_test_new_heap (rainbow_doc_barrel);
/* Initialize QUERY_WV so BOW_TEST_NEXT_WV() knows not to try to free */
query_wv = NULL;
/* Determine if we are classifying the testing documents or the
training documents. */
if (rainbow_arg_state.test_on_training)
{
classify_cdoc_p = bow_cdoc_is_train;
assert (rainbow_arg_state.num_trials == 1);
}
else
{
classify_cdoc_p =bow_cdoc_is_test;
}
num_hits_to_retrieve = bow_barrel_num_classes (rainbow_class_barrel);
assert (num_hits_to_retrieve);
hits = alloca (sizeof (bow_score) * num_hits_to_retrieve);
/* Loop once for each test document. NOTE: This will skip documents
that don't have any words that are in the vocabulary. */
while ((di = bow_heap_next_wv (test_heap, rainbow_doc_barrel, &query_wv,
classify_cdoc_p)) != -1)
{
doc_cdoc = bow_array_entry_at_index (rainbow_doc_barrel->cdocs,
di);
class_cdoc = bow_array_entry_at_index (rainbow_class_barrel->cdocs,
doc_cdoc->class);
/* Remove words not in the class_barrel */
bow_wv_prune_words_not_in_wi2dvf (query_wv,
rainbow_class_barrel->wi2dvf);
bow_wv_set_weights (query_wv, rainbow_class_barrel);
bow_wv_normalize_weights (query_wv, rainbow_class_barrel);
if (!strcmp(rainbow_class_barrel->method->name, "em"))
{
actual_num_hits =
bow_barrel_score (rainbow_class_barrel,
query_wv, hits,
num_hits_to_retrieve,
(rainbow_arg_state.test_on_training
? (int) doc_cdoc->class_probs
: (int) NULL));
}
else
actual_num_hits =
bow_barrel_score (rainbow_class_barrel,
query_wv, hits,
num_hits_to_retrieve,
(rainbow_arg_state.test_on_training
? doc_cdoc->class
: -1));
assert (actual_num_hits == num_hits_to_retrieve);
#if 0
printf ("%8.6f %d %8.6f %8.6f %d ",
class_cdoc->normalizer,
class_cdoc->word_count,
class_cdoc->normalizer / class_cdoc->word_count,
class_cdoc->prior,
doc_cdoc->class);
if (hits[0].di == doc_cdoc->class)
printf ("1\n");
else
printf ("0\n");
#endif
fprintf (stdout, "%s %s ",
doc_cdoc->filename,
bow_barrel_classname_at_index (rainbow_doc_barrel,
doc_cdoc->class));
for (hi = 0; hi < actual_num_hits; hi++)
{
class_cdoc =
bow_array_entry_at_index (rainbow_class_barrel->cdocs,
hits[hi].di);
/* For the sake CommonLisp, don't print numbers smaller than
1e-35, because it can't `(read)' them. */
if (rainbow_arg_state.use_lisp_score_truncation
&& hits[hi].weight < 1e-35
&& hits[hi].weight > 0)
hits[hi].weight = 0;
fprintf (stdout, "%s:%.*g ",
bow_barrel_classname_at_index
(rainbow_class_barrel, hits[hi].di),
bow_score_print_precision,
hits[hi].weight);
}
fprintf (stdout, "\n");
}
exit(0);
}
if (rainbow_arg_state.use_saved_classifier)
goto done_training_classifier;
/* Do things necessary to update the class/word weights for the
command-line options. */
/* Reduce vocabulary size by low info-gain words, if requested. */
if (rainbow_doc_barrel && bow_prune_vocab_by_infogain_n)
{
/* Change barrel by removing words with small info gain. */
bow_barrel_keep_top_words_by_infogain
(bow_prune_vocab_by_infogain_n, rainbow_doc_barrel,
bow_barrel_num_classes (rainbow_class_barrel));
}
/* Infogain pruning must be done before this vocab_map pruning, because
infogain pruning first unhides all words! */
/* Reduce vocabulary size by removing words not in a file listed
on the command line. */
/* Infogain pruning must be done before this vocab_map pruning, because
infogain pruning first unhides all words! */
if (rainbow_arg_state.vocab_map)
{
if (rainbow_doc_barrel)
/* Remove words not in the VOCAB_MAP. */
bow_barrel_prune_words_not_in_map (rainbow_doc_barrel,
rainbow_arg_state.vocab_map);
if (rainbow_class_barrel)
/* Remove words not in the VOCAB_MAP. */
bow_barrel_prune_words_not_in_map (rainbow_class_barrel,
rainbow_arg_state.vocab_map);
}
if (rainbow_arg_state.hide_vocab_map)
{
if (rainbow_doc_barrel)
bow_barrel_prune_words_in_map (rainbow_doc_barrel,
rainbow_arg_state.hide_vocab_map);
if (rainbow_class_barrel)
bow_barrel_prune_words_in_map (rainbow_class_barrel,
rainbow_arg_state.hide_vocab_map);
}
if (rainbow_doc_barrel && bow_prune_words_by_doc_count_n)
{
bow_wi2dvf_hide_words_by_doc_count (rainbow_doc_barrel->wi2dvf,
bow_prune_words_by_doc_count_n);
}
if (rainbow_doc_barrel && bow_prune_vocab_by_occur_count_n)
{
bow_wi2dvf_hide_words_by_occur_count (rainbow_doc_barrel->wi2dvf,
bow_prune_vocab_by_occur_count_n);
}
/* Re-build the rainbow_class_barrel, if necessary */
if (rainbow_doc_barrel &&
(rainbow_doc_barrel->method != rainbow_class_barrel->method
|| rainbow_arg_state.vocab_map
|| rainbow_arg_state.hide_vocab_map
|| bow_prune_vocab_by_infogain_n
|| bow_prune_words_by_doc_count_n
|| bow_prune_vocab_by_occur_count_n
|| 1))
{
bow_free_barrel (rainbow_class_barrel);
rainbow_class_barrel =
bow_barrel_new_vpc_with_weights (rainbow_doc_barrel);
}
done_training_classifier:
/* Do things that require the vocabulary or class/word weights to
have been updated. */
if (rainbow_arg_state.what_doing == rainbow_word_count_printing)
{
bow_barrel_print_word_count (rainbow_class_barrel,
rainbow_arg_state.printing_class);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_barrel_printing)
{
bow_barrel_printf (rainbow_doc_barrel, stdout,
rainbow_arg_state.barrel_printing_format);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_printing_word_probabilities)
{
bow_naivebayes_print_word_probabilities_for_class
(rainbow_class_barrel, rainbow_arg_state.printing_class);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_file_testing)
{
int argi;
assert (rainbow_arg_state.non_option_argi < argc);
for (argi = rainbow_arg_state.non_option_argi; argi < argc; argi++)
rainbow_test_files (stdout, argv[argi]);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_weight_vector_printing)
{
#if 1
bow_naivebayes_print_odds_ratio_for_class
(rainbow_class_barrel, rainbow_arg_state.printing_class);
#else
rainbow_print_weight_vector (rainbow_arg_state.printing_class);
#endif
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_querying)
{
rainbow_query (stdin, stdout);
exit (0);
}
if (rainbow_arg_state.what_doing == rainbow_query_serving)
{
bow_word2int_do_not_add = 1;
rainbow_socket_init (rainbow_arg_state.server_port_num, 0);
while (1)
{
signal( SIGPIPE, SigPipeHandler ); /* drapp-2/10 */
rainbow_serve();
}
}
exit (0);
}
#endif /* !RAINBOW_LISP */
|