File size: 23,787 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
{
    "paper_id": "O12-1030",
    "header": {
        "generated_with": "S2ORC 1.0.0",
        "date_generated": "2023-01-19T08:03:02.365925Z"
    },
    "title": "Implementation and Comparison of Keyword Spotting for Taiwanese",
    "authors": [
        {
            "first": "Chung-Che",
            "middle": [],
            "last": "Wang",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Che-Hsuan",
            "middle": [],
            "last": "Chou",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Liang-Yu",
            "middle": [],
            "last": "Chen",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Yu-Jhe",
            "middle": [],
            "last": "Li",
            "suffix": "",
            "affiliation": {},
            "email": "liyujhe@mirlab.org"
        },
        {
            "first": "Jyh-Shing",
            "middle": [
                "Roger"
            ],
            "last": "Jang",
            "suffix": "",
            "affiliation": {},
            "email": "jang@mirlab.org"
        },
        {
            "first": "Hsun-Cheng",
            "middle": [],
            "last": "Hu",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Shih-Peng",
            "middle": [],
            "last": "Lin",
            "suffix": "",
            "affiliation": {},
            "email": "shihpeng@iii.org.tw"
        },
        {
            "first": "You-Lian",
            "middle": [],
            "last": "Huang",
            "suffix": "",
            "affiliation": {},
            "email": ""
        }
    ],
    "year": "",
    "venue": null,
    "identifiers": {},
    "abstract": "",
    "pdf_parse": {
        "paper_id": "O12-1030",
        "_pdf_hash": "",
        "abstract": [],
        "body_text": [
            {
                "text": "This paper focuses on improving in the performance of a Taiwanese keyword spotting system by integrating speech assessment and pitch contour classification. In the first part of this research, we use different methods to implement a Taiwanese keyword spotting system. In second part, we improve the system by validation using speech assessment and pitch contour classification. Two methods are adopted in the first part to implement the keyword spotting system: hidden Markov model and phone mismatching method. We then perform speech assessment and pitch contour classification to validate the candidate keywords selected by these two methods to refine the results. A threshold is used for a decision tree to make the final decision. Experimental results shows that the equal error rates (ERRs) reduce about 20% and 5% after being incorporated speech assessment validation. After being incorporated with pitch contour classification, ERRs further reduce about 1%. This concludes that the validation technique using speech assessment and pitch contour classification can improve the performance of Taiwanese keyword spotting. 3. ",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Abstract",
                "sec_num": null
            },
            {
                "text": "EQUATION",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [
                    {
                        "start": 0,
                        "end": 8,
                        "text": "EQUATION",
                        "ref_id": "EQREF",
                        "raw_str": "P ( ,",
                        "eq_num": ", , ) DP 1"
                    }
                ],
                "section": "4.",
                "sec_num": null
            },
            {
                "text": "Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing(ROCLING 2012)",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            }
        ],
        "back_matter": [],
        "bib_entries": {
            "BIBREF0": {
                "ref_id": "b0",
                "title": "Estimation of phone mismatch penalty matrices for two-stage keyword spotting",
                "authors": [
                    {
                        "first": "C",
                        "middle": [
                            "W"
                        ],
                        "last": "Han",
                        "suffix": ""
                    },
                    {
                        "first": "S",
                        "middle": [
                            "J"
                        ],
                        "last": "Kang",
                        "suffix": ""
                    },
                    {
                        "first": "N",
                        "middle": [
                            "S"
                        ],
                        "last": "Kim",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "IEICE TRANSACTIONS on Information and Systems",
                "volume": "",
                "issue": "8",
                "pages": "2331--2335",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "C. W. Han, S. J. Kang, and N. S. Kim, \"Estimation of phone mismatch penalty matrices for two-stage keyword spotting,\" IEICE TRANSACTIONS on Information and Systems Vol.E93-D No.8 pp.2331-2335",
                "links": null
            },
            "BIBREF1": {
                "ref_id": "b1",
                "title": "Keyword search using modified minimum edit distance measure",
                "authors": [
                    {
                        "first": "K",
                        "middle": [],
                        "last": "Audhkhasi",
                        "suffix": ""
                    },
                    {
                        "first": "A",
                        "middle": [],
                        "last": "Verma",
                        "suffix": ""
                    }
                ],
                "year": 2007,
                "venue": "Proc. ICASSP",
                "volume": "",
                "issue": "",
                "pages": "929--932",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "K. Audhkhasi and A. Verma, \"Keyword search using modified minimum edit distance measure,\" Proc. ICASSP, pp. 929-932,Apr. 2007.",
                "links": null
            },
            "BIBREF2": {
                "ref_id": "b2",
                "title": "Keyword Spotting based on the Analysis of Template Matching Distances",
                "authors": [
                    {
                        "first": "M",
                        "middle": [
                            "S"
                        ],
                        "last": "Barakat",
                        "suffix": ""
                    },
                    {
                        "first": "C",
                        "middle": [
                            "H"
                        ],
                        "last": "Ritz",
                        "suffix": ""
                    },
                    {
                        "first": "D",
                        "middle": [
                            "A"
                        ],
                        "last": "Stirling",
                        "suffix": ""
                    }
                ],
                "year": 2011,
                "venue": "5th International Conference on Signal Processing and Communication Systems ICSPCS",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "M. S. Barakat, C. H. Ritz, D. A. Stirling, \"Keyword Spotting based on the Analysis of Template Matching Distances,\" 5th International Conference on Signal Processing and Communication Systems ICSPCS,2011",
                "links": null
            },
            "BIBREF3": {
                "ref_id": "b3",
                "title": "Improved mandarin keyword spotting using confusion garbage model",
                "authors": [
                    {
                        "first": "S",
                        "middle": [
                            "L"
                        ],
                        "last": "Zhang",
                        "suffix": ""
                    },
                    {
                        "first": "Z",
                        "middle": [
                            "W"
                        ],
                        "last": "Shuang",
                        "suffix": ""
                    },
                    {
                        "first": "Q",
                        "middle": [],
                        "last": "Shi",
                        "suffix": ""
                    },
                    {
                        "first": "Y",
                        "middle": [],
                        "last": "Qin",
                        "suffix": ""
                    }
                ],
                "year": 2010,
                "venue": "Proc. ICPR",
                "volume": "",
                "issue": "",
                "pages": "3700--3703",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "S.L. Zhang, Z.W. Shuang, Q. Shi, and Y. Qin, \"Improved mandarin keyword spotting using confusion garbage model\", in Proc. ICPR, pp. 3700-3703, Istanbul, Turkey, 2010",
                "links": null
            },
            "BIBREF4": {
                "ref_id": "b4",
                "title": "A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition",
                "authors": [
                    {
                        "first": "L",
                        "middle": [
                            "R"
                        ],
                        "last": "Rabiner",
                        "suffix": ""
                    }
                ],
                "year": 1989,
                "venue": "Proc. Of the IEEE",
                "volume": "77",
                "issue": "",
                "pages": "257--286",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "L.R. Rabiner, \"A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition\", Proc. Of the IEEE, Vol.77, No.2, pp. 257-286, Feb, 1989.",
                "links": null
            },
            "BIBREF5": {
                "ref_id": "b5",
                "title": "Spoken Language Processing",
                "authors": [
                    {
                        "first": "X",
                        "middle": [],
                        "last": "Huang",
                        "suffix": ""
                    },
                    {
                        "first": "A",
                        "middle": [],
                        "last": "Acero",
                        "suffix": ""
                    },
                    {
                        "first": "H",
                        "middle": [
                            "W"
                        ],
                        "last": "Hon",
                        "suffix": ""
                    }
                ],
                "year": 2001,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Huang, X., Acero, A., and Hon, H.W., \"Spoken Language Processing\", New Jersey, Prentice Hall, 2001",
                "links": null
            },
            "BIBREF6": {
                "ref_id": "b6",
                "title": "Toward Constructing A Multilingual Speech Corpus for Taiwanese (Min-nan), Hakka, and Mandarin Chinese",
                "authors": [
                    {
                        "first": "R.-Y",
                        "middle": [],
                        "last": "Lyu",
                        "suffix": ""
                    },
                    {
                        "first": "M.-S",
                        "middle": [],
                        "last": "Liang",
                        "suffix": ""
                    },
                    {
                        "first": "Y.-C",
                        "middle": [],
                        "last": "Chiang",
                        "suffix": ""
                    }
                ],
                "year": 2004,
                "venue": "International Journal of Computational Linguistics & Chinese Language Processing",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "R.-Y. Lyu, M.-S. Liang, Y.-C. Chiang, Toward Constructing A Multilingual Speech Corpus for Taiwanese (Min-nan), Hakka, and Mandarin Chinese, International Journal of Computational Linguistics & Chinese Language Processing, 2004",
                "links": null
            },
            "BIBREF7": {
                "ref_id": "b7",
                "title": "Decision tree based tone modeling with corrective feedbacks for automatic Mandarin tone assessment",
                "authors": [
                    {
                        "first": "H.-C",
                        "middle": [],
                        "last": "Liao",
                        "suffix": ""
                    },
                    {
                        "first": "J.-C",
                        "middle": [],
                        "last": "Chen",
                        "suffix": ""
                    },
                    {
                        "first": "S.-C",
                        "middle": [],
                        "last": "Chang",
                        "suffix": ""
                    },
                    {
                        "first": "Y.-H",
                        "middle": [],
                        "last": "Guan",
                        "suffix": ""
                    },
                    {
                        "first": "C.-H",
                        "middle": [],
                        "last": "Lee",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "INTERSPEECH 2010",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Liao, H.-C., Chen, J.-C. , Chang, S.-C., Guan, Y.-H., Lee, C.-H., \"Decision tree based tone modeling with corrective feedbacks for automatic Mandarin tone assessment\", In INTERSPEECH 2010.",
                "links": null
            },
            "BIBREF8": {
                "ref_id": "b8",
                "title": "TRUES: Tone Recognition Using Extended Segment",
                "authors": [
                    {
                        "first": "J.-C",
                        "middle": [],
                        "last": "Chen",
                        "suffix": ""
                    },
                    {
                        "first": "J",
                        "middle": [
                            "S R"
                        ],
                        "last": "Jang",
                        "suffix": ""
                    }
                ],
                "year": 2008,
                "venue": "ACM Trans. Asian Lang. Inform. Process",
                "volume": "7",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Chen, J.-C., Jang, J.S. R., \"TRUES: Tone Recognition Using Extended Segment\", ACM Trans. Asian Lang. Inform. Process. 7, 3, Article 10, 2008.",
                "links": null
            },
            "BIBREF9": {
                "ref_id": "b9",
                "title": "Average Magnitude Difference Function Pitch Extractor",
                "authors": [
                    {
                        "first": "M",
                        "middle": [],
                        "last": "Ross",
                        "suffix": ""
                    },
                    {
                        "first": "H",
                        "middle": [],
                        "last": "Shaffer",
                        "suffix": ""
                    },
                    {
                        "first": "A",
                        "middle": [],
                        "last": "Cohen",
                        "suffix": ""
                    },
                    {
                        "first": "R",
                        "middle": [],
                        "last": "Freudberg",
                        "suffix": ""
                    },
                    {
                        "first": "H",
                        "middle": [],
                        "last": "Manley",
                        "suffix": ""
                    }
                ],
                "year": 1974,
                "venue": "IEEE Transactions on Acoustics, Speech, and Signal Processing",
                "volume": "22",
                "issue": "5",
                "pages": "353--362",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Ross, M.Shaffer, H. Cohen, A. Freudberg, R., and Manley, H., \"Average Magnitude Difference Function Pitch Extractor,\" IEEE Transactions on Acoustics, Speech, and Signal Processing, Vol. 22,No. 5,353-362, 1974",
                "links": null
            }
        },
        "ref_entries": {
            "TABREF1": {
                "text": "Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing(ROCLING 2012)",
                "html": null,
                "num": null,
                "type_str": "table",
                "content": "<table><tr><td>indicator</td><td/><td>log</td></tr><tr><td/><td/><td/><td>[17]</td></tr><tr><td>(</td><td>)</td><td/></tr><tr><td>Pr</td><td/><td/></tr><tr><td/><td/><td/><td>filler-model</td></tr><tr><td>2.</td><td/><td/></tr><tr><td/><td/><td>[2]</td></tr><tr><td/><td>18</td><td>61</td></tr><tr><td>fi_init</td><td>fi_final</td><td/></tr><tr><td>i</td><td>I D</td><td>[2]</td></tr><tr><td colspan=\"3\">Keywords: Keywords spotting, hidden Markov model, penalty matrix</td></tr><tr><td/><td/><td/><td>3C</td></tr><tr><td colspan=\"2\">3C</td><td/></tr><tr><td/><td>[1]</td><td/></tr><tr><td colspan=\"2\">Phone Mismatch Penalty Matrix</td><td colspan=\"2\">confidence measure, CM development</td></tr><tr><td/><td/><td>substitution</td><td>insertion</td></tr><tr><td>deletion</td><td/><td/></tr><tr><td/><td>[1]</td><td/></tr><tr><td>1.</td><td/><td/></tr></table>"
            },
            "TABREF2": {
                "text": "Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing(ROCLING 2012)",
                "html": null,
                "num": null,
                "type_str": "table",
                "content": "<table><tr><td/><td colspan=\"11\">Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012) Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012) Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012) Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012) Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012) Proceedings of the Twenty-Fourth Conference on Computational Linguistics and Speech Processing (ROCLING 2012)</td></tr><tr><td>1.</td><td/><td/><td>(</td><td>70</td><td colspan=\"7\">log-likelihood 97 539 692 533 2 ) \u03d2 70 HMM phone sequence</td><td>1</td><td>4 GMM (3)</td></tr><tr><td colspan=\"2\">2. FAR</td><td>\u03d2 rank</td><td colspan=\"2\">1.8%</td><td>46.5%</td><td colspan=\"2\">a b</td><td/><td>\u03d2</td><td colspan=\"2\">26.5% a b</td><td>p</td></tr><tr><td>2.</td><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/></tr><tr><td/><td/><td colspan=\"3\">34% 39.4%</td><td/><td/><td/><td/><td/><td colspan=\"2\">28.4% 34.6%</td></tr><tr><td/><td/><td/><td/><td/><td>HMM</td><td/><td colspan=\"3\">27.3% 33.7%</td><td/><td>decision</td></tr><tr><td colspan=\"2\">tree</td><td/><td/><td/><td/><td/><td/><td/><td/><td/></tr><tr><td>3.</td><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td>[11]</td></tr><tr><td>3.</td><td>7</td><td/><td>[14]</td><td/><td/><td colspan=\"2\">-p -t -k -h</td><td>1</td><td/><td>7</td><td>1</td><td>5</td><td>8</td><td>9</td><td>6</td></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td>[4]</td></tr><tr><td/><td/><td/><td/><td/><td colspan=\"2\">3.5 4 4.5</td><td>5</td><td/><td colspan=\"2\">4.5</td></tr><tr><td/><td/><td/><td/><td/><td>HMM</td><td/><td/><td/><td/><td/><td>DET</td></tr><tr><td colspan=\"7\">4. 5.6% false acceptance rate , FAR [16] HMM likelihood ratio testing 4.8% baseline duration</td><td colspan=\"5\">false rejection rate ,FRR [16] equal error rate, EER [16] ( ) HMM 20% time duration baseline</td><td>LRT pause</td></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td>1</td></tr><tr><td/><td/><td/><td/><td/><td colspan=\"2\">4</td><td/><td/><td/><td/><td>20%</td></tr><tr><td/><td/><td/><td/><td>[7]</td><td/><td/><td/><td/><td/><td/><td>70</td><td>50</td><td>development</td></tr><tr><td>4.</td><td colspan=\"3\">log-likelihood</td><td/><td colspan=\"3\">rank ratio score -8</td><td/><td/><td/></tr><tr><td colspan=\"3\">1. ForPA</td><td colspan=\"9\">rank ratio score [12][13] penalty -20 NSC 99-2221-E-007 -049 -MY3 50.32%</td><td>confidence measure</td></tr><tr><td colspan=\"5\">D (P , programming, DP (development) 1.8%</td><td colspan=\"3\">) UPDUDP[9]</td><td/><td colspan=\"3\">UPDUDP[9] FRR</td><td>FRR</td><td>FAR Dynamic</td></tr><tr><td colspan=\"10\">AMDF[10] (average magnitude difference function ) 34%</td><td/><td>FAR</td><td>FAR</td><td>DP</td></tr><tr><td>P</td><td/><td/><td/><td/><td>1.1%</td><td colspan=\"3\">log-likelihood HTK</td><td colspan=\"2\">Q 0.9%</td></tr><tr><td colspan=\"2\">(n) C 0 1</td><td/><td/><td/><td/><td/><td>n</td><td/><td>i</td><td>i</td><td>row</td><td>[8]</td><td>Gaussian mixture model, HMM</td></tr><tr><td colspan=\"3\">GMM</td><td colspan=\"3\">column</td><td/><td>[15]</td><td/><td/><td/></tr><tr><td/><td/><td/><td/><td/><td colspan=\"3\">(2) (3) HMM</td><td/><td/><td/></tr><tr><td>2.</td><td/><td/><td/><td/><td/><td/><td/><td/><td colspan=\"3\">backtracking</td></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td>(2)</td></tr><tr><td>1.</td><td/><td/><td/><td/><td colspan=\"2\">ForPA</td><td colspan=\"4\">lau2_heh7 ForPA</td><td>1</td><td>4</td></tr></table>"
            }
        }
    }
}