File size: 86,558 Bytes
6fa4bc9 | 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 | {
"paper_id": "D09-1028",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:39:48.560867Z"
},
"title": "Geo-mining: Discovery of Road and Transport Networks Using Directional Patterns",
"authors": [
{
"first": "Dmitry",
"middle": [],
"last": "Davidov",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "ICNC The Hebrew University of Jerusalem",
"location": {}
},
"email": "dmitry@alice.nc.huji.ac.il"
},
{
"first": "Ari",
"middle": [],
"last": "Rappoport",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "The Hebrew University of Jerusalem",
"location": {}
},
"email": "arir@cs.huji.ac.il"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "One of the most desired information types when planning a trip to some place is the knowledge of transport, roads and geographical connectedness of prominent sites in this place. While some transport companies or repositories make some of this information accessible, it is not easy to find, and the majority of information about uncommon places can only be found in web free text such as blogs and forums. In this paper we present an algorithmic framework which allows an automated acquisition of map-like information from the web, based on surface patterns like \"from X to Y\". Given a set of locations as initial seeds, we retrieve from the web an extended set of locations and produce a map-like network which connects these locations using transport type edges. We evaluate our framework in several settings, producing meaningful and precise connection sets.",
"pdf_parse": {
"paper_id": "D09-1028",
"_pdf_hash": "",
"abstract": [
{
"text": "One of the most desired information types when planning a trip to some place is the knowledge of transport, roads and geographical connectedness of prominent sites in this place. While some transport companies or repositories make some of this information accessible, it is not easy to find, and the majority of information about uncommon places can only be found in web free text such as blogs and forums. In this paper we present an algorithmic framework which allows an automated acquisition of map-like information from the web, based on surface patterns like \"from X to Y\". Given a set of locations as initial seeds, we retrieve from the web an extended set of locations and produce a map-like network which connects these locations using transport type edges. We evaluate our framework in several settings, producing meaningful and precise connection sets.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Textual geographical information such as location descriptions, directions, travel guides and transport tables is extensively used by people. Discovering such information automatically can assist NLP applications such as question answering (Santos and Cardoso, 2008) , and can be useful for a variety of other applications, including automatic map annotation.",
"cite_spans": [
{
"start": 240,
"end": 266,
"text": "(Santos and Cardoso, 2008)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Some textual geographical information can be found in web sites of transport companies, tourist sites and repositories such as Wikipedia. Such sites usually utilize structured information such as machine-readable meta-data, tables, schedule forms or lists, which are relatively convenient for processing. However, automatic utilization of such information is limited. Even on these sites, only a small fraction of the available geographical information is stored in a well-structured and freely accessible form. With the growth of the web, information can be frequently found in 'ordinary' web pages such as forums, travelogues or news. In such sites, information is usually noisy, unstructured and present in the form of free text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This type of information can be addressed by lexical patterns. Patterns were shown to be very useful in all sorts of lexical acquisition tasks, giving high precision results at relatively low computational costs . Patterndriven search engine queries allow to access such information and gather the required data very efficiently (Davidov et al., 2007) .",
"cite_spans": [
{
"start": 329,
"end": 351,
"text": "(Davidov et al., 2007)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we present a framework that given a few seed locations as a specification of a region, discovers additional locations (including alternate location names) and map-like travel paths through this region labeled by transport type labels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The type of output produced by our framework here differs from that in previous pattern-based studies. Unlike mainstream pattern-based web mining, it does not target some specific two-slot relationship and attempts to extract word tuples for this relationship. Instead, it discovers geographical networks of transport or access connections. Such networks are not unstructured sets of word pairs, but a structured graph with labeled edges.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our algorithm utilizes variations of the basic pre-defined pattern \"[Transport] from Location1 to Location2\" which allows location names and connections to be captured starting from the given seed location set. We acquire search engine snippets and extract contexts where location names coappear. Next we construct a location graph and merge transport edges to identify main transport group types. Finally, we improve the obtained data by reducing transitive connections and identifying key locations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The obtained location data can be used as a draft for preparation of travel resources and ondemand travel plans. It can also be used for question answering systems and for automated enrichment and verification of existing geographical resources.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We evaluate our framework on three different regions of different scale and type: Annapurna in Nepal, the south Israel area and the Cardiff area in England. In our evaluation we estimated precision and the amount of discovered locations and transport edges, and examined the quality of the obtained map as a whole by visually comparing the overall connectedness of the graph to an actual road or transport map.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we utilize a pattern-based lexical acquisition framework for the discovery of geographical information. Due to the importance of lexical databases for many NLP tasks, substantial research has been done on direct or indirect automated acquisition of concepts (sets of terms sharing a significant aspect of their meaning) and concept relationships in the form of graphs connecting concepts or terms inside concepts into usually hierarchical or bipartite networks. In the case of geo-mining, concepts can include sets of alternative names for some place, or sets of all locations of the same type (e.g., all countries). Geographical relationships can include nearness of two locations and entity-location relationships such as instituteaddress, capital-country, tourist site-city etc.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "The major differences between relationship acquisition frameworks come from the types and annotation requirements of the supplied input and the basic algorithmic approach used to process this input. A first major algorithmic approach is to represent word contexts as vectors in some space and use distributional measures and automatic clustering in that space. Curran (2002) and Lin (1998) use syntactic features in the vector definition. Caraballo (1999) uses conjunction and appositive annotations in the vector representation.While efforts have been made for improving the computational complexity of these methods (Gorman and Curran, 2006) , they remain data and computation intensive.",
"cite_spans": [
{
"start": 361,
"end": 374,
"text": "Curran (2002)",
"ref_id": "BIBREF4"
},
{
"start": 379,
"end": 389,
"text": "Lin (1998)",
"ref_id": "BIBREF14"
},
{
"start": 439,
"end": 455,
"text": "Caraballo (1999)",
"ref_id": "BIBREF2"
},
{
"start": 618,
"end": 643,
"text": "(Gorman and Curran, 2006)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "The second major algorithmic approach is to use lexico-syntactic patterns, which have been shown to produce more accurate results than fea-ture vectors at a lower computational cost on large corpora . Most related work deals with discovery of hypernymy (Hearst, 1992; Pantel and Lin, 2002) and synonymy (Widdows and Dorow, 2002; Davidov and Rappoport, 2006) . Some studies deal with the discovery of more specific relation sub-types, including inter-verb relations (Chklovski and Pantel, 2004) and semantic relations between nominals (Davidov and Rappoport, 2008) . Extensive frameworks were proposed for iterative discovery of pre-specified (e.g., (Riloff and Jones, 1999) ) and unspecified (e.g., (Agichtein and Gravano, 2000) ) relation types.",
"cite_spans": [
{
"start": 253,
"end": 267,
"text": "(Hearst, 1992;",
"ref_id": "BIBREF13"
},
{
"start": 268,
"end": 289,
"text": "Pantel and Lin, 2002)",
"ref_id": "BIBREF16"
},
{
"start": 303,
"end": 328,
"text": "(Widdows and Dorow, 2002;",
"ref_id": "BIBREF22"
},
{
"start": 329,
"end": 357,
"text": "Davidov and Rappoport, 2006)",
"ref_id": "BIBREF5"
},
{
"start": 465,
"end": 493,
"text": "(Chklovski and Pantel, 2004)",
"ref_id": "BIBREF3"
},
{
"start": 534,
"end": 563,
"text": "(Davidov and Rappoport, 2008)",
"ref_id": "BIBREF7"
},
{
"start": 649,
"end": 673,
"text": "(Riloff and Jones, 1999)",
"ref_id": "BIBREF19"
},
{
"start": 699,
"end": 728,
"text": "(Agichtein and Gravano, 2000)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Some concepts and relationships examined by seed-based discovery methods were of a geographical nature. For example, (Etzioni et al., 2004) discovered a set of countries and (Davidov et al., 2007) discovered diverse country relationships, including location relationships between a country and its capital and a country and its rivers. As noted in Section 1, the type of output that we produce here is not an unstructured collection of word pairs but a labeled network. As such, our task here is much more complex.",
"cite_spans": [
{
"start": 117,
"end": 139,
"text": "(Etzioni et al., 2004)",
"ref_id": null
},
{
"start": 174,
"end": 196,
"text": "(Davidov et al., 2007)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Our study is related to geographical information retrieval (GIR) systems. However, our problem is very far from classic GIR problem settings. In GIR, the goal is to classify or retrieve possibly multilingual documents in response to queries in the form 'theme, spatial relationship, location', e.g., 'mountains near New York' (Purves et al., 2006) . Our goal, in contrast, is not document retrieval, but the generation of a structured information resource, a labeled location graph.",
"cite_spans": [
{
"start": 326,
"end": 347,
"text": "(Purves et al., 2006)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Spatial relationships used in natural language tend to be qualitative and descriptive rather than quantitative. The concept of Naive Geography, which reflects the way people think and write about geographical space, is described in (Egenhofer and Shariff, 1995) . Later in (Egenhofer and Shariff, 1998) they proposed a way to convert coordinate-based relationships between spatial entities to natural language using terms as 'crosses', 'goes through' or 'runs into'. Such terms can be potentially used in patterns to extract geographical information from text. In this paper we start from a different pattern, 'from ... to', which helps in discovering transport or connectedness relationships between places, e.g., 'bus from X to Y' and 'road from X to Y'.",
"cite_spans": [
{
"start": 232,
"end": 261,
"text": "(Egenhofer and Shariff, 1995)",
"ref_id": "BIBREF8"
},
{
"start": 273,
"end": 302,
"text": "(Egenhofer and Shariff, 1998)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "The majority of geographical data mining frameworks utilize structured data such as available gazetteers and Wikipedia metadata. Several other studies utilize semi-structured data like Wikipedia links (Overell and Ruger, 2007) or substructures in web pages, including addresses and phone numbers (Borges et al., 2007) .",
"cite_spans": [
{
"start": 201,
"end": 226,
"text": "(Overell and Ruger, 2007)",
"ref_id": "BIBREF15"
},
{
"start": 296,
"end": 317,
"text": "(Borges et al., 2007)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "The recent Schockaert et al.( 2008) framework for extraction of topological relationships from the web has some similarities to our study. In both cases the algorithm produces map-like structures using the web. However, there are significant differences. They utilize relatively structured address data on web pages and rely on the order of named entities in address data for extracting containment relationships. They also use co-appearances in addresses (e.g., 'R1 / R2' and 'R1 & R2' as in \"Newport & Gabalfa, Cardiff\") to deduce location boundaries. This allows them to get high precision data for modern and heavily populated regions like Cardiff, where the majority of offices have available well-formatted web pages.",
"cite_spans": [
{
"start": 11,
"end": 35,
"text": "Schockaert et al.( 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "However, in less populated regions (a major target for tourist information requests), this strategy could be problematic since a major information source about these places would be not local web sites (in which local addresses are likely to be found) but foreign visitor sites, web forums and news. We rely on free text available in all types of web pages, which allows us to capture unstructured information which contains a significant portion of the web-available geographical knowledge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Our goals are also different from Schockaert et al.( 2008) , since we focus on obtaining information based on paths and transport between locations, while in their work the goal is to find a network representing nearness of places rather than their connectivity by means of transport or walking. Nevertheless, in one of our evaluation settings we targeted the area of Cardiff as in (Schockaert et al., 2008) . This allowed us to make an indirect comparison of a relevant part of our results to previous work, achieving state-of-the-art performance.",
"cite_spans": [
{
"start": 34,
"end": 58,
"text": "Schockaert et al.( 2008)",
"ref_id": "BIBREF21"
},
{
"start": 382,
"end": 407,
"text": "(Schockaert et al., 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "As input to our algorithm we are given a seed of a few location names specifiying some geographical region. In this section we describe the algorithm which, given these names, extracts the labeled structure of connections between entities in the desired region. We first use a predefined pat-tern for recursive extraction of the first set of entities. Then we discover additional patterns from co-appearing location pairs and use them to get more terms. Next, we label and merge the obtained location pairs. Finally, we construct and refine the obtained graph.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "3"
},
{
"text": "In order to obtain the first set of location connections, we use derivatives of the basic pattern 'from X to Y'. Using Yahoo! BOSS, we have utilized the API's ability to search for phrases with wildcards. Given a location name L we start the search with patterns \"from * to L\", \"from * * to L\". These are Yahoo! BOSS queries where enclosing words in \"\" means searching for an exact phrase and '*' means a wildcard for exactly one arbitrary word.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-based discovery with web queries",
"sec_num": "3.1"
},
{
"text": "This pattern serves a few goals beyond the discovery of connectedness. Thus putting '*'s inside the pattern rather than using \"from L to\" allowed us to avoid arbitrary truncation of multiword expressions as in 'from Moscow to St. Petersburg' and reduced the probability of capturing unrelated sentence parts like 'from Moscow to cover deficit'.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-based discovery with web queries",
"sec_num": "3.1"
},
{
"text": "Location names are usually ambiguous and this type of web queries can lead to a significant amount of noise or location mix. There are two types of ambiguity. First, as in 'from Billericay to Stock....', stock can be a location or a verb. We filter most such cases by allowing only capitalized location names. Besides, such an ambiguity is rarely captured by 'from * to L' patterns. The second type is location ambiguity. Thus 'Moscow' refers to at least 5 location names including farms in Africa and Australia and a locality in Ireland. In order to reduce mixing of locations we use the following simple disambiguation technique. Before performing \"from...to\" queries, we downloaded up to 100 web pages pointed by each possible pair from the given seed locations, generating from a location pair L 1 , L 2 a conjunctive query \"L 1 * L 2 \". Then we extracted the most informative terms using a simple probabilistic metric:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-based discovery with web queries",
"sec_num": "3.1"
},
{
"text": "Rank(w) = P (w|QueryCorpus) P (w|GeneralCorpus) ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-based discovery with web queries",
"sec_num": "3.1"
},
{
"text": "comparing word distribution in the downloaded QueryCorpus to a large general purpose offline GeneralCorpus 1 . We thus obtained a set of query-specific disambiguating words. Then we added to all queries the same most frequent word (DW) out of the ten words with highest ranks. Thus for the seed set {Moscow, St. Petersburg}, an example of a query is <\"from * to Moscow\" Russia>.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-based discovery with web queries",
"sec_num": "3.1"
},
{
"text": "We retrieved all search engine snippets for each of these initial queries 2 . If we succeeded to get more than 50 snippets, we did not download the complete documents. In case where only a handful of snippets were obtained, the algorithm downloaded up to 25 documents pointed by these snippets in an attempt to get more pattern instances.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Iterative location retrieval",
"sec_num": "3.2"
},
{
"text": "In the majority of tested cases, snippets provide enough information for our task, and this information was not significantly extended by downloading the whole documents.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Iterative location retrieval",
"sec_num": "3.2"
},
{
"text": "Once we retrieve snippets we identify terms appearing in the snippets in wildcard slots. For example, if the query is <\"from * to Moscow\" Russia> and we encounter a snippet \"...from Vladivostok to Moscow...\", we add 'Vladivostok' to our set of seeds. We then continue the search in a breadth first search setting, stopping the search on three conditions: (1) runaway detected -the total frequency of newly obtained terms through some term's patterns is greater than the total frequency of previously discovered terms+seeds. In this case we stop exploration through the problematic term and continue exploration through other terms 3 ; (2) we reached a predefined maximal depth D 4 ; (3) no new terms discovered.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Iterative location retrieval",
"sec_num": "3.2"
},
{
"text": "At the end of this stage we get the extended set of terms using the set of snippets where these terms co-appear in patterns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Iterative location retrieval",
"sec_num": "3.2"
},
{
"text": "In order to get more data, we enhance the pattern set both by discovery of new useful secondary patterns and by narrowing existing patterns. After obtaining the new pattern set we repeat the extraction stage described in Section 3.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "Adding secondary patterns. As in a number of previous studies, we improve our results discovering additional patterns from the obtained term set. The algorithm selects a subset of up to 50 discovered (t 1 , t 2 ) term pairs appearing in 'from t 1 to t 2 ' patterns and performs the set of additional queries of the form <\"t 1 * t 2 \" DW>.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "We then extract from the obtained snippets the patterns of the form 'Prefix t 1 Infix t 2 Postfix', where Prefix and Postfix should contain either a punctuation symbol or 1-3 words. Prefix/Postfix should also be bounded from left/right by a punctuation or one of the 50 most frequent words in the language (based on word counts in the offline general corpus). Infix should contain 1-3 words with the possible addition of punctuation symbols 5 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "We examine patterns and select useful ones according to the following ranking scheme, based on how well each pattern captures named entities. For each discovered pattern we scan the obtained snippets and offline general corpus for instances where this pattern connects one of the original or discovered location terms to some other term. Let T be the set of all one to three word terms in the language, T d \u2282 T the set of discovered terms, T c \u2282 T the set of all capitalized terms and P at(t 1 , t 2 ) indicates one or more co-appearances of t 1 and t 2 in pattern P at in the retrieved snippets or offline general corpus. The rank R of pattern P at is defined by:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "R(P at) = |{P at|P at(t 1 , t 2 ), t 1 \u2208 T c , t 2 \u2208 T d }| |{P at|P at(t 1 , t 2 ), t 1 \u2208 T, t 2 \u2208 T d }|",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "In other words, we rank patterns according to the percentage of capitalized words connected by this pattern. We sort patterns by rank and select the top 20% patterns. Once we have discovered a new pattern set, we repeat the term extraction in Section 3.2. We do this only once and not reiterate this loop in order to avoid potential runaway problems. Obtained secondary patterns include different from/to templates \"to X from Y by bus\"; time/distance combinations \"X -N km bus-Y\", \"X (bus, N min) Y\" or patterns in different languages with English location/transport names.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "Narrowing existing patterns. When available data volume is high, we would like to take advantage of more data by utilizing more specific pattern sets. Since Yahoo! allows to obtain only the first 1K snippets, in case we get more than 10K hits, we extend our queries by adding the most common term sequences appearing before or after the pattern. Thus if for the query \"from * to Moscow\" we got more than 10K hits and among the snippets we see '... bus from X to Moscow...' we create an extended pattern 'bus from * to Moscow' and use the term extraction in Section 3.2 to get additional terms. Unlike the extraction of secondary patterns, this narrowing process can be repeated recursively as long as a query brings more than 10K results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Enhancement of initial pattern set",
"sec_num": "3.3"
},
{
"text": "At the end of the discovery stage we get an extended set of patterns and a list of search engine snippets discovered using these patterns. Each snippet which captures terms t 1 , t 2 in either primary 'from t 1 to t 2 ' or secondary patterns represents a potential connection between entities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extraction of labeled connections",
"sec_num": "3.4"
},
{
"text": "Using an observed property of the primary pattern, we select as a label a term or set of terms appearing directly before 'from' and delimited with some high frequency word or punctuation. For example, labels for snippets based on 'from...to' patterns and containing 'the road from...', 'got a bus from', 'a TransSiberian train from...' would be road, bus and TransSiberian train.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extraction of labeled connections",
"sec_num": "3.4"
},
{
"text": "Once we acquire labels for the primary patterns, we also attempt to find labels in snippets obtained for secondary patterns discovered as described in Section 3.3. We first locate some already labeled pairs in secondary patterns' snippets where we can see both label and the labeled term pair. Then, based on the label's position in this snippet, we define a label slot position for this type of snippet. Suppose that during the labeling of primary pattern snippets we assigned the label 'bus' to the pair (Novgorod, Moscow) and during the pattern extension stage the algorithm discovered a pattern P new = 'ride to t 2 from t 1 ,' with a corresponding snippet '... getting bus ride to Moscow from Novgorod...'. Then using the labeled pair our algorithm defines the label slot in such a snippet type: 'getting [label] ride to t 2 from t 1 '. Once a label slot is defined, all other pairs captured by P new can be successfully labeled.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extraction of labeled connections",
"sec_num": "3.4"
},
{
"text": "Some labels may denote the same type of connection. Also, large sets of connections can share the same set of transport types. In this case it is desired to assign a single label for a shared set of transports. We do this by a simple merging technique. Let C 1 , C 2 be sets of pairs assigned to labels L 1 , L 2 . We merge two labels if one of the following conditions holds:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Merging connection labels",
"sec_num": "3.5"
},
{
"text": "(1)|C 1 \u2229 C 2 | > 0.75 * min(|C 1 |, |C 2 |) (2)|C 1 \u2229 C 2 | > 0.45 * max(|C 1 |, |C 2 |)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Merging connection labels",
"sec_num": "3.5"
},
{
"text": "Thus, either one group is nearly included in the other or each group shares nearly half with the other group. We apply this rule only once and do not iterate recursively. At this stage we also dismiss weakly populated labels, keeping the 10 most populated labels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Merging connection labels",
"sec_num": "3.5"
},
{
"text": "Now once we have merged and assigned the labels we create a pattern graph for each label and attempt to clean the graph of noise and unnecessary edges. Our graph definition follows (Widdows and Dorow, 2002) . In our pattern graph for label L, nodes represent terms and directed edges represent co-appearance of two terms in some pattern in snippet labeled by L. We do not add unlabeled snippets to the graph. Now we use a set of techniques to reduce noise and unnecessary edges.",
"cite_spans": [
{
"start": 181,
"end": 206,
"text": "(Widdows and Dorow, 2002)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Processing of connection graph",
"sec_num": "3.6"
},
{
"text": "One of the main problems with the pattern-based graph is transitivity of connections. Thus if location A is connected to B and B to C, we frequently acquire a \"shortcut\" edge connecting A to C. Such an edge diminishes our ability to create a clear and meaningful spatial graph. In order to reduce such edges we employ the following two strategies.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity elimination",
"sec_num": "3.6.1"
},
{
"text": "First, neighboring places frequently form fully connected subgraphs. We would like to simplify such cliques to reduce the amount of transitive connections. If three overlapping sets of nodes {A 1 . . . A n\u22122 },{A 2 . . . A n\u22121 },{A 3 . . . A n } form three different cliques, then we remove all edges between A 1 and the nodes in the third clique and between A n and the nodes in the first clique.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity elimination",
"sec_num": "3.6.1"
},
{
"text": "Second, in paths obtained by directional patterns, it is common that if there is a path A 1 \u2192 A 2 \u2022 \u2022 \u2022 \u2192 A n where A 1 and A n are some major 'key' locations 6 , then each of the nodes A 2 . . . A n\u22121 tend to be connected both to A 1 and to A n while intermediate nodes are usually connected only to their close neighbors. We would like to eliminate such transitive edges leaving only the inter-neighbor connections.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity elimination",
"sec_num": "3.6.1"
},
{
"text": "We define as key nodes in a graph, nodes whose degree is more than 1.5 times the average graph degree. Then we eliminate the transitive connections: if A 1 is a key node and A 1 is connected to each of the nodes A 2 . . . A n\u22121 , and \u2200i \u2208 {2 . . . n \u2212 1}, A i is connected to A i+1 , then we remove the connection of A 1 to all nodes A 3 . . . A n\u22121 , leaving A 1 only connected to A 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity elimination",
"sec_num": "3.6.1"
},
{
"text": "Finally we remove potential noise which accidentally connects remote graph parts. If some edge discovered through a single pattern instance connects distant (distance>3) parts of the graph we remove it.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Clearing noise and merging names",
"sec_num": "3.6.2"
},
{
"text": "Additionally, we would like to merge common name alternations and misspellings of places. We merge two nodes A and B into one node if either (1) A, B have exactly the same edges, and their edge count is greater than 2; or (2) edges of A are subset of B's edges and the string edit distance between A and B is less than a third of min(StringLength(A), StringLength(B)).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Clearing noise and merging names",
"sec_num": "3.6.2"
},
{
"text": "Since our problem definition differs significantly from available related work, it is not possible to make direct comparisons. We selected three different cases (in Nepal, Israel, Wales) where the obtained information can be reliably verified, and applied our framework on these settings. As a development set, we used the Russian rail network.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "We have estimated the quality of our framework using several measures and observations. First, we calculated the precision and quantity of obtained locations using map information. Then we manually estimated precision of the proposed edges and their labels, comparing them with factual information obtained from maps 7 , transport companies and tourist sites. Finally we visually compared a natural drawing of the obtained graph with a real map. In addition, while our goals differ, the third evaluation setting has deliberate significant similarities to (Schockaert et al., 2008) , which allows us to make some comparisons.",
"cite_spans": [
{
"start": 555,
"end": 580,
"text": "(Schockaert et al., 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "One of the most famous sites in Nepal is the Annapurna trekking circuit. This is a 14-21 day walking path which passes many villages. Most of the tourists going through this path spend weeks in prior information mining and preparations. However, even when using the most recent maps and guides, they discover that available geographical knowledge is far from being complete and precise. This trek is a good example of a case when formal information is lacking while free-text shared experience in the web is abundant. Our goal was to test whether the algorithm can discover such knowledge automatically starting from few seed location names (we used Pokhara, which is one of the central cities in the area, and Khudi, a small village). The quality of results for this task was very good. While even crude recall estimation is very hard for this type of task, we have discovered 100% of the Annapurna trek settlements with population over 1K, all of the flight and bus connections, and about 80% of the walking connections.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Annapurna trek area",
"sec_num": "4.1"
},
{
"text": "On Figure 1 we can compare the real map and the obtained map 8 . This discovered map includes a partial map 9 for 4 labels -flights, trek, bus and jeep. You can see on the map different lines for each label. The algorithm discovered 132 entities, all of them Annapurna-related locations. This includes correctly recognized typos and alternative spellings, and the average was 1.2 names per place. For example for Besisahar and Pokhara the following spellings were recognized based both on string distance and spatial collocation: Besishahar, Bensisahar, BesiSahar, Besi Sahar, Beshishahar, Beisahar, Phokra, Pohkala, Pokahara, Pokhara, Pokhar, Pokra, Pokhura, Pokhra. We estimated correctness of edges comparing to existing detailed maps. 95% of the edges were correctly placed and labeled. Results were good since this site is well covered and also not very interconnected -most of it is connected in a single possible way. After the elimination process described in the previous section, only 6% of the nodes participate in 3-cliques. Thus, due to the linearity of the original path, our method success- Figure 1 : Real path map of Annapurna circuit (above) compared to automatically acquired graph (below). The graph nodes were manually positioned such that edges do not cross each other. Dozens of correctly discovered places were omitted for readability. Double circles indicate key nodes as explained in section 3.6.1 fully avoided the problem of mixing transitively connected nodes into one large clique.",
"cite_spans": [
{
"start": 530,
"end": 667,
"text": "Besishahar, Bensisahar, BesiSahar, Besi Sahar, Beshishahar, Beisahar, Phokra, Pohkala, Pokahara, Pokhara, Pokhar, Pokra, Pokhura, Pokhra.",
"ref_id": null
}
],
"ref_spans": [
{
"start": 3,
"end": 11,
"text": "Figure 1",
"ref_id": null
},
{
"start": 1106,
"end": 1114,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Annapurna trek area",
"sec_num": "4.1"
},
{
"text": "The southern part of Israel (mostly the Negev desert) is a sparsely populated region containing a few main roads and a few dozen towns. There is a limited number of tourists sites in the Negev and hence little web information is supposed to be available. Our goal was to see if the algorithm can successfully detect at least major entities and to discover their connectedness.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Israeli south",
"sec_num": "4.2"
},
{
"text": "We discovered 56 names of different places, of them 50 correctly belong to the region, where the region is defined as south from the Ashquelon-Jerusalem-Yericho line, the other 6 were Israeli cities/locations outside the region (Tiberias, Metulla, Ben Gurion, Tel Aviv, Ashdod, Haifa) . In addition we discovered 23 alternative names for some of the 56 places. We also constructed the corresponding connectedness graphs.",
"cite_spans": [
{
"start": 228,
"end": 284,
"text": "(Tiberias, Metulla, Ben Gurion, Tel Aviv, Ashdod, Haifa)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Israeli south",
"sec_num": "4.2"
},
{
"text": "We tested the usefulness of this data attempting to find the discovered terms in the NGA GEOnet Names Server 10 which is considered one of the most exhaustive geographical resources. We could find in the database only 60% of the correctly discovered English terms denoting towns, so 40% of the terms were discovered by us and ignored by this huge coverage database. We also tested the quality of edges, and found that 80% of the discovered edges were correctly placed and labeled. Figure 2 shows a partial graph of the places obtained for the 'road' label. ",
"cite_spans": [],
"ref_spans": [
{
"start": 481,
"end": 489,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "The Israeli south",
"sec_num": "4.2"
},
{
"text": "Cardiff is the capital, largest city and most populous county in Wales. Our goal was to see if we can discover basic means of transport and corresponding locations connected to and inside Cardiff. This exploration also allowed us to compare some of our results to related studies. We executed our algorithm using as seeds Grangetown, Cardiff and Barry. Table 1 shows the most utilized merged labels obtained for most edge-populated graphs together with graph size and estimated precision. In case of flights, treks and trains, precision was estimated using exact data. In other cases we estimated precision based on reading relevant web pages. We can see that the majority of connectivity sets are meaningful and the precision obtained for most of these sets is high. Figure 3 shows a partial graph for 'walking'-type labels and Figure Nodes 4 shows such a graph for train labels 11 . Comparing the obtained map with real map data we notice a definite correlation between actual and induced relative connection of discovered places. (Schockaert et al., 2008) used their framework to discover neighborhoods of Cardiff. In our case, the most appropriate relation which connects neighborhood locations is walking/cycling. Hence, comparing the results to previous work, we have examined the results obtained for the 'walking' label in details. (Schockaert et al., 2008) report discovery of 68 locations, of them 7 are alternate entries, 4 can be considered vernacular or colloquial, 10 are not considered to be neighborhoods, and 5 are either close to, but not within, Cardiff, or are areas within Cardiff that are not recognized neighborhoods. In our set we have discovered 88 neighborhood names, of them 18 are alternate entries of correct neighborhoods, 4 can be considered vernacular or colloquial, 3 are not considered to be neighborhoods, and 15 are areas outside the Cardiff area.",
"cite_spans": [
{
"start": 1034,
"end": 1059,
"text": "(Schockaert et al., 2008)",
"ref_id": "BIBREF21"
},
{
"start": 1341,
"end": 1366,
"text": "(Schockaert et al., 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [
{
"start": 353,
"end": 360,
"text": "Table 1",
"ref_id": "TABREF1"
},
{
"start": 768,
"end": 776,
"text": "Figure 3",
"ref_id": "FIGREF1"
},
{
"start": 829,
"end": 842,
"text": "Figure Nodes",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Cardiff area",
"sec_num": "4.3"
},
{
"text": "Considering alternate entries as hits, we got superior precision of 66/88 = 0.75 in comparison to 49/68 = 0.72. It should be noted however that we found many more alternative names possibly due to our larger coverage. Also both our framework and the goal were substantially different.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Cardiff area",
"sec_num": "4.3"
},
{
"text": "In this paper we presented a framework which, given a small set of seed terms describing a geographical region, discovers an underlying connectivity and transport graph together with the extraction of common and alternative location names in this region. Our framework is based on the 11 Spatial position of displayed graph components is arbitrary, we only made sure that there are no intersecting edges. observation that 'from...to'-like patterns can encode connectedness in very precise manner. In our framework, we have combined iterative patternand web-based relationship acquisition with the discovery of new patterns and refinement of the location graph. In our evaluation we showed that our framework is capable of extracting high quality non-trivial information from free text given very restricted input and not relying on any heavy preprocessing techniques such as parsing or NER.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "The success of the proposed framework opens many challenging directions for its enhancement. Thus we would like to incorporate in our network patterns which allow traveling times and distances to be extracted, such as 'N miles from X to Y'. While in this paper we focus on specific type of geographical relationships, similar frameworks can be useful for a wider class of spatial relationships. Automated acquisition of spatial data can significantly help many NLP tasks, e.g., question answering. We would also like to incorporate some patterns based on (Egenhofer and Shariff, 1998) , such as 'crosses', 'goes through' or 'runs into', which may allow automated acquisition of complex spatial relationships. Finally, we would like to incorporate in our framework mod-ules which may allow recognition of structured data, like those developed by (Schockaert et al., 2008) .",
"cite_spans": [
{
"start": 555,
"end": 584,
"text": "(Egenhofer and Shariff, 1998)",
"ref_id": "BIBREF9"
},
{
"start": 845,
"end": 870,
"text": "(Schockaert et al., 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "We used the DMOZ corpus(Gabrilovich and Markovitch, 2005).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Yahoo! Boss allows downloading up to a 1000 descriptions, up to 50 in each request. Thus for each seed word, we have performed a few dozen search requests.3 Note that the 'problematic' term may be the central term in the region we focus upon -if this happen it means that the seeds do not specify the region well.4 Depth is a function of the richness of transport links in the domain. For connected domains (Cardiff, Israel) we used 4, for less connected ones (Nepal) we used 10.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Search engines do not support punctuation in queries, hence these symbols were omitted in web requests and considered only when processing the retrieved snippets.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Such locations will be shown in double circles in the evaluation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We recognize that in case of some labels, e.g. 'walk', the precision measure is subjective. Nevertheless it provides a good indication for the quality of our results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Graph nodes were manually positioned such that edges do not intersect. Recall that our goal is to build a network graph, which is an abstract structure. The 2-D embedding of the graph shown here is only for illustrative purposes and is not part of our algorithm. 9 A few dozens of correctly discovered places were omitted to make the picture readable.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://earth-info.nga.mil/gns/html/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Snowball: Extracting Relations from Large Plain-text Collections",
"authors": [
{
"first": "Eugene",
"middle": [],
"last": "Agichtein",
"suffix": ""
},
{
"first": "Luis",
"middle": [],
"last": "Gravano",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Eugene Agichtein, Luis Gravano, 2000. Snowball: Extracting Relations from Large Plain-text Collec- tions. ACM DL '00.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Discovering Geographic Locations in Web Pages Using Urban Addresses",
"authors": [
{
"first": "Karla",
"middle": [],
"last": "Borges",
"suffix": ""
},
{
"first": "Alberto",
"middle": [],
"last": "Laender",
"suffix": ""
},
{
"first": "Claudia",
"middle": [],
"last": "Medeiros",
"suffix": ""
},
{
"first": "Clodoveu",
"middle": [],
"last": "Davis",
"suffix": ""
}
],
"year": 2007,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Karla Borges, Alberto Laender, Claudia Medeiros, Clodoveu Davis, 2007. Discovering Geographic Locations in Web Pages Using Urban Addresses. Fourth Workshop on Geographic Information Re- trieval.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Automatic Construction of a Hypernym-labeled Noun Hierarchy from Text",
"authors": [
{
"first": "Sharon",
"middle": [],
"last": "Caraballo",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sharon Caraballo, 1999. Automatic Construction of a Hypernym-labeled Noun Hierarchy from Text. ACL '99.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "VerbOcean: Mining the Web for Fine-grained Semantic Verb Relations",
"authors": [
{
"first": "Timothy",
"middle": [],
"last": "Chklovski",
"suffix": ""
},
{
"first": "Patrick",
"middle": [],
"last": "Pantel",
"suffix": ""
}
],
"year": 2004,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Timothy Chklovski, Patrick Pantel 2004. VerbOcean: Mining the Web for Fine-grained Semantic Verb Re- lations. EMNLP '04.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Automatic Thesaurus Extraction. SIGLEX '02",
"authors": [
{
"first": "James",
"middle": [
"R"
],
"last": "Curran",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Moens",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "James R. Curran, Marc Moens, 2002. Improvements in Automatic Thesaurus Extraction. SIGLEX '02.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Efficient Unsupervised Discovery of Word Categories Using Symmetric Patterns and High Frequency Words. COLING-ACL '06",
"authors": [
{
"first": "Dmitry",
"middle": [],
"last": "Davidov",
"suffix": ""
},
{
"first": "Ari",
"middle": [],
"last": "Rappoport",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dmitry Davidov, Ari Rappoport, 2006. Efficient Unsupervised Discovery of Word Categories Us- ing Symmetric Patterns and High Frequency Words. COLING-ACL '06.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Fully Unsupervised Discovery of Conceptspecific Relationships by Web Mining",
"authors": [
{
"first": "Dmitry",
"middle": [],
"last": "Davidov",
"suffix": ""
},
{
"first": "Ari",
"middle": [],
"last": "Rappoport",
"suffix": ""
},
{
"first": "Moshe",
"middle": [],
"last": "Koppel",
"suffix": ""
}
],
"year": 2007,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dmitry Davidov, Ari Rappoport, Moshe Koppel, 2007. Fully Unsupervised Discovery of Concept- specific Relationships by Web Mining. ACL '07.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Classification of Semantic Relationships Between Nominals Using Pattern Clusters",
"authors": [
{
"first": "Dmitry",
"middle": [],
"last": "Davidov",
"suffix": ""
},
{
"first": "Ari",
"middle": [],
"last": "Rappoport",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dmitry Davidov, Ari Rappoport, 2008. Classification of Semantic Relationships Between Nominals Using Pattern Clusters. ACL '08.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Naive Geography",
"authors": [
{
"first": "Max",
"middle": [],
"last": "Egenhofer",
"suffix": ""
},
{
"first": "Rashid",
"middle": [],
"last": "Shariff",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of COSIT '95",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Max Egenhofer, Rashid Shariff, 1995. Naive Geogra- phy. Proceedings of COSIT '95.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Metric Details for Natural-Language Spatial Relations",
"authors": [
{
"first": "Max",
"middle": [],
"last": "Egenhofer",
"suffix": ""
},
{
"first": "Rashid",
"middle": [],
"last": "Shariff",
"suffix": ""
}
],
"year": 1998,
"venue": "Journal of the ACM TOIS",
"volume": "4",
"issue": "",
"pages": "295--321",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Max Egenhofer, Rashid Shariff, 1998. Metric Details for Natural-Language Spatial Relations. Journal of the ACM TOIS, 4:295-321, 1998.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Feature Generation for Text Categorization Using World Knowledge",
"authors": [
{
"first": "Evgeniy",
"middle": [],
"last": "Gabrilovich",
"suffix": ""
},
{
"first": "Shaul",
"middle": [],
"last": "Markovitch",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Evgeniy Gabrilovich, Shaul Markovitch, 2005. Fea- ture Generation for Text Categorization Using World Knowledge. IJCAI '05.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Scaling Distributional Similarity to Large Corpora",
"authors": [
{
"first": "James",
"middle": [],
"last": "Gorman",
"suffix": ""
},
{
"first": "James",
"middle": [
"R"
],
"last": "Curran",
"suffix": ""
}
],
"year": 2006,
"venue": "COLING-ACL '06",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "James Gorman, James R. Curran, 2006. Scaling Dis- tributional Similarity to Large Corpora. COLING- ACL '06.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Automatic Acquisition of Hyponyms from Large Text Corpora",
"authors": [
{
"first": "Marti",
"middle": [],
"last": "Hearst",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marti Hearst, 1992. Automatic Acquisition of Hy- ponyms from Large Text Corpora. COLING '92.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Automatic Retrieval and Clustering of Similar Words",
"authors": [
{
"first": "Dekang",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dekang Lin, 1998. Automatic Retrieval and Cluster- ing of Similar Words. COLING '98.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Geographic Cooccurrence as a Tool for GIR",
"authors": [
{
"first": "Simon",
"middle": [],
"last": "Overell",
"suffix": ""
},
{
"first": "Stefan",
"middle": [],
"last": "Ruger",
"suffix": ""
}
],
"year": 2007,
"venue": "Fourth ACM Workshop on Geographical information retrieval",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Simon Overell, Stefan Ruger, 2007. Geographic Co- occurrence as a Tool for GIR. Fourth ACM Work- shop on Geographical information retrieval.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Discovering Word Senses from Text",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Pantel",
"suffix": ""
},
{
"first": "Dekang",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Patrick Pantel, Dekang Lin, 2002. Discovering Word Senses from Text. SIGKDD '02.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Towards Terascale Knowledge Acquisition. COLING '04",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Pantel",
"suffix": ""
},
{
"first": "Deepak",
"middle": [],
"last": "Ravichandran",
"suffix": ""
},
{
"first": "Eduard",
"middle": [],
"last": "Hovy",
"suffix": ""
}
],
"year": 2004,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Patrick Pantel, Deepak Ravichandran, Eduard Hovy, 2004. Towards Terascale Knowledge Acquisition. COLING '04.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "The Design and Implementation of SPIRIT: a Spatially Aware Search Engine for Information Retrieval on the Internet",
"authors": [
{
"first": "Ross",
"middle": [],
"last": "Purves",
"suffix": ""
},
{
"first": "Paul",
"middle": [],
"last": "Clough",
"suffix": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Avi",
"middle": [],
"last": "Arampatzis",
"suffix": ""
},
{
"first": "Benedicte",
"middle": [],
"last": "Bucher",
"suffix": ""
},
{
"first": "Gaihua",
"middle": [],
"last": "Fu",
"suffix": ""
},
{
"first": "Hideo",
"middle": [],
"last": "Joho",
"suffix": ""
},
{
"first": "Awase",
"middle": [],
"last": "Syed",
"suffix": ""
},
{
"first": "Subodh",
"middle": [],
"last": "Vaid",
"suffix": ""
},
{
"first": "Bisheng",
"middle": [],
"last": "Yang",
"suffix": ""
}
],
"year": 2007,
"venue": "International Journal of Geographical Information Science",
"volume": "21",
"issue": "7",
"pages": "717--745",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ross Purves, Paul Clough, Christopher Jones, Avi Arampatzis, Benedicte Bucher, Gaihua Fu, Hideo Joho, Awase Syed, Subodh Vaid, Bisheng Yang, 2007. The Design and Implementation of SPIRIT: a Spatially Aware Search Engine for Information Re- trieval on the Internet. International Journal of Ge- ographical Information Science, 21(7):717-745.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Learning Dictionaries for Information Extraction by Multi-Level Bootstrapping",
"authors": [
{
"first": "Ellen",
"middle": [],
"last": "Riloff",
"suffix": ""
},
{
"first": "Rosie",
"middle": [],
"last": "Jones",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ellen Riloff, Rosie Jones, 1999. Learning Dictionar- ies for Information Extraction by Multi-Level Boot- strapping. AAAI '99.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "GikiP: Evaluating Geographical Answers from Wikipedia. Fifth Workshop on Geographic Information Retrieval",
"authors": [
{
"first": "Diana",
"middle": [],
"last": "Santos",
"suffix": ""
},
{
"first": "Nuno",
"middle": [],
"last": "Cardoso",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Diana Santos, Nuno Cardoso, 2008. GikiP: Evalu- ating Geographical Answers from Wikipedia. Fifth Workshop on Geographic Information Retrieval.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Mining Topological Relations from the Web. International Workshop on Flexible Database and Information System Technology",
"authors": [
{
"first": "Steven",
"middle": [],
"last": "Schockaert",
"suffix": ""
},
{
"first": "Philip",
"middle": [],
"last": "Smart",
"suffix": ""
},
{
"first": "Alia",
"middle": [],
"last": "Abdelmoty",
"suffix": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Jone",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "",
"issue": "",
"pages": "652--656",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steven Schockaert, Philip Smart, Alia Abdelmoty, Christopher Jone, 2008. Mining Topological Re- lations from the Web. International Workshop on Flexible Database and Information System Technol- ogy, workshop at DEXA, Turin, pp. 652-656.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "A Graph Model for Unsupervised Lexical Acquisition",
"authors": [
{
"first": "Dominic",
"middle": [],
"last": "Widdows",
"suffix": ""
},
{
"first": "Beate",
"middle": [],
"last": "Dorow",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dominic Widdows, Beate Dorow, 2002. A Graph Model for Unsupervised Lexical Acquisition. COL- ING '02.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"type_str": "figure",
"text": "Partial graph for Israel south settings.",
"num": null
},
"FIGREF1": {
"uris": null,
"type_str": "figure",
"text": "Partial graph of the obtained Cardiff region for the walk/walking/cycling label.",
"num": null
},
"FIGREF2": {
"uris": null,
"type_str": "figure",
"text": "Partial graph of the obtained Cardiff region for the railway/train label.",
"num": null
},
"TABREF1": {
"content": "<table><tr><td>: The merged labels obtained for 5</td></tr><tr><td>most edge-populated graphs, including number of</td></tr><tr><td>nodes and edges for each label. The estimated pre-</td></tr><tr><td>cision according to each label definition is shown</td></tr><tr><td>in parentheses.</td></tr></table>",
"text": "",
"html": null,
"type_str": "table",
"num": null
}
}
}
} |