-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
92 lines (85 loc) · 4.45 KB
/
index.html
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
<html>
<head>
<meta content='text/html;charset=UTF-8' http-equiv='Content-Type'/>
<title>NLP — Natural Language Processing</title>
<style type='text/css'>
@import 'css/default.css';
@import 'css/syntax.css';
</style>
<link rel="shortcut icon" href="favicon.ico" />
<meta content='Natural Language Processing Class' name='subject'/>
<!--<link href='images/favicon.png' rel='shortcut icon'>-->
<!-- MathJax Section -->
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
</head>
<body>
<div id='wrap'>
<div id='header'>
<img height="100" alt='NLP Class' src='images/utexas.png'/>
<div class='tagline'>Natural Language Processing: Fall 2013</div>
</div>
<div id='pages'>
<ol class='toc'>
<li>NLP Class
<ol class="toc">
<li><a href='index.html'>Home</a></li>
<li><a href='syllabus.html'>Syllabus</a></li>
<li><a href='schedule.html'>Schedule</a></li>
<li><a href='notes'>Notes</a></li>
<li><a href='assignments.html'>Assignment Requirements</a></li>
<li><a href='links.html'>Links</a></li>
</ol>
</li>
<li>Useful Information
<ol class="toc">
<li><a href='scala'>Scala</a></li>
</ol>
</li>
<li>Assignments
<ol class="toc">
<li><a href='assignments/a0programming.html'>#0 - Programming</a></li>
<li><a href='assignments/a1prob.html'>#1 - Probability</a></li>
<li><a href='assignments/a2classification.html'>#2 - Classification</a></li>
<li><a href='assignments/a3ngrams.html'>#3 - N-Grams</a></li>
<li><a href='assignments/a4hmm.html'>#4 - HMMs</a></li>
<li><a href='assignments/a5sentiment.html'>#5 - Sentiment</a></li>
<li><a href='assignments/a6parsing.html'>#6 - Parsing</a></li>
</ol>
</li>
<li>External Links
<ol class="toc">
<li><a href='http://www.utcompling.com'>UTCL Main site</a></li>
<li><a href='https://courses.utexas.edu/webapps/portal/frameset.jsp?tab_tab_group_id=_11_1&url=%2Fwebapps%2Fblackboard%2Fexecute%2Flauncher%3Ftype%3DCourse%26id%3D_159651_1%26url%3D'>Blackboard</a></li>
</ol>
</li>
</ol>
</div>
<div id='content'>
<h1>Natural Language Processing</h1>
<ol class="toc"><li><a href="#overview">Overview</a></li><li><a href="#announcements">Announcements</a></li></ol>
<h2 id='overview'>Overview</h2>
<p>In the age of the Internet, there is a considerable demand for technology helping users to manage, search and access the enormous amount of information that is available. There is also a need for speech interfaces to computer systems of various types, from tutoring systems to automated customer support lines to robots. Examples of language-technological applications are the identification of the correct sense of an ambiguous word like “bass” (fish or musical instrument), automatic recognition of the language in which a document is written, machine translation, and automatic extraction of information from documents.</p>
<p>The field of computational linguistics deals with both the science behind providing such capabilities and the actual creation of applications which implement them. This course discusses the main natural language processing applications and provides an introduction to the key representations and algorithms used in computational linguistics and to the use of machine learning for NLP tasks.</p>
<p>The course will be oriented towards hands-on experience of language processing techniques. Previous programming experience is required.</p>
<h2 id='announcements'>Announcements</h2>
<ul>
<li>Aug 30, 2013 - The class room has <span style='color: red'>CHANGED</span>. We are now meeting in <strong>ENS 145</strong>.</li>
</ul>
</div>
<div id='footer'></div>
</div>
</body>
</html>