forked from attapol/compling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage_model.html
More file actions
77 lines (59 loc) · 2.93 KB
/
language_model.html
File metadata and controls
77 lines (59 loc) · 2.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Language Modeling</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="custom/custom.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Language Modeling</li>
</ol>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-md-10">
<h1>Language Modeling</h1>
<p>โมดูลพูดเรื่องการใช้บริบททางภาษาในการตรวจแก้ภาษาที่อาจจะบิดเบือนไปเพราะเสียงของคำฟังคล้ายกัน หรือเขียนผิดไวยากรณ์ หรือสะกดผิด
ผู้เรียนควรจะมีพื้นฐานเรื่องความน่าจะเป็น </p>
<p>Video List: </p>
<ol>
<li><a href = https://youtu.be/IWXADu09SKw> Replace with a new clip</a></li>
</ol>
</div>
</div>
<div class="row mt-4">
<div class="col-md-8">
<h2>N-Gram Language Model </h2>
<p>Technical detail ของการสร้าง Language Model เพื่อนำไปใช้ใน Applications อื่นๆ เช่น
text generator, grammar checker, spell checker, speech recognition, machine translation </p>
<p>เนื้อหาดัดแปลงมาจาก <a target="_blank" href="https://web.stanford.edu/~jurafsky/slp3/3.pdf">Chapter 3 ของหนังสือ Martin & Jurafsky</a> ซึ่งควรนำมาใช้อ้างอิง </a></p>
<p><a target="_blank" href="slides/lm.pdf">Slides จาก video</a> | <a target="_blank" href="slides/lm_jurafsky_2017.pdf">Slides จาก Jurafsky</a></p>
</div>
</div>
<footer class="page-footer font-small">
<div class="container">
<div class="row">
<div class="col-md-12 py-3">
<div class="flex-center">
<hr/>
</div>
</div>
</div>
<div class="footer-copyright text-right py-3 mb-5">© 2018-2019 Copyright: Attapol Thamrongrattanarit</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="jquery/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>