File size: 79,105 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 |
{
"paper_id": "I11-1017",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T07:31:25.955744Z"
},
"title": "Mining Revision Log of Language Learning SNS for Automated Japanese Error Correction of Second Language Learners",
"authors": [
{
"first": "Tomoya",
"middle": [],
"last": "Mizumoto",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "NAIST",
"location": {
"country": "Japan"
}
},
"email": "tomoya-m@is.nasit.jp"
},
{
"first": "Mamoru",
"middle": [],
"last": "Komachi",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "NAIST",
"location": {
"country": "Japan"
}
},
"email": "komachi@is.naist.jp"
},
{
"first": "Masaaki",
"middle": [],
"last": "Nagata",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "NTT",
"location": {
"country": "Japan"
}
},
"email": "nagata.masaaki@lab.ntt.co.jp"
},
{
"first": "Yuji",
"middle": [],
"last": "Matsumoto",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "NAIST",
"location": {
"country": "Japan"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present an attempt to extract a largescale Japanese learners' corpus from the revision log of a language learning SNS. This corpus is easy to obtain in largescale, covers a wide variety of topics and styles, and can be a great source of knowledge for both language learners and instructors. We also demonstrate that the extracted learners' corpus of Japanese as a second language can be used as training data for learners' error correction using an SMT approach. We evaluate different granularities of tokenization to alleviate the problem of word segmentation errors caused by erroneous input from language learners. Experimental results show that the character-wise model outperforms the word-wise model.",
"pdf_parse": {
"paper_id": "I11-1017",
"_pdf_hash": "",
"abstract": [
{
"text": "We present an attempt to extract a largescale Japanese learners' corpus from the revision log of a language learning SNS. This corpus is easy to obtain in largescale, covers a wide variety of topics and styles, and can be a great source of knowledge for both language learners and instructors. We also demonstrate that the extracted learners' corpus of Japanese as a second language can be used as training data for learners' error correction using an SMT approach. We evaluate different granularities of tokenization to alleviate the problem of word segmentation errors caused by erroneous input from language learners. Experimental results show that the character-wise model outperforms the word-wise model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "The number of Japanese language learners around the world has increased more than 30-fold in the past three decades. The Japan Foundation reports that more than 3.65 million people in 133 countries and regions are studying Japanese in 2009 1 . However, there are only 50,000 Japanese language teachers overseas, and thus it is in high demand to find good instructors for writers of Japanese as a Second Language (JSL).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Recently, natural language processing research has begun to pay attention to second language learning (Rozovskaya and Roth, 2011; Park and Levy, 2011; Liu et al., 2011; Oyama and Matsumoto, 2010; Xue and Hwa, 2010) . However, most previous research for second language learning deals with restricted types of learners' errors. For example, research for JSL learners' errors mainly focus on Japanese case particles (Oyama and Matsumoto, 2010; Imaeda et al., 2003; Nampo et al., 2007; Suzuki and Toutanova, 2006) , however they focus only on case particles whereas we attempt to correct all types of errors.",
"cite_spans": [
{
"start": 102,
"end": 129,
"text": "(Rozovskaya and Roth, 2011;",
"ref_id": "BIBREF12"
},
{
"start": 130,
"end": 150,
"text": "Park and Levy, 2011;",
"ref_id": "BIBREF11"
},
{
"start": 151,
"end": 168,
"text": "Liu et al., 2011;",
"ref_id": "BIBREF5"
},
{
"start": 169,
"end": 195,
"text": "Oyama and Matsumoto, 2010;",
"ref_id": "BIBREF9"
},
{
"start": 196,
"end": 214,
"text": "Xue and Hwa, 2010)",
"ref_id": "BIBREF14"
},
{
"start": 414,
"end": 441,
"text": "(Oyama and Matsumoto, 2010;",
"ref_id": "BIBREF9"
},
{
"start": 442,
"end": 462,
"text": "Imaeda et al., 2003;",
"ref_id": "BIBREF4"
},
{
"start": 463,
"end": 482,
"text": "Nampo et al., 2007;",
"ref_id": "BIBREF7"
},
{
"start": 483,
"end": 510,
"text": "Suzuki and Toutanova, 2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "However, real JSL learners' writing contains not only errors of Japanese case particles but also various other errors including spelling and collocation errors. For instance, a Japanese language learner who speaks Chinese may write:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(Why does Japanese are so difficult?) which has a grammatical error of inserting ' ' due to literal translation from Chinese. Park and Levy (2011) proposed an EM-based unsupervised approach to perform whole sentence grammar correction, but the types of errors must be predetermined to learn the parameters for their noisy channel model. It requires expert knowledge of L2 teaching, which is often hard to obtain.",
"cite_spans": [
{
"start": 135,
"end": 146,
"text": "Levy (2011)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "One promising approach for correcting unrestricted errors of JSL learners is Brockett et al. (2006) 's automated error correction method using statistical machine translation (SMT). The advantage of their method is that it does not require expert knowledge. Instead, it learns a correction model from sentence-aligned corrected learners' corpora. However, it is not easy to acquire largescale learners' corpora. In fact, Brockett et al. (2006) used regular expressions to automatically create erroneous corpora from native corpora.",
"cite_spans": [
{
"start": 77,
"end": 99,
"text": "Brockett et al. (2006)",
"ref_id": "BIBREF2"
},
{
"start": 421,
"end": 443,
"text": "Brockett et al. (2006)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "To solve the knowledge acquisition bottleneck, we propose a method of mining revision logs to create a large-scale learners' corpus. The corpus is compiled from error revision logs from a language learning social network service (SNS), which covers a wide variety of topics and styles. The main advantage of using revision logs is three-fold: (1) it benefits from the wisdom of crowds, (2) it can be obtained in large-scale, and (3) it is a great source of knowledge not only for learners but also for language teachers. In this paper, we show that the method using SMT techniques with a large-scale learners' corpus can correct JSL learners' error with reasonable accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The rest of this paper is organized as follows. Section 2 describes the JSL corpus created from revision logs of a language learning SNS. Section 3 explains an SMT-based approach to JSL error correction. In section 4, we report the experimental results of SMT-based JSL error correction using large-scale real corpus. In section 5, we conduct error analysis and discuss issues of the proposed method. Section 6 concludes this work and presents future direction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Recent growth of the web has opened the possibility of using the internet to break the barriers of space and time. Specifically, social network service (SNS) has begun to receive a lot of attention recently. There are a number of SNS sites that help language learners across the world, including smart.fm, Livemocha and Lang-8, to name a few. We will look briefly at each SNS below. First, smart.fm 2 (formerly iKnow!) is a SNSbased language learning service that helps learners practice language learning. Smart.fm provides a tailored curriculum for each user to memorize learning content through simple exercises.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Large Scale Japanese Language Learners' Corpus from Revision Logs",
"sec_num": "2"
},
{
"text": "Second, Livemocha 3 is also a language learning SNS that offers course of grammar instructions, reading comprehension exercises and practice for both writing and speaking. Users can submit a free composition on a subject and receive feedbacks from other users of the native language. However, they are not able to write about arbitrary topics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Large Scale Japanese Language Learners' Corpus from Revision Logs",
"sec_num": "2"
},
{
"text": "Third, Lang-8 is a \"Multi-lingual language learning and language exchange Social Networking Service\" 4 , which has over 200,000 registered members at the moment. As soon as the learners write a passage, mostly a part of a diary, in a language they are learning, native speakers of the language correct it for them. The learners in turn are encouraged to correct other members' composition errors according to their first language (L1). Hence, the SNS is called \"language exchange\". It supports 77 languages, facilitating multilingual communication.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Large Scale Japanese Language Learners' Corpus from Revision Logs",
"sec_num": "2"
},
{
"text": "One of the most famous learners' corpus is Teramura Error Data 5 . The corpus was mainly collected in 1986 from Japanse compositions written by foreign students, mostly from Asian countries. The corpus consists of several styles including free composition, cloze (gap filling) test, and pattern composition. Unlike this data, JSL learners in Lang-8 encompass the whole world. Also, Lang-8 offers a wide variety of free compositions of the learner's choice, and the size of the data is orders of magnitude (448MB without all the tags) larger than Teramura's data (420KB, 4,601 sentences written by 339 students). Also, although Teramura Error Data is annotated with error types, the correct words or strings are not often provided, which makes it difficult to use it for automatic correction of learners' errors.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Japanese Language Learners' Corpora",
"sec_num": "2.1"
},
{
"text": "Ohso 6 created a database of Japanese compositions by JSL learners. It is annotated with error types with correct forms to allow error analysis. However, similar to Teramura Error Data, the corpus does not cover many topics because it was collected at only four institutions. In addition, it is limited in size (756 files, average file size is 2KB).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Japanese Language Learners' Corpora",
"sec_num": "2.1"
},
{
"text": "The corpus most related to ours is the JSL learners parallel database of Japanese writings and their translation of learners' L1 7 created by National Institute for Japanese Language and Linguistics. It collects 1,500 JSL learners' writings and their self-translations. There are around 250 writings corrected with error types by several Japanese language teachers. The advantage of this corpus is that some of the texts are annotated by professional language teachers and can be used as a source of error correction. However, again, the size of this corpus is limited since it is hard to obtain annotations from language teachers. Our approach differs from them in that we employ the wisdom of crowds of native speakers, not necessarily language teachers, to compile a large-scale learners' corpus.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Japanese Language Learners' Corpora",
"sec_num": "2.1"
},
{
"text": "We created a large-scale language learners' corpus from error revision log of Lang-8. Figure 1 shows that approximately 75,000 users are learning Japanese 8 . Table 1 shows the top seven languages in the corpus. There are 925,588 sentences of JSL learners 9 . Out of 925,588 sentences, 763,971 (93.4%) sentences are corrected by human annotators. A sentence written by JSL learners might have two or more revision sentences in Lang-8 by different voluntary reviewers 10 . Therefore, the total number of corrected sentences amounts to 1,288,934. In other words, one sentence gets corrected approximately 1.69 times on average. There are several distinguishing features of the data obtained from Lang-8. First, since Lang-8 is a language learning SNS, we can obtain pairs of learner's sentence and corrected sentence. Using this data, it is possible to collect the learner's errors. We will describe how to build a learners' corpus from revision logs later in this section.",
"cite_spans": [],
"ref_spans": [
{
"start": 86,
"end": 94,
"text": "Figure 1",
"ref_id": "FIGREF0"
},
{
"start": 159,
"end": 166,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Features of Lang-8 Data",
"sec_num": "2.2"
},
{
"text": "Second, Lang-8 data may have more than one correction for the same sentence. We could exploit this feature to acquire paraphrases in a similar way to (Barzilay and McKeown, 2001) . Table 2 shows an example of multiple correction. Two annotators correct the same learner's sentence. In this example, one can infer that \" (in one's own expressions)\" and \" (in one's own way)\" are paraphrases of each other.",
"cite_spans": [
{
"start": 150,
"end": 178,
"text": "(Barzilay and McKeown, 2001)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [
{
"start": 181,
"end": 189,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Features of Lang-8 Data",
"sec_num": "2.2"
},
{
"text": "Third, we could obtain multi-lingual parallel sentences. Figure 2 shows examples of parallel Figure 2 : Parallel sentence in Lang-8 sentences in Lang-8. In this example, the JSL learner writes two Japanese sentences and their translation for each sentence to tell what he or she wants to say. Although the sentences written in the learning language may contain errors and mistakes, we can align the English translation to the corrected Japanese sentence. The parallel corpus created from the revision log of SNS would be a remarkable source of colloquial expressions ideal for translating consumer generated media such as blogs and SNS.",
"cite_spans": [],
"ref_spans": [
{
"start": 57,
"end": 65,
"text": "Figure 2",
"ref_id": null
},
{
"start": 93,
"end": 101,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Features of Lang-8 Data",
"sec_num": "2.2"
},
{
"text": "Fourth, annotators of Lang-8 sometimes add inline comments to the corrected sentences. It is often written in parentheses to indicate that the string is a comment, but not always. Depending on the first language of the language learner, annotators put comments in either the learning language or the learner's L1. This can be a great source of extracting useful information for language learning, since the comment itself explains pitfalls that the language learners often come across.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features of Lang-8 Data",
"sec_num": "2.2"
},
{
"text": "All the error revisions are made through a webbased editing interface that allows annotators to delete, insert or change any character sequence of the learner's text by any sequence. Table 3 illustrates an example of the HTML generated from Lang-8's revision editor. The tag <span class=\"sline\"> shows that the characters within the tags should be removed. The color tags <span class=\"red\"> and <span class=\"f_blue\"> are used somewhat arbitrarily by annotators. In general, they indicate correct strings. In the example, the annotator used delete line and red color to point out and correct the first error, and blue color to indicate inserted characters. From this observation, we apply simple Sentence corrected by an annotator2 (Each of three expresses their feelings in their own way.) First, we remove all the <span class=\"sline\"> tags and characters within them. Then, we discard other tags, retaining the characters surrounded by the tags. After this rule, we obtain the corrected sentence shown in the bottom row in Table 4 .",
"cite_spans": [],
"ref_spans": [
{
"start": 183,
"end": 190,
"text": "Table 3",
"ref_id": "TABREF2"
},
{
"start": 1024,
"end": 1031,
"text": "Table 4",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Extracting corrected sentence from HTML",
"sec_num": "2.3"
},
{
"text": "In an actual correction, it is expected that annotators do not completely rewrite the original sentence and most character strings remain the same as the original sentence. Thus, we investigated the quantitative distribution of Lang-8 data by breaking down the sentences according to the edit distance between the original and corrected sentences (number of deletion / number of insertion of characters in revision log). Figures 3 and 4 summarize the numbers of deleted and inserted characters. These figures reveal that both distributions of deletion and insertion are comparable. On the other hand, they differ in the absolute frequency of deletion and insertion. For example, the number of cases with no deletion is considerably more than the number with no insertion. Also, the frequency of sentences Figure 4 : Summary of number of insertion with more than nine insertions is higher than that for deletions. This reflects the fact that there are many sentences with comments (insertions) and that people tend not to remove too many characters to keep the information of the original sentence written by the learner.",
"cite_spans": [],
"ref_spans": [
{
"start": 421,
"end": 436,
"text": "Figures 3 and 4",
"ref_id": "FIGREF1"
},
{
"start": 805,
"end": 813,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Data Statistic and Filtering by Edit Distance",
"sec_num": "2.4"
},
{
"text": "From observations of the created corpus, a correction can be divided into two types: (1) a correction by insertion, deletion, or substitution of strings, (2) a correction with a comment. Table 4 shows examples of correction from Lang-8. The first example is a sentence written by JSL learners containing an error, and is corrected by inserting a character. In the second example the learner's sentence is correct; in addition the annotator writes a comment 11 . Besides, there exist \"corrected\" sentences to which only the word \"GOOD\" is appended at the end. In this case, original sentence is not modified at all by the annotator. The inserted comment merely informs the learner that there is no mistake in the learner's writing.",
"cite_spans": [],
"ref_spans": [
{
"start": 187,
"end": 195,
"text": "Table 4",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Data Statistic and Filtering by Edit Distance",
"sec_num": "2.4"
},
{
"text": "To handle these comments, we conduct the following three pre-processing steps: (1) if the corrected sentence contains only \"GOOD\" or \"OK\", we do not include it in the corpus, (2) if edit dis- Corrected sentence with tags <span class=\"sline\"> </span><span class=\"red\"> </span> <span class=\"f_blue\"> </span> Seen on the browser Corrected sentence (I did not participate but watched last year.) Sentence corrected by an annotator (with comment) (I went to a public bath. It is better to say when you went.) tance between the learner's sentence and corrected sentence is 5, we simply drop the sentence for the corpus, and (3) if the corrected sentence ends with \"GOOD\" or \"OK\", we remove it and retain the sentence pair. As a result, we obtained a corpus of 849,894 corrected and aligned sentence pairs by JSL learners.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Data Statistic and Filtering by Edit Distance",
"sec_num": "2.4"
},
{
"text": "Another notable issue is that annotators may not correct all the errors in a sentence. Table 5 shows an example of JSL learner's sentence for confusing case markers of \" \" (NOM) and \" \" (TOP). In this example, \" \" and \" \" should be corrected to \" \" and \" \", respectively. However, the annotator left the second case markers \" \" unchanged. Because the number of these cases seems low, we regard it as safe to ignore this issue for creating the corpus.",
"cite_spans": [],
"ref_spans": [
{
"start": 87,
"end": 94,
"text": "Table 5",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Data Statistic and Filtering by Edit Distance",
"sec_num": "2.4"
},
{
"text": "In this study, we attempt to solve the problem of JSL learners' error correction using the SMT technique. The well-known SMT formulation using the noisy channel model (Brown et al., 1993) is: e = arg max e P(e| f ) = arg max e P(e)P( f |e) (1)",
"cite_spans": [
{
"start": 167,
"end": 187,
"text": "(Brown et al., 1993)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "where e represents target sentences and f represents source sentences. P(e) is the probability of the language model (LM) and P( f |e) is the probability of the translation model (TM). TM is learned from sentence-aligned parallel corpus while LM is learned from target language corpus.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "To adapt SMT to error correction, f can be regarded as the sentences written by Japanese learners, whereas e represents the manually-corrected Japanese sentences. TM can be learned from the sentence-aligned learners' corpus. LM can be learned from a monolingual corpus of the language to be learned. Once we obtain a manuallycorrected corpus of language learners, it is possible to translate erroneous sentences into correct sentences using SMT.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "The use of SMT for spelling and grammar correction has the following three advantages. (1) It does not require expert knowledge. (2) It is straightforward to apply SMT tools to this task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "(3) Error correction using SMT can benefit from the improvement of SMT method.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "Related work on error correction using phrasebased SMT includes research on English and Japanese (Brockett et al., 2006; Suzuki and Toutanova, 2006) . Brockett et al. (2006) proposed to correct mass noun errors using SMT and used 45,000 sentences as training sets randomly extracted from automatically created 346,000 sentences. Our work differs from them in that we (1) do not restrict ourselves to a specific error type such as mass noun; and (2) exploit a large-scale real world data set. Suzuki and Toutanova (2006) proposed a machine learning-based method to pre- (As for me, these four were sold when I was a kid.)",
"cite_spans": [
{
"start": 97,
"end": 120,
"text": "(Brockett et al., 2006;",
"ref_id": "BIBREF2"
},
{
"start": 121,
"end": 148,
"text": "Suzuki and Toutanova, 2006)",
"ref_id": "BIBREF13"
},
{
"start": 151,
"end": 173,
"text": "Brockett et al. (2006)",
"ref_id": "BIBREF2"
},
{
"start": 492,
"end": 519,
"text": "Suzuki and Toutanova (2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "Sentence corrected by an annotator 4",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "(As for these four, I was sold when I was a kid.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Error Correction Using SMT",
"sec_num": "3"
},
{
"text": "(As for these four, they were sold when I was a kid.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Corrt sentence 4",
"sec_num": null
},
{
"text": "dict Japanese case particles using a monolingual corpus in the context of SMT.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Corrt sentence 4",
"sec_num": null
},
{
"text": "When translating a sentence from Japanese to another language with SMT, one usually performs word segmentation as a pre-processing step. However, JSL learners' sentences contain a lot of errors and hiragana (phonetic characters), which are hard to tokenize by traditional morphological analyzer trained on newswire text. Suppose we want to tokenize into words the following real sentence written by a JSL learner:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "The correct counterpart would be:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "(But I am not good at it.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "The corrected sentence has \" \" and \" \" inserted 12 . These sentences written by a learner and corrected by a native speaker are tokenized as follows by MeCab 13 , which is one of the most popular Japanese Morphological Analyzer:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "( but (fragment) (garbled word) ) ( but good at be not )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "These examples illustrate the difficulty of correcting JSL learners' sentence using word-wise SMT.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "To alleviate this problem, we propose to build a character-wise segmented corpus with phrasebased SMT. Character-wise model is not affected by word segmentation errors, thus it is expected to be more robust for the task of correcting JSL errors. For the above-mentioned two example sentences, we split sentences into characters rather than words:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "This enables the phrase-based SMT to learn the alignment between \" \" and \" \", resulting in a more robust model to correct JSL errors than word-wise model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Statistical Error Correction with Different Granularity of Tokenization",
"sec_num": "3.1"
},
{
"text": "Correction with SMT",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments on JSL Learner's Error",
"sec_num": "4"
},
{
"text": "We carried out an experiment to see (1) the effect of granularity of tokenization as described in Section 3.1;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments on JSL Learner's Error",
"sec_num": "4"
},
{
"text": "(2) the effect of corpus size;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments on JSL Learner's Error",
"sec_num": "4"
},
{
"text": "(3) the difference of L1 model. We used Moses 2.1 14 as a decoder and GIZA++ 1.0.5 15 as an alignment tool. We used Japanese morphological analyzer MeCab 0.97 with UniDic 1.3.12 16 for word segmentation. We created a word-wise model as baseline. Hereafter, we refer to this as W and also constructed model with entries from UniDic for better alignment, denoted as W+Dic. We used word trigram as LM for W and W+Dic. We built two character-wise models: character 3-gram and 5-gram represented as C3 and C5, respectively. We also conducted minimum error rate training (MERT) (Och, 2003) in all experiments 17 .",
"cite_spans": [
{
"start": 572,
"end": 583,
"text": "(Och, 2003)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments on JSL Learner's Error",
"sec_num": "4"
},
{
"text": "All the data was created from 849,894 Japanese sentences extracted from revision logs of Lang-8 crawled in December 2010. To see the difference of errors stemming from L1, we carried out an experiment with two L1s: English and Mandarin. ALL extracts training data from the entire corpus for the translation model. There are 320,655 Japanese sentences whose L1 is English and 186,807 Japanese sentences whose L1 is Mandarin. For each L1 JSL corpus, we split the corpus into two parts: 500 sentences for testing and development, and the rest for training.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Data",
"sec_num": "4.1"
},
{
"text": "We shuffled the training data to prepare the corpus for learning LM and TM. We manually reannotated 500 sentences to make gold-standard data and used 200 sentences for testing, and 300 sentences for development.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Data",
"sec_num": "4.1"
},
{
"text": "As evaluation metrics, we use automatic evaluation criteria. To be precise, we used recall (R) and precision (P) based on longest common subsequence (LCS) (Mori et al., 1999; Aho, 1990 ) and character-based BLEU (Papineni et al., 2002) .",
"cite_spans": [
{
"start": 155,
"end": 174,
"text": "(Mori et al., 1999;",
"ref_id": "BIBREF6"
},
{
"start": 175,
"end": 184,
"text": "Aho, 1990",
"ref_id": "BIBREF0"
},
{
"start": 212,
"end": 235,
"text": "(Papineni et al., 2002)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "Park and Levy (2011) adopted character-based BLEU for automatic assessment of ESL errors. We followed their use of BLEU in the error correction task of JSL learners. Since we perform minimum error rate training using BLEU we can directly compare each model's performance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "Recall and precision based on LCS are defined as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "Recall = N LCS N SY ST EM , Precision = N LCS N CORRECT",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "where N LCS , N SY ST EM , and N CORRECT denote the number of character containing longest common subsequences of system results and corrected answers, the number of character containing system results, and the number of character containing corrected answer, respectively. Also, F-measure is the harmonic average between R and P. To illustrate recall and precision based on LCS, let us consider the following example:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "CORRECT:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "(I am a student) SYSTEM: 18 (I ring student) LCS consists of three characters \" \", and N LCS = 3. Number of characters in the corrected sentence is six and that in the system is four, so N CORRECT = 6 and N SY ST EM = 4. Thus, Recall = 3/4 and Precision = 3/6. Table 6 illustrates the performance with different 18 The pronunciation of \" \" is the same as \" \". Effects of corpus size We varied the size of TM while fixing the size of LM to 1M sentences to see the effect of corpus size on the performance. Figure 5 shows the performance (BLEU) with different TM size (Training Corpus: L1 = ALL; Test Corpus: L1 = English). The larger the size of the TM, the higher the BLEU. This confirms that the large scale JSL learner's corpus extracted from Lang-8 is a great source of learning learners' errors. Although TM trained on 0.85M sentences exhibits lower performance than TM trained on 0.3M sentences, the difference is not statistically significant. Table 7 shows result for each L1 trained translation model 19 . Basically, performance was better when TM was trained with the same L1 as the test set. In the case where L1 of test data is English, the model trained from ALL is comparable to L1 English. This is because the model trained from ALL includes many sentence written by learners whose L1 is English.",
"cite_spans": [
{
"start": 312,
"end": 314,
"text": "18",
"ref_id": null
}
],
"ref_spans": [
{
"start": 261,
"end": 268,
"text": "Table 6",
"ref_id": "TABREF5"
},
{
"start": 505,
"end": 513,
"text": "Figure 5",
"ref_id": "FIGREF2"
},
{
"start": 950,
"end": 957,
"text": "Table 7",
"ref_id": "TABREF6"
}
],
"eq_spans": [],
"section": "Evaluation Metrics",
"sec_num": "4.2"
},
{
"text": "As we discussed in Section 2, the extracted corpus still contains comments in the corrected sentences. However, it does not greatly affect the performance of the JSL learner's error correction, demonstrating that we were able to build a large-scale JSL learners' corpus from revision logs. Moreover, we have checked all the output of our SMT-based error correction system, but none of the errors of the system derive from the annotators' comments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Here are some examples illustrating the difference of the scale of the training corpus.. We compared translation models TM trained on 0.1M sentences and 0.3M sentences in Figure 5 . Note that the model trained on 0.1M sentences gave the worst result, wheares model trained on 0.3M sentences achieved the best. All the models were trained on 1M sentence for LM. Both models corrected the examples below:",
"cite_spans": [],
"ref_spans": [
{
"start": 171,
"end": 179,
"text": "Figure 5",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Original: On the other hand, the model trained on 0.3M sentences corrected the following example:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Original:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "(the learner made an error in conjugation form.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Correct:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "(Becoming a student, I can go to school.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "(I can go to school to be student) 0.3M:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "0.1M:",
"sec_num": null
},
{
"text": "(Becoming a student, I go to a school) This example also illustrates the fact that there remains uncorrected errors (missing \"ni\" case marker after \" \" student) as we discussed in Section 2.4.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "0.1M:",
"sec_num": null
},
{
"text": "Another remaining issue is evaluation metric. We have used character-based BLEU, recall and precision based on the longest common subsequence. These methods have the advantage of allowing automatic system evaluation, but they do not reflect the importance of the errors that language learners make. There is still much room for improvement in the evaluation metric for error correction of language learners.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "0.1M:",
"sec_num": null
},
{
"text": "We proposed to extract a large-scale learners' corpus from the revision log of a language learning SNS. This corpus is easy to obtain in a large-scale, covers a wide variety of topics and styles, and can be a great source of knowledge for both language learners and instructors. We adopted phrase-based SMT approaches to alleviate the problem of erroneous input from language learners. Experimental results show that the character-wise model outperforms the word-wise model. We plan to apply factored language and translation models incorporating the POS information of the words on the target side, while learners' input is processed by a character-wise model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "http://www.jpf.go.jp/e/japanese/ survey/result/index.html",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://smart.fm/ 3 http://www.livemocha.com/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://lang-8.com/ 5 http://www.lang.nagoya-u.ac.jp/ tonoike/teramura.html 6 https://kaken.nii.ac.jp/ja/p/ 08558020/1998/6/en 7 http://jpforlife.jp/taiyakudb.html",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We counted learning language in user profile. Some learners register two or more learning languages.9 We counted learning language written for each journal because learners may write in different languages.10 The correction of a new review might be affected by the previous corrections by others.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Some annotator erase a learner's original sentence and rewrite it to \"OK\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "It is hard for JSL learners of certain L1 to distinguish Japanese short and long vowels.13 http://mecab.sourceforge.net/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://www.statmt.org/moses/ 15 http://www-i6.informatik.rwth-aachen. de/Colleagues/och/software/GIZA++.html 16 http://www.tokuteicorpus.jp/dist/ 17 We performed minimum error rate training to maximize BLEU (5-gram).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Note that LM was trained from the whole training corpus. We did not change L1 for LM.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We would like to thank Hiromi Oyama, Seiji Kasahara and Joseph Irwin for their useful comments on this study. Special thanks to Yangyang Xi for maintaining Lang-8.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Algorithms for Finding Patterns in Strings",
"authors": [
{
"first": "V",
"middle": [],
"last": "Alfred",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Aho",
"suffix": ""
}
],
"year": 1990,
"venue": "A: Algorithms and Complexity",
"volume": "",
"issue": "",
"pages": "255--300",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alfred V. Aho. 1990. Algorithms for Finding Pat- terns in Strings. In J. van Leeuwen, editor, Hand- book of Theoretical Computer Science: Volume A: Algorithms and Complexity, pages 255-300. Else- vier, Amsterdam.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Extracting Paraphrases from a Parallel Corpus",
"authors": [
{
"first": "Regina",
"middle": [],
"last": "Barzilay",
"suffix": ""
},
{
"first": "Kathleen",
"middle": [
"R"
],
"last": "Mckeown",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "50--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Regina Barzilay and Kathleen R. McKeown. 2001. Extracting Paraphrases from a Parallel Corpus. In Proceedings of ACL, pages 50-57.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Correcting ESL Errors Using Phrasal SMT Techniques",
"authors": [
{
"first": "Chris",
"middle": [],
"last": "Brockett",
"suffix": ""
},
{
"first": "William",
"middle": [
"B"
],
"last": "Dolan",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Gamon",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of COLING-ACL",
"volume": "",
"issue": "",
"pages": "249--256",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chris Brockett, William B. Dolan, and Michael Ga- mon. 2006. Correcting ESL Errors Using Phrasal SMT Techniques. In Proceedings of COLING-ACL, pages 249-256.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The Mathematics of Statistical Machine Translation: Parameter Estimation. Computational Linguistics",
"authors": [
{
"first": "F",
"middle": [],
"last": "Peter",
"suffix": ""
},
{
"first": "Stephen",
"middle": [
"A Della"
],
"last": "Brown",
"suffix": ""
},
{
"first": "Vincent",
"middle": [
"J"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "Robert",
"middle": [
"L"
],
"last": "Della Pietra",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mercer",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "19",
"issue": "",
"pages": "266--311",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Peter F. Brown, Stephen A. Della Pietra, Vin- cent J. Della Pietra, and Robert L. Mercer. 1993. The Mathematics of Statistical Machine Translation: Parameter Estimation. Computational Linguistics, 19(2):266-311.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Error Detection and Correction of Case particles in Japanese Learner's Composition (in japanese)",
"authors": [
{
"first": "Koji",
"middle": [],
"last": "Imaeda",
"suffix": ""
},
{
"first": "Atsuo",
"middle": [],
"last": "Kawai",
"suffix": ""
},
{
"first": "Yuji",
"middle": [],
"last": "Ishikawa",
"suffix": ""
},
{
"first": "Ryo",
"middle": [],
"last": "Nagata",
"suffix": ""
},
{
"first": "Fumito",
"middle": [],
"last": "Masui",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Information Processing Society of Japan SIG",
"volume": "",
"issue": "",
"pages": "39--46",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Koji Imaeda, Atsuo Kawai, Yuji Ishikawa, Ryo Nagata, and Fumito Masui. 2003. Error Detection and Cor- rection of Case particles in Japanese Learner's Com- position (in japanese). In Proceedings of the Infor- mation Processing Society of Japan SIG, pages 39- 46.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Correcting Verb Selection Errors for ESL with the Perceptron",
"authors": [
{
"first": "Xiaohua",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Bo",
"middle": [],
"last": "Han",
"suffix": ""
},
{
"first": "Min",
"middle": [],
"last": "Zhou",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the 12th international conference on Computational linguistics and intelligent text processing -Volume Part II, CICLing'11",
"volume": "",
"issue": "",
"pages": "411--423",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xiaohua Liu, Bo Han, and Min Zhou. 2011. Correct- ing Verb Selection Errors for ESL with the Percep- tron. In Proceedings of the 12th international con- ference on Computational linguistics and intelligent text processing -Volume Part II, CICLing'11, pages 411-423, Berlin, Heidelberg. Springer-Verlag.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Kana-Kanji Conversion by a Stochastic Model (in japanese)",
"authors": [
{
"first": "Shinsuke",
"middle": [],
"last": "Mori",
"suffix": ""
},
{
"first": "Masatoshi",
"middle": [],
"last": "Tsuchiya",
"suffix": ""
},
{
"first": "Osamu",
"middle": [],
"last": "Yamako",
"suffix": ""
},
{
"first": "Makoto",
"middle": [],
"last": "Nagao",
"suffix": ""
}
],
"year": 1999,
"venue": "Transaction of Information Processing Society of Japan",
"volume": "40",
"issue": "7",
"pages": "2946--2953",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shinsuke Mori, Masatoshi Tsuchiya, Osamu Yamako, and Makoto Nagao. 1999. Kana-Kanji Conver- sion by a Stochastic Model (in japanese). Trans- action of Information Processing Society of Japan, 40(7):2946-2953.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Automatic Error Detection and Correction of Japanese Particles Using Features within",
"authors": [
{
"first": "Ryota",
"middle": [],
"last": "Nampo",
"suffix": ""
},
{
"first": "Hokuto",
"middle": [],
"last": "Ototake",
"suffix": ""
},
{
"first": "Kenji",
"middle": [],
"last": "Araki",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the Information Processing Society of Japan SIG",
"volume": "",
"issue": "",
"pages": "107--112",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryota Nampo, Hokuto Ototake, and Kenji Araki. 2007. Automatic Error Detection and Correction of Japanese Particles Using Features within Bunsetsu (in japanese). In Proceedings of the Information Processing Society of Japan SIG, pages 107-112.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Minimum Error Rate Training in Statistical Machine Translation",
"authors": [
{
"first": "Franz Josef",
"middle": [],
"last": "Och",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "160--167",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Franz Josef Och. 2003. Minimum Error Rate Training in Statistical Machine Translation. In Proceedings of ACL, pages 160-167.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Automatic Error Detection Method for Japanese Case Particles in Japanese Language Learners",
"authors": [
{
"first": "Hiromi",
"middle": [],
"last": "Oyama",
"suffix": ""
},
{
"first": "Yuji",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2010,
"venue": "Corpus, ICT, and Language Education",
"volume": "",
"issue": "",
"pages": "235--245",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hiromi Oyama and Yuji Matsumoto. 2010. Automatic Error Detection Method for Japanese Case Particles in Japanese Language Learners. In Corpus, ICT, and Language Education, pages 235-245.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "BLEU: A Method for Automatic Evaluation of Machine Translation",
"authors": [
{
"first": "Kishore",
"middle": [],
"last": "Papineni",
"suffix": ""
},
{
"first": "Salim",
"middle": [],
"last": "Roukos",
"suffix": ""
},
{
"first": "Todd",
"middle": [],
"last": "Ward",
"suffix": ""
},
{
"first": "Wei-Jing",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "311--318",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kishore Papineni, Salim Roukos, Todd Ward, and Wei- Jing Zhu. 2002. BLEU: A Method for Automatic Evaluation of Machine Translation. In Proceedings of ACL, pages 311-318.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Automated Whole Sentence Grammar Correction Using a Noisy Channel Model",
"authors": [
{
"first": "Y",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "Albert",
"middle": [],
"last": "Park",
"suffix": ""
},
{
"first": "Roger",
"middle": [],
"last": "Levy",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "934--944",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Albert Park and Roger Levy. 2011. Automated Whole Sentence Grammar Correction Using a Noisy Channel Model. In Proceedings of ACL, pages 934- 944.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Algorithm Selection and Model Adaptation for ESL Correction Tasks",
"authors": [
{
"first": "Alla",
"middle": [],
"last": "Rozovskaya",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Roth",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "924--933",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alla Rozovskaya and Dan Roth. 2011. Algorithm Se- lection and Model Adaptation for ESL Correction Tasks. In Proceedings of ACL, pages 924-933.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Learning to Predict Case Markers in Japanese",
"authors": [
{
"first": "Hisami",
"middle": [],
"last": "Suzuki",
"suffix": ""
},
{
"first": "Kristina",
"middle": [],
"last": "Toutanova",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "1049--1056",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hisami Suzuki and Kristina Toutanova. 2006. Learn- ing to Predict Case Markers in Japanese. In Pro- ceedings of ACL, pages 1049-1056.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Syntax-Driven Machine Translation as a Model of ESL Revision",
"authors": [
{
"first": "Huichao",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "Rebecca",
"middle": [],
"last": "Hwa",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of COLING",
"volume": "",
"issue": "",
"pages": "1373--1381",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huichao Xue and Rebecca Hwa. 2010. Syntax-Driven Machine Translation as a Model of ESL Revision. In Proceedings of COLING, pages 1373-1381.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "Number of users for each learning language in Lang-8",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF1": {
"text": "Summary of number of deletion heuristics to extract corrected sentences from Lang-8.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF2": {
"text": "Comparison of the performance (BLEU) of error correction for different size of TM (fixing the size of LM to 1M sentence)",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF3": {
"text": "of them corrected a case marker error frequently found in JSL learners' writing as in:",
"type_str": "figure",
"uris": null,
"num": null
},
"TABREF0": {
"content": "<table><tr><td>Language Number of sentences</td><td>English 1,069,549</td><td>Japanese Mandarin Korean Spanish French German 925,588 136,203 93,955 51,829 58,918 37,886</td></tr></table>",
"type_str": "table",
"html": null,
"num": null,
"text": "Number of sentences for each language in Lang-8"
},
"TABREF1": {
"content": "<table/>",
"type_str": "table",
"html": null,
"num": null,
"text": "An illustraive example of multiple correction Sentence written by a JSL learner Sentence corrected by an annotator1 (Each of three expresses their feelings in their own expressions.)"
},
"TABREF2": {
"content": "<table/>",
"type_str": "table",
"html": null,
"num": null,
"text": "Extracting corrected sentence from HTML Sentence written by a JSL learner (I was not participating last year, just watching.)"
},
"TABREF3": {
"content": "<table><tr><td colspan=\"2\">: Examples of correction in Lang-8</td></tr><tr><td>Sentence written by a JSL learner</td><td>(Video games Yamashita.)</td></tr><tr><td>Sentence corrected by an annotator</td><td>(I played video games.)</td></tr><tr><td>Sentence written by a JSL learner</td><td>(I went to a public bath.)</td></tr></table>",
"type_str": "table",
"html": null,
"num": null,
"text": ""
},
"TABREF4": {
"content": "<table/>",
"type_str": "table",
"html": null,
"num": null,
"text": "Problem of correction in Lang-8 Sentence written by a JSL learner 4"
},
"TABREF5": {
"content": "<table><tr><td>W</td><td>W+Dic</td><td>C3</td><td>C5</td></tr><tr><td>R 0.9043 P 0.9175 F 0.9109 B 0.8072</td><td colspan=\"3\">0.9083 0.9089 0.9083 0.9210 0.9234 0.9243 0.9146 0.9161 0.9162 0.8101 0.8163 0.8181</td></tr><tr><td colspan=\"4\">methods (Training Corpus: L1 = ALL; Test Cor-</td></tr><tr><td colspan=\"4\">pus: L1 = English; TM: 0.3M sentences; LM:</td></tr><tr><td colspan=\"4\">1M sentence). The character-wise models outper-</td></tr><tr><td colspan=\"4\">form the word-wise model in both recall and preci-</td></tr><tr><td colspan=\"4\">sion. C5 achieved the best precision, F and BLEU,</td></tr><tr><td colspan=\"3\">while C3 obtained the best recall.</td><td/></tr></table>",
"type_str": "table",
"html": null,
"num": null,
"text": "Comparison of the performance (recall, precision, F, BLEU) of error correction for each system with different granularity of tokenization (TM: 0.3M sentences, LM: 1M sentence)"
},
"TABREF6": {
"content": "<table><tr><td>L1 of test data English Mandarin</td></tr></table>",
"type_str": "table",
"html": null,
"num": null,
"text": "Comparison of the performance (recall, precision, F, BLEU) of error correction trained on different first language (L1). (TM: 0.18M sentences, LM: 1M sentences)"
}
}
}
} |