File size: 79,828 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 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 |
{
"paper_id": "O15-3002",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:10:12.732498Z"
},
"title": "Explanation Generation for a Math Word Problem Solver",
"authors": [
{
"first": "Chien-Tsung",
"middle": [],
"last": "Huang",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"addrLine": "128 Academia Road, Section 2",
"postCode": "11529",
"settlement": "Nankang",
"region": "Taipei",
"country": "Taiwan"
}
},
"email": ""
},
{
"first": "Yi-Chung",
"middle": [],
"last": "Lin",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"addrLine": "128 Academia Road, Section 2",
"postCode": "11529",
"settlement": "Nankang",
"region": "Taipei",
"country": "Taiwan"
}
},
"email": ""
},
{
"first": "Keh-Yih",
"middle": [],
"last": "Su",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"addrLine": "128 Academia Road, Section 2",
"postCode": "11529",
"settlement": "Nankang",
"region": "Taipei",
"country": "Taiwan"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper proposes a math operation (e.g., Summation, Addition, Subtraction, Multiplication, Division, etc.) oriented approach to explain how the answers are obtained for math word problems. Based on the reasoning chain given by the inference engine, we search each math operator involved. For each math operator, we generate one sentence. Since explaining math operation does not require complicated syntax, we adopt a specific template to generate the text for each kind of math operator. To the best of our knowledge, this is the first explanation generation that is specifically tailored to solving the math word problem.",
"pdf_parse": {
"paper_id": "O15-3002",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper proposes a math operation (e.g., Summation, Addition, Subtraction, Multiplication, Division, etc.) oriented approach to explain how the answers are obtained for math word problems. Based on the reasoning chain given by the inference engine, we search each math operator involved. For each math operator, we generate one sentence. Since explaining math operation does not require complicated syntax, we adopt a specific template to generate the text for each kind of math operator. To the best of our knowledge, this is the first explanation generation that is specifically tailored to solving the math word problem.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Since Big Data mainly aims to explore the correlation between surface features but not their underlying causality relationship (Mayer-Sch\u00f6nberger & Cukier, 2013) , the \"Big Mechanism\" program 1 has been proposed by DARPA to find out \"why\" behind the big data. However, the pre-requisite for it is that the machine can read each document and learn its associated knowledge, which is the task of Machine Reading (MR) (Strassel et al., 2010) . Therefore, the Natural Language and Knowledge Processing Group (under the Institute of Information Science) of Academia Sinica formally launched a 3-year MR project (from January 2015) to attack this problem.",
"cite_spans": [
{
"start": 127,
"end": 161,
"text": "(Mayer-Sch\u00f6nberger & Cukier, 2013)",
"ref_id": "BIBREF9"
},
{
"start": 415,
"end": 438,
"text": "(Strassel et al., 2010)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Since a domain-independent MR system is difficult to build, the Math Word Problem (MWP) (Mukherjee & Garain, 2008) is chosen as our first test case to study MR. The main reason for that is that it not only adopts less complicated syntax but also requires less amount of domain knowledge; therefore, the researcher can focus more on text understanding and The architecture of this proposed approach is shown in Figure 1 . First, every sentence in the MWP, including both body text and the question text, is analyzed by the Language Analysis module, which transforms each sentence into its corresponding semantic representation tree. The sequence of semantic representation trees is then sent to the Problem Resolution module, which adopts logic inference approach, to obtain the answer of each question in the MWP. Finally, the Explanation Generation module will explain how the answer is found (in natural language text) according to the given reasoning chain (Russell & Norvig, 2009 ) (which includes all related logic statements and inference steps to reach the answer). As depicted in Figure 1 (b), the Problem Resolution module in the proposed system consists of three components: Solution Type Classifier (TC), Logic Form Converter (LFC) and Inference Engine (IE). The TC is responsible to assign a math operation type for every question of the MWP. In order to perform logic inference, the LFC first extracts the related facts from the given semantic representation tree and then represents them in First Order Logic (FOL) predicates/functions form (Russell & Norvig, 2009) . In addition, it is also responsible for transforming every question into an FOL-like utility function according to the assigned solution type. Finally, according to inference rules, the IE derives new facts from the old ones provided by the LFC. Besides, it is also responsible for providing utilities to perform math operations on related facts.",
"cite_spans": [
{
"start": 88,
"end": 114,
"text": "(Mukherjee & Garain, 2008)",
"ref_id": "BIBREF11"
},
{
"start": 960,
"end": 983,
"text": "(Russell & Norvig, 2009",
"ref_id": "BIBREF16"
},
{
"start": 1555,
"end": 1579,
"text": "(Russell & Norvig, 2009)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 410,
"end": 418,
"text": "Figure 1",
"ref_id": "FIGREF0"
},
{
"start": 1088,
"end": 1096,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "In addition to understanding the given text and then performing inference on it, a very desirable characteristic of an MWP solver (also an MR system) is being able to explain how the answer is obtained in a human comprehensible way. This task is done by the Explanation Explanation Generation for a Math Word Problem Solver 29 Generator (EG) module, which is responsible to explaining the associated reasoning steps in fluent natural language from the given reasoning chain (Russell & Norvig, 2009) . In other words, explanation generation is the process of constructing natural language outputs from a non-linguistic input, and is a task of Natural Language Generation (NLG).",
"cite_spans": [
{
"start": 474,
"end": 498,
"text": "(Russell & Norvig, 2009)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Various applications of NLG (such as weather report) have been proposed before (Halliday, 1985; Goldberg et al., 1994; Paris & Vander Linden, 1996; Milosavljevic, 1997; Paris et al., 1998; Coch, 1998; Reiter et al., 1999) . However, to the best of our knowledge, none of them discusses how to generate the explanation for WMP, which possesses some special characteristics (e.g., math operation oriented description) that are not shared with other tasks.",
"cite_spans": [
{
"start": 79,
"end": 95,
"text": "(Halliday, 1985;",
"ref_id": "BIBREF3"
},
{
"start": 96,
"end": 118,
"text": "Goldberg et al., 1994;",
"ref_id": "BIBREF2"
},
{
"start": 119,
"end": 147,
"text": "Paris & Vander Linden, 1996;",
"ref_id": "BIBREF12"
},
{
"start": 148,
"end": 168,
"text": "Milosavljevic, 1997;",
"ref_id": "BIBREF10"
},
{
"start": 169,
"end": 188,
"text": "Paris et al., 1998;",
"ref_id": "BIBREF13"
},
{
"start": 189,
"end": 200,
"text": "Coch, 1998;",
"ref_id": "BIBREF0"
},
{
"start": 201,
"end": 221,
"text": "Reiter et al., 1999)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "A typical architecture for NLG is shown at Figure 2 , which is re-drawn from Jurafsky and Martin (Jurafsky & Martin, 2000) . Under this architecture, Communicative Goal, which specifies the purpose for communication, and Knowledge Base, which specifies the content to be generated, are fed as the inputs to Discourse Planner. The Discourse Planner will then output a hierarchy form to the Surface Realizer, which further solves the issues of selecting lexicons, functional words, lexicon order in the sentence, syntactic form, subject-verb agreement (mainly required for English), tense (mainly required for English), and so on for the texts to be generated.",
"cite_spans": [
{
"start": 97,
"end": 122,
"text": "(Jurafsky & Martin, 2000)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 43,
"end": 51,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "To implement the Discourse Planner, D. Jurafsky (Jurafsky & Martin, 2000) proposed to adopt text schemata and rhetorical structure planning to implement the Discourse Planner. On the other hand, Kay proposed to implement the Surface Realizer with both Systemic Grammar, which is a part of Systemic Functional Linguistic proposed by Halliday (Halliday, 1985) , and Functional Unification Grammar (Kay, 1979) .",
"cite_spans": [
{
"start": 48,
"end": 73,
"text": "(Jurafsky & Martin, 2000)",
"ref_id": "BIBREF5"
},
{
"start": 341,
"end": 357,
"text": "(Halliday, 1985)",
"ref_id": "BIBREF3"
},
{
"start": 395,
"end": 406,
"text": "(Kay, 1979)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 2. A typical architecture for NLG systems (Jurafsky & Martin, 2000)",
"sec_num": null
},
{
"text": "Since the description for math operation centering on an operator is in a relatively fixed textual format, which is disparate from other kinds of NLG tasks, those approaches mentioned above might be over-killed for the task of MWP explanation generation (and thus introduce unnecessary complexity). Therefore, we propose an operator oriented approach to search each math operator involved in the reasoning chain. For each math operator, we generate one sentence. Since explaining math operation does not require complicated syntax, a specific template is adopted to generate the text for each kind of math operator. To the best of our knowledge, this is the first approach that is specifically tailored to the MWP task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 2. A typical architecture for NLG systems (Jurafsky & Martin, 2000)",
"sec_num": null
},
{
"text": "Our main contributions are listed as following,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 2. A typical architecture for NLG systems (Jurafsky & Martin, 2000)",
"sec_num": null
},
{
"text": "We proposed a math operation oriented Explanation Tree for facilitating the discourse work on MWP.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "1.",
"sec_num": null
},
{
"text": "We propose an operator oriented algorithm to segment the Explanation Tree into various sentences, which makes our Discourse Planner universal for MWP and independent to the language adopted.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "2.",
"sec_num": null
},
{
"text": "We propose using operator-based templates to generate the natural language text for explaining the associated math operation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.",
"sec_num": null
},
{
"text": "The remainder of this paper is organized as follows: Section 2 introduces the framework of our Explanation Generator. Afterwards, various templates of more operators (other than SUM used in Section 2) are introduced in Section 3. Section 4 discusses the future work of our explanation system. Section 5 then reviews the related works. Finally, the conclusions are drawn in Section 6. Figure 3 shows the block diagram of our proposed EG. First, the Inference Engine generates the answer and its associated reasoning chain for the given MWP. First, to ease the operation of the EG, we convert the given reasoning chain into its corresponding Explanation Tree (shown at Figure 5 ) to center on each operator appearing in the reasoning chain (such that it is convenient to perform sentence segmentation later). Next, the Explanation Tree will be fed as input to the Discourse Planner, which divides the given Explanation Tree into various subtrees such that each subtree will generate one explanation sentence later. Finally, the Function Word Insertion & Ordering Module will insert the necessary functional words and order them with those extracted content words (from the segmented Explanation Subtee) to generate the Explanation Texts.",
"cite_spans": [],
"ref_spans": [
{
"start": 384,
"end": 392,
"text": "Figure 3",
"ref_id": null
},
{
"start": 667,
"end": 675,
"text": "Figure 5",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "3.",
"sec_num": null
},
{
"text": "Following example demonstrates how the framework works. And Figure 4 (a) reveals more details for each part illustrated in Figure 3 .",
"cite_spans": [],
"ref_spans": [
{
"start": 60,
"end": 68,
"text": "Figure 4",
"ref_id": "FIGREF1"
},
{
"start": 123,
"end": 131,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Figure 3. Block Diagram of the proposed MWP Explanation Generator",
"sec_num": null
},
{
"text": "[Sample-1] \u963f\u5fd7\u8cb7\u4e00\u81fa\u51b0\u7bb1\u548c\u4e00\u81fa\u96fb\u8996\u6a5f\uff0c\u4ed8 2 \u758a\u4e00\u842c\u5143\u9214\u7968\u30016 \u5f35\u5343\u5143\u9214\u7968\u548c 13 \u5f35\u767e\u5143 \u9214\u7968\uff0c\u963f\u5fd7\u5171\u4ed8\u4e86\u5e7e\u5143\uff1f",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 3. Block Diagram of the proposed MWP Explanation Generator",
"sec_num": null
},
{
"text": "(A-Zhi bought a refrigerator and a TV. He paid 2 stacks of ten-thousand-dollar bill, six thousand-dollar bills and 13 hundred-dollar bills. How many dollars did A-Zhi pay in total?) Facts Generation in Figure 4 (a) shows how the body text is transformed into meaningful logic facts to perform inference. In math problems, the facts are mostly related to quantities. The generated facts are either the quantities explicitly appearing in the sentence of the problem or the implicit quantities deduced by the IE. Those generated facts are linked together within the reasoning chain constructed by the IE as shown in Figure 4 (b). Within this framework, the discourse planner is responsible for selecting the associated content for each sentence to be generated. A typical reasoning chain, represented with an Explanation Tree structure, is shown at Figure 4(b) . The operator-node (OP_node) layers and quantity-node (Quan_node) layers are interleaved within the Explanation Tree, and serving as the input data structure to OP Oriented Algorithm in Discourse Planner, which will be further presented as pseudo code in Section 2.2 (Algorithm 1). As shown at Figure 4(b) , the (#a, #b) pair denotes facts derived from the body sentences. The OP means the operator used to deduce implicit facts and represented as non-leaf circle nodes. Each \"G?\" expresses a sentence to be generated. Given the reasoning chain, the first step is to decide how many sentences will be generated, which corresponds to the Discourse Planning phase (Jurafsky & Martin, 2000) of the traditional NLG task. Currently, we will generate one sentence for each operator shown in the reasoning chain. For the above example, since there are four operators (three IE-Multiplications 2 and one LFC-Sum), we will have four corresponding sentences; and the associated nodes (i.e., content) are circled by \"G?\" for each sentence in the figure.",
"cite_spans": [
{
"start": 1521,
"end": 1546,
"text": "(Jurafsky & Martin, 2000)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 202,
"end": 210,
"text": "Figure 4",
"ref_id": "FIGREF1"
},
{
"start": 613,
"end": 621,
"text": "Figure 4",
"ref_id": "FIGREF1"
},
{
"start": 846,
"end": 857,
"text": "Figure 4(b)",
"ref_id": "FIGREF1"
},
{
"start": 1153,
"end": 1164,
"text": "Figure 4(b)",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Figure 3. Block Diagram of the proposed MWP Explanation Generator",
"sec_num": null
},
{
"text": "Furthermore, Figure 5 shows that three sets of facts are originated from the 2 nd body sentence (indicated by three S2 nodes). Each set contains a corresponding quantity-fact (i.e., q1(\u758a), q2(\u5f35), and q3(\u5f35)) and its associated object (i.e., n1, n2, and n3). For example, the first set (the left most one) contains q1(\u758a) (for \"2 \u758a\") and n1 (for \"\u4e00\u842c\u5143\u9214\u7968\"). This figure also shows that the outputs of three IE-Multiplication operators (i.e., \"20,000 \u5143\", \"6,000 \u5143\", and \"1,300 \u5143\") will be fed into the last LFC-Sum to get the final desired result \"27,300 \u5143\" (denoted by the \"Ans(SUM)\" node in the figure).",
"cite_spans": [],
"ref_spans": [
{
"start": 13,
"end": 21,
"text": "Figure 5",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Figure 3. Block Diagram of the proposed MWP Explanation Generator",
"sec_num": null
},
{
"text": "After having given the corresponding content (associated with those nodes within the big circle), we need to generate the corresponding sentence with appropriate function words added. This step corresponds to the Surface Realization phase (Jurafsky & Martin, 2000) in NLG. Currently, since the syntax of the explanation text of our task is not complicated, we use various templates to take into account the pre-specified fillers (\" \") and the slots to be filled (\" \" and \" \") and their order for generating the desired explanation sentence. Figure 4(c) shows how a sentence is generated from a selected template based on the given Explanation Tree. ",
"cite_spans": [
{
"start": 239,
"end": 264,
"text": "(Jurafsky & Martin, 2000)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 541,
"end": 552,
"text": "Figure 4(c)",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Figure 3. Block Diagram of the proposed MWP Explanation Generator",
"sec_num": null
},
{
"text": "The original reasoning chain resulted from the IE is actually a stream of chunks (as shown in Figure 4 (a)), in which the causal chain is implicitly embedded. Therefore, it is not suitable for explaining inference steps. The Explanation Tree Builder is thus adopted to build up the Explanation Tree, which centers on the math operations involved in the inference process, to explicitly express the causal chain implied.",
"cite_spans": [],
"ref_spans": [
{
"start": 94,
"end": 102,
"text": "Figure 4",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Explanation Tree Builder",
"sec_num": "2.1"
},
{
"text": "The Explanation Tree Builder first receives various facts, as a stream of chunks, from the IE. It then creates the nodes of the Explanation Tree according to the content of those chunks. After the Explanation Tree is created, it serves as the corresponding reasoning chain for the following process since then.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Explanation Tree Builder",
"sec_num": "2.1"
},
{
"text": "With the root node serving as the Answer, which is a Quan_node, the Explanation Tree is interleaved with Quan_node layers and OP_node layers, as shown in Figure 4(b) . Each OP_node has one Quan_node as its parent node, and has at least one Quan_node as it's child node. On the other hand, each Quan_node (except the root node) serves as the input to an OP_node. With the Explanation Tree, the work of discourse planning can be simply done via traversing those OP_nodes, which will be described in the following section.",
"cite_spans": [],
"ref_spans": [
{
"start": 154,
"end": 165,
"text": "Figure 4(b)",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Explanation Tree Builder",
"sec_num": "2.1"
},
{
"text": "In NLG, the discourse planner selects the content from the knowledge base according to what should be presented in the output text, and then structures them coherently. To facilitate the explanation process, we first convert the given reasoning chain to its corresponding Explanation Tree, as shown at Figure 4(b) to ease the following operations. The Explanation Tree is adopted because its structure allows us to regard the OP as a basis to do sentence segmentation for the deductive steps adopted in MWP. Within the Explanation Tree, the layers of OP nodes are interleaved with the layers of quantity nodes, and the root-node is the quantity node which denotes the desired Answer. ",
"cite_spans": [],
"ref_spans": [
{
"start": 302,
"end": 313,
"text": "Figure 4(b)",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Sentence Segmenter (Discourse Planner)",
"sec_num": "2.2"
},
{
"text": "After having constructed the Explanation Tree, we need to know how to group the nodes within the tree to make a sentence. As one can imagine, there are various ways to combine different quantities and operators (within the Explanation Tree) into a sentence: you can either explain several operations within one complicated sentence, or explain those operations with several simple sentences. Discourse planner therefore controls the process for generating the discourse structure, which mainly decides how to group various Explanation Tree nodes into different discourse segments. The proposed OP Oriented Algorithm, as shown above, is introduced to organize various Explanation Tree nodes into different groups (each of them will correspond to a sentence to be generated). Basically, it first locates the lowest operation node, and then traverses each operation node from left to right (with the same parent node) and bottom to top. For each operation node found, it will group the related nodes around that operation node into one discourse segment (i.e., one sentence). For each group, it will call the Surface Realizer module to generate the final sentence. It is named \"OP oriented\" because every generated sentence in the explanation text is based on one operator, which serves as a central hub to associate all quantities directly linked with it. Also, the template for building up a sentence is selected based on the associated operator, which will be further introduced in Section 2.3. Figure 6 shows three grouped explanation subtrees within the original explanation tree. The arrows between SUM node and its children show the sequence of those subtrees to be presented, and the numbers imposed on tree nodes indicate the indexes of the corresponding sentence to be generated.",
"cite_spans": [],
"ref_spans": [
{
"start": 1495,
"end": 1503,
"text": "Figure 6",
"ref_id": "FIGREF4"
}
],
"eq_spans": [],
"section": "Output(ExpSet)",
"sec_num": null
},
{
"text": "The sentence segmenter module discussed previously only partitions the explanation tree into various Explanation Subtrees. It has no control over how the components within an explanation subtree should be positioned. Also, we frequently need to insert extra functional words (sometimes even verbs) such as \"\u5c31\u662f\"\u3001\"\u5171\u662f\"\u3001\"\u7b49\u540c\u65bc\" (\"are\", \"equal\", \"mean\") and the like to have a fluent sentence. For example, in Sample-1, to explain what \"2 \u758a\u4e00\u842c\u5143\" (2 stacks of 10-thousand-dollar bill) means, we need an extra functional word \"\u5c31\u662f\" (\"are\") (or \"\u5171\u662f\"\u3001\"\u7b49\u540c\u65bc\" (\"equal\", \"mean\") and the like) to make the sentence readable. Furthermore, people prefer to add \"\u6240\u4ee5\" (\"Thus\"), to explicitly hint that the following text is closely related to the answer.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function Word Insertion and Ordering Module (Surface Realizer)",
"sec_num": "2.3"
},
{
"text": "Since the syntax for explaining math operation is not complicated, we adopt the template approach to accomplish both tasks mentioned above in the same time. Currently, for each math operator, a corresponding template is manually created, which contains various slots that will be filled with contents from the nodes in Explanation Tree. Figure 6 shows the connection between a template and its associated Explanation Tree for Sample-1. It comprises three kinds of nodes: the answer-node (shown by the rectangle ) which denotes the final answer and is basically a Quan_node; the OP_nodes (shown by the diamond ) which denote associated operators; and the quantity-nodes (shown by the rounded-corner rectangle ) which represent the values extracted by the LFC or inferred by the IE.",
"cite_spans": [],
"ref_spans": [
{
"start": 337,
"end": 345,
"text": "Figure 6",
"ref_id": "FIGREF4"
}
],
"eq_spans": [],
"section": "Function Word Insertion and Ordering Module (Surface Realizer)",
"sec_num": "2.3"
},
{
"text": "Take the last explanation sentence of the above sample 1 as an example, \u6240\u4ee5\uff0c\u5171\u4ed8\u4e86 20000 + 6000 + 1300 = 27300 \u5143 Since its associated operator is \"SUM\", the template of \"SUM\" is first fetched and there are four slots to be filled. The arrow then directs the flow to \u2460 for \"20,000\" to be printed out and then SUM for the \"+\". Next on, the flow is directed to the middle child node, \u2461, and \"6,000\" is therefore outputted as the subsequent component in this sentence, and then it directs back to SUM again to print \"+\". Finally, the flow directs to the most right-hand-side node, \u2462, then goes back to SUM; the \"1,300\" is then popped out accordingly. We don't print out the \"+\" for the SUM this time since we know there's no more child node below the SUM node that hasn't been traversed. After all the child nodes are traversed and their contents are copied into the associated slots, the parent node, \u2463, is traversed and the text \"=27,300 \u5143\" is printed out to complete the explanation sentence. Algorithm 2 shows the Function Word Insertion and Ordering algorithm, which illustrates how the surface realizer is implemented. After the list S is initiated at Line 4, the operation type of the OP_node is checked at Line 7 to select a corresponding template, which is assigned to OPtemplate at Line 8 (each kind of operator has its own template). Take Sample-1 for example, the template shown in Figure 6 (a) is selected for the \"SUM\" operator. Following the \"Arrow\" notation mentioned above, contents of the OP_node and its connecting nodes are put into List S at Line 9. Later on, the nodes in List S are filled into the template described above at Line 10, which corresponds to the Benchmark shown in Figure 6(b) . Finally, at Line 12, the slots of OPtemplate are all filled with appropriate contents. It then returns them as an explanation sentence string. Since each question will be processed separately and a reasoning chain will be associated with only one question, there is no restriction for the number of allowable question sentences (as the proposed algorithm only handles one reasoning chain each time).",
"cite_spans": [],
"ref_spans": [
{
"start": 1386,
"end": 1398,
"text": "Figure 6 (a)",
"ref_id": "FIGREF4"
},
{
"start": 1694,
"end": 1705,
"text": "Figure 6(b)",
"ref_id": "FIGREF4"
}
],
"eq_spans": [],
"section": "Explanation Generation for a Math Word Problem Solver 37",
"sec_num": null
},
{
"text": "As described in the previous section, the template adopted is closely related to the associated math operation. However, various templates share a meta-form with some common characteristics:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Other Associated Templates",
"sec_num": "3."
},
{
"text": "Explanation Generation for a Math Word Problem Solver",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Other Associated Templates",
"sec_num": "3."
},
{
"text": "(1) Each operator generates a sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "(2) Each sentence is generated from the operator and the quantities connected to it.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "(3) The operators and the quantities are inserted into the slots specified in the template.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "(4) The instantiated template serves as the corresponding explanation sentence string.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "Apart from the OP_SUM, this section introduces a few other templates associated with OP_MUL, OP_COMMON_DIVISION, and OP_UNIT_TRANS as follows. OP_MUL is related to Sample-1 mentioned above (Figure 7) . OP_COMMON_DIV is associated with Sample-2 ( Figure 8) . Also, Figure 9 shows the template associated with \"OP_UNIT_TRANS\" adopted in Sample-3. Figure 7 (a) ) and the explanation sentences for Sample-1.",
"cite_spans": [],
"ref_spans": [
{
"start": 189,
"end": 199,
"text": "(Figure 7)",
"ref_id": "FIGREF7"
},
{
"start": 246,
"end": 255,
"text": "Figure 8)",
"ref_id": "FIGREF9"
},
{
"start": 264,
"end": 272,
"text": "Figure 9",
"ref_id": "FIGREF10"
},
{
"start": 345,
"end": 357,
"text": "Figure 7 (a)",
"ref_id": "FIGREF7"
}
],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "[Sample-2] 1 \u500b\u5e73\u5e74\u6709 365 \u5929\uff0c3 \u500b\u5e73\u5e74\u5171\u6709\u5e7e\u5929\uff1f (One common-year (non-leap year) has 365 days. How many days do 3 common-year have?) ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "39",
"sec_num": null
},
{
"text": "Currently, 11 types of operators are supported. They are shown at Figure 10 . After having manually checked 37 MWP problems with their associated operations specified in Figure 10 ,",
"cite_spans": [],
"ref_spans": [
{
"start": 66,
"end": 75,
"text": "Figure 10",
"ref_id": "FIGREF0"
},
{
"start": 170,
"end": 179,
"text": "Figure 10",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Current Status",
"sec_num": "4."
},
{
"text": "Sum(function[,condition])=value Add(value1,value2)=value Subtract(value1,value2)=value Diff(value1,value2)=value Multiply(value1,value2)=value FloorDiv(value1,value2)=value CeilDiv(value1,value2)=value Surplus(value1,value2)=value ArgMin(arg,function,condition)=value ArgMax(arg,function,condition)=value UnitTrans(Old-Fact, New-Fact)=value",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Operation Utilities",
"sec_num": null
},
{
"text": "it is observed that the proposed approach could generate fluent explanation for all of them.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 10. Supported Operators by EG",
"sec_num": null
},
{
"text": "Earlier reported NLG applications include generating weather reports (Goldberg et al., 1994; Coch, 1998) , instructions (Paris et al., 1998; Wahlster et al., 1993) , encyclopedia-like descriptions (Milosavljevic, 1997; Dale et al., 1998) , letters (Reiter et al., 1999) , and an alternative to machine translation (Hartley & Paris, 1997) which adopts the techniques of connectionist (Ward, 1994) and statistical techniques (Langkilde & Knight, 1998) . However, none of them touched the problem of generating explanation for MWPs.",
"cite_spans": [
{
"start": 69,
"end": 92,
"text": "(Goldberg et al., 1994;",
"ref_id": "BIBREF2"
},
{
"start": 93,
"end": 104,
"text": "Coch, 1998)",
"ref_id": "BIBREF0"
},
{
"start": 120,
"end": 140,
"text": "(Paris et al., 1998;",
"ref_id": "BIBREF13"
},
{
"start": 141,
"end": 163,
"text": "Wahlster et al., 1993)",
"ref_id": "BIBREF18"
},
{
"start": 197,
"end": 218,
"text": "(Milosavljevic, 1997;",
"ref_id": "BIBREF10"
},
{
"start": 219,
"end": 237,
"text": "Dale et al., 1998)",
"ref_id": "BIBREF1"
},
{
"start": 248,
"end": 269,
"text": "(Reiter et al., 1999)",
"ref_id": "BIBREF14"
},
{
"start": 314,
"end": 337,
"text": "(Hartley & Paris, 1997)",
"ref_id": "BIBREF4"
},
{
"start": 383,
"end": 395,
"text": "(Ward, 1994)",
"ref_id": "BIBREF19"
},
{
"start": 423,
"end": 449,
"text": "(Langkilde & Knight, 1998)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5."
},
{
"text": "Previous approaches of natural language generation typically consist of a discourse planner that plans the structure of the discourse, and a surface realizer that generates the real sentences (Jurafsky & Martin, 2000) . D. Jurafsky adopted the model of text schemata and rhetorical relation planning for discourse planning. Approaches for surface realizer include Systemic Grammar, which is a part of Systemic Functional Linguistic proposed by Halliday (Halliday, 1985) , and Functional Unification Grammar (FUG) by Kay (Kay, 1979) .",
"cite_spans": [
{
"start": 192,
"end": 217,
"text": "(Jurafsky & Martin, 2000)",
"ref_id": "BIBREF5"
},
{
"start": 453,
"end": 469,
"text": "(Halliday, 1985)",
"ref_id": "BIBREF3"
},
{
"start": 520,
"end": 531,
"text": "(Kay, 1979)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5."
},
{
"text": "Different from those previous approaches for Discourse Planner (Reiter et al., 1999) , we solved the EG for MWP problem through first buildings the Explanation Tree, which is particularly suitable for representing math based problems. The OP oriented algorithm is then proposed for solving the discourse planning work in MWP. Furthermore, different from the FUG proposed by Kay (Kay, 1979) , the Function Word Insertion and Ordering Module adopts the OP based template for our Surface Realizer.",
"cite_spans": [
{
"start": 63,
"end": 84,
"text": "(Reiter et al., 1999)",
"ref_id": "BIBREF14"
},
{
"start": 378,
"end": 389,
"text": "(Kay, 1979)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5."
},
{
"text": "Since the EG for MWP differs from that of other NLG applications in that the inference process centers on the mathematical operation, an operator oriented algorithm is required. In the proposed framework, we first introduce the Explanation Tree to explicitly show how the answer of a math problem is acquired. Afterwards, an OP Oriented Algorithm performs sentence segmentation (act as Discourse Planner) for MWP. Lastly, for each operator, a corresponding template is adopted to achieve surface string realization.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6."
},
{
"text": "Our Explanation Generator of MWP solver is able to explain how the answer is obtained in a human comprehensible way, where the related reasoning steps can be systematically explained with fluent natural language. The main contributions of this paper are:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6."
},
{
"text": "Proposing the Explanation Tree for facilitating the discourse planning on MWP.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "1.",
"sec_num": null
},
{
"text": "Proposing an Operator oriented algorithm for structuring output sentence sequence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "2.",
"sec_num": null
},
{
"text": "Proposing the OP oriented templates for generating final explanation strings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.",
"sec_num": null
},
{
"text": "Prefixes \"IE-\" and \"LFC-\" denote that those operators are issued by IE and LFC, respectively.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Interactive generation and knowledge administration in MultiM\u00e9t\u00e9o",
"authors": [
{
"first": "J",
"middle": [],
"last": "Coch",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the Ninth International Workshop on Natural Language Generation",
"volume": "",
"issue": "",
"pages": "300--303",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Coch, J. (1998). Interactive generation and knowledge administration in MultiM\u00e9t\u00e9o. In Proceedings of the Ninth International Workshop on Natural Language Generation, 300-303.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Integrating natural language generation and hypertext to produce dynamic documents",
"authors": [
{
"first": "R",
"middle": [],
"last": "Dale",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Oberlander",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Milosavljevic",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Knott",
"suffix": ""
}
],
"year": 1998,
"venue": "Interacting with Computers",
"volume": "11",
"issue": "2",
"pages": "109--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dale, R., Oberlander, J., Milosavljevic, M., & Knott, A. (1998). Integrating natural language generation and hypertext to produce dynamic documents. Interacting with Computers, 11(2), 109-135.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Using natural-language processing to produce weather forecasts",
"authors": [
{
"first": "E",
"middle": [],
"last": "Goldberg",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Driedger",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Kittredge",
"suffix": ""
}
],
"year": 1994,
"venue": "IEEE Expert: Intelligent Systems and Their Applications",
"volume": "9",
"issue": "",
"pages": "45--53",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Goldberg, E., Driedger, N., & Kittredge, R. (1994). Using natural-language processing to produce weather forecasts. IEEE Expert: Intelligent Systems and Their Applications, 9(2), 45-53.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "An Introduction to Functional Grammar",
"authors": [
{
"first": "M",
"middle": [
"A K"
],
"last": "Halliday",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Halliday, M. A. K. (1985). An Introduction to Functional Grammar. London, England: Edward Arnold.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Multilingual document production: From support for translating to support for authoring",
"authors": [
{
"first": "A",
"middle": [],
"last": "Hartley",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Paris",
"suffix": ""
}
],
"year": 1997,
"venue": "Machine Translation",
"volume": "12",
"issue": "1",
"pages": "109--128",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hartley, A., & Paris, C. (1997). Multilingual document production: From support for translating to support for authoring. Machine Translation, 12(1), 109-128.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Speech and Language Processing",
"authors": [
{
"first": "D",
"middle": [],
"last": "Jurafsky",
"suffix": ""
},
{
"first": "J",
"middle": [
"H"
],
"last": "Martin",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jurafsky, D., & Martin, J. H. (2000). Speech and Language Processing. New Jersey: Prentice Hall.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Functional Grammar",
"authors": [
{
"first": "M",
"middle": [],
"last": "Kay",
"suffix": ""
}
],
"year": 1979,
"venue": "BLS-79",
"volume": "",
"issue": "",
"pages": "142--158",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kay, M. (1979). Functional Grammar. In BLS-79, Berkeley, CA, 142-158.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "The practical value of n-grams in generation",
"authors": [
{
"first": "I",
"middle": [],
"last": "Langkilde",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the Ninth International Workshop on Natural Language Generation",
"volume": "",
"issue": "",
"pages": "248--255",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Langkilde, I., & Knight, K. (1998). The practical value of n-grams in generation. In Proceedings of the Ninth International Workshop on Natural Language Generation, Niagara-on-the-Lake, Ontario, Canada, 248-255.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Designing a Tag-Based Statistical Math Word Problem Solver with Reasoning and Explanation",
"authors": [
{
"first": "Y",
"middle": [
"C"
],
"last": "Lin",
"suffix": ""
},
{
"first": "C",
"middle": [
"C"
],
"last": "Liang",
"suffix": ""
},
{
"first": "K",
"middle": [
"Y"
],
"last": "Hsu",
"suffix": ""
},
{
"first": "C",
"middle": [
"T"
],
"last": "Huang",
"suffix": ""
},
{
"first": "S",
"middle": [
"Y"
],
"last": "Miao",
"suffix": ""
},
{
"first": "W",
"middle": [
"Y"
],
"last": "Ma",
"suffix": ""
},
{
"first": "L",
"middle": [
"W"
],
"last": "Ku",
"suffix": ""
},
{
"first": "C",
"middle": [
"J"
],
"last": "Liau",
"suffix": ""
},
{
"first": "K",
"middle": [
"Y"
],
"last": "Su",
"suffix": ""
}
],
"year": 2015,
"venue": "International Journal of Computational Linguistics and Chinese Language Processing (IJCLCLP)",
"volume": "20",
"issue": "2",
"pages": "1--26",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lin, Y. C., Liang, C. C., Hsu, K. Y., Huang, C. T., Miao, S. Y., Ma, W. Y., Ku, L. W., Liau, C. J., & Su, K. Y. (2015). Designing a Tag-Based Statistical Math Word Problem Solver with Reasoning and Explanation. International Journal of Computational Linguistics and Chinese Language Processing (IJCLCLP), 20(2), 1-26.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Big Data -A Revolution That Will Transform How We Live, Work, and Think",
"authors": [
{
"first": "V",
"middle": [],
"last": "Mayer-Sch\u00f6nberger",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Cukier",
"suffix": ""
}
],
"year": 2013,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mayer-Sch\u00f6nberger, V., & Cukier, K. (2013). Big Data -A Revolution That Will Transform How We Live, Work, and Think. Houghton Mifflin Harcourt Publishing Company.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Content selection in comparison generation",
"authors": [
{
"first": "M",
"middle": [],
"last": "Milosavljevic",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the 6th European Workshop on Natural Language Generation",
"volume": "",
"issue": "",
"pages": "72--81",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Milosavljevic, M. (1997). Content selection in comparison generation. In Proceedings of the 6th European Workshop on Natural Language Generation, Duisburg, Germany, 72-81.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "A review of methods for automatic understanding of natural language mathematical problems",
"authors": [
{
"first": "A",
"middle": [],
"last": "Mukherjee",
"suffix": ""
},
{
"first": "U",
"middle": [],
"last": "Garain",
"suffix": ""
}
],
"year": 2008,
"venue": "Artif Intell Rev",
"volume": "29",
"issue": "2",
"pages": "93--122",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mukherjee, A., & Garain, U. (2008). A review of methods for automatic understanding of natural language mathematical problems. Artif Intell Rev, 29(2), 93-122.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "DRAFTER: An interactive support tool for writing multilingual instructions",
"authors": [
{
"first": "C",
"middle": [],
"last": "Paris",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vander Linden",
"suffix": ""
}
],
"year": 1996,
"venue": "IEEE Computer",
"volume": "29",
"issue": "7",
"pages": "49--56",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Paris, C., & Vander Linden, K. (1996). DRAFTER: An interactive support tool for writing multilingual instructions. IEEE Computer, 29(7), 49-56.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Automatic document creation from software specifications",
"authors": [
{
"first": "C",
"middle": [],
"last": "Paris",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vander Linden",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Lu",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the 3rd Australian Document Computing Symposium (ADCS-98)",
"volume": "",
"issue": "",
"pages": "26--31",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Paris, C., Vander Linden, K., & Lu, S. (1998). Automatic document creation from software specifications. In Proceedings of the 3rd Australian Document Computing Symposium (ADCS-98), 26-31.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Types of knowledge required to personalise smoking cessation letters",
"authors": [
{
"first": "E",
"middle": [],
"last": "Reiter",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Robertson",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Osman",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of the Joint European Conference on Artificial Intelligence in Medicine and Medical Decision Making",
"volume": "",
"issue": "",
"pages": "389--399",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Reiter, E., Robertson, R., & Osman, L. (1999). Types of knowledge required to personalise smoking cessation letters. In Proceedings of the Joint European Conference on Artificial Intelligence in Medicine and Medical Decision Making. Springer-Verlag, 389-399.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Artificial Intelligence : A Modern Approach",
"authors": [
{
"first": "S",
"middle": [
"J"
],
"last": "Russell",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Norvig",
"suffix": ""
}
],
"year": 2009,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Russell, S. J. & Norvig, P. (2009). Artificial Intelligence : A Modern Approach(3rd Edition), Prentice Hall.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "The DARPA Machine Reading Program -Encouraging Linguistic and Reasoning Research with a Series of Reading Tasks",
"authors": [
{
"first": "S",
"middle": [],
"last": "Strassel",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Adams",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Goldberg",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Herr",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Keesing",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Oblinger",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Simpson",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Schrag",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Wright",
"suffix": ""
}
],
"year": 2010,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Strassel, S., Adams, D., Goldberg, H., Herr, J., Keesing, R., Oblinger, D., Simpson, H., Schrag, R., & Wright, J. (2010). The DARPA Machine Reading Program -Encouraging Linguistic and Reasoning Research with a Series of Reading Tasks. LREC 2010.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Plan based Integration of Natural Language and Graphics Generation",
"authors": [
{
"first": "W",
"middle": [],
"last": "Wahlster",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Andr\u00e9",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Finkler",
"suffix": ""
},
{
"first": "H.-J",
"middle": [],
"last": "Profitlich",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Rist",
"suffix": ""
}
],
"year": 1993,
"venue": "Artificial Intelligence",
"volume": "63",
"issue": "",
"pages": "387--428",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wahlster, W., Andr\u00e9, E., Finkler, W., Profitlich, H.-J., & Rist, T. (1993). Plan based Integration of Natural Language and Graphics Generation. Artificial Intelligence, 63(1993) 387-428.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "A Connectionist Language Generator",
"authors": [
{
"first": "N",
"middle": [],
"last": "Ward",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ward, N. (1994). A Connectionist Language Generator. New Jersey: Ablex Publishing Corporation.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "The block diagram of the proposed Math Word Problem Solver.",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF1": {
"text": "(a). Facts Generation Figure 4(b). Reasoning Chain (represented as an and EG Tree Builder Explanation Tree for illustration) Figure 4(c). Function Word Insertion & Ordering Module, serving as the Surface Realizer. It shows how surface realization is done with pre-specified function words (circled by ellipses) and extracted slot-fillers (enclosed by diamond for operator, and rectangle for quantities).",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF2": {
"text": "(a) Facts Generated from the Body Text. (b) The associated Reasoning Chain, where \"G#\" shows the facts grouped within the same sentence. (c) Explanation texts generated by the TG for this example (labeled as G1~G4). Except those ellipses which symbolize pre-specified function words, other shapes denote extracted slot-fillers. Furthermore, Diamond symbolizes OP_node while Rectangle symbolizes Quan_node.",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF3": {
"text": "Explanation Tree for Discourse Planning, where S2 means that those facts are from the 2 nd body sentence.",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF4": {
"text": "(a). Surface Realizer -OP_SUM template Figure 6(b). Benchmark for the output of Surface Realizer",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF5": {
"text": "The template for OP_SUM (\"SUM\" inFigure 6 (a), and the explanation sentences for Sample-1)",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF6": {
"text": "Figure 7(a)",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF7": {
"text": "The template for OP_MUL (\"MUL\" in",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF8": {
"text": "Figure 8 (a)",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF9": {
"text": "The template for OP_COMMON_DIV (\"CMN_DIV\" in Figure 8 (a)) and the explanation sentences for Sample-2. Explanation Generation for a Math Word Problem Solver 41 [Sample-3] \u4e00\u8258\u8f2a\u8239 20 \u5206\u9418\u53ef\u4ee5\u884c\u99db 25 \u516c\u91cc\uff0c2.5 \u5c0f\u6642\u53ef\u4ee5\u884c\u99db\u591a\u5c11\u516c\u91cc\uff1f (A ship can travel 25 km in 20 minutes. How many kilometers can it travel for 2",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF10": {
"text": "The template for OP_UNIT_TRANS (\"U_TRAN\" in Figure 9 (a)), which performs unit conversions, and the explanation sentences for Sample-3.",
"uris": null,
"num": null,
"type_str": "figure"
}
}
}
} |