-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
326 lines (316 loc) · 17.8 KB
/
resources.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Practical Natural Language Processing</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-88377259-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-88377259-2');
</script>
<meta property="og:type" content="website" />
<meta property="og:title" content="Practical Natural Language Processing - O'Reilly Media" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="https://cdn.oreillystatic.com/oreilly/images/oreilly-social-icon-120.png" />
<meta property="og:image" content="https://cdn.oreillystatic.com/oreilly/images/oreilly-social-icon-200.png" />
<link rel="icon" href="https://www.oreilly.com/favicon.ico"/>
<meta name="description" content="Practical Natural Language Processing by O'Reilly Media" />
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!--Slider-->
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,700;1,300;1,700&display=swap" rel="stylesheet">
<!-- css -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Loader -->
<div id="preloader">
<div id="status">
<div class="spinner">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
</div>
</div>
<!--Navbar Start-->
<nav class="navbar navbar-expand-lg fixed-top navbar-custom sticky sticky-dark">
<div class="container">
<!-- LOGO -->
<a class="navbar-brand logo" href="index.html">
<img src="images/logo.png" alt="" class="" height="31">
</a>
<button class="navbar-toggler p-0" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto navbar-center" id="mySidenav">
<li class="nav-item active">
<a href="index.html#home" class="nav-link">Home</a>
</li>
<!-- <li class="nav-item">
<a href="index.html#about-book" class="nav-link">About the book</a>
</li> -->
<li class="nav-item">
<a href="index.html#testimonials" class="nav-link">Testimonials</a>
</li>
<li class="nav-item">
<a href="resources.html" class="nav-link">Instructor Resources</a>
</li>
<li class="nav-item">
<a href="#blog" class="nav-link">Blog (coming soon)</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Start -->
<section class="hero-1-bg position-relative bg-dark d-flex align-items-center" id="home">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7">
<div class="hero-title pr-lg-5">
<h1 class="hero-1-title mb-4 text-light">Practical Natural
<span class="text-light ">Language Processing</span>
</h1>
<p class=" text-light " >Sowmya Vajjala, Bodhisattwa Majumder, Anuj Gupta, Harshit Surana</p>
<hr class="hr-light">
<p class="text-light mb-2 ">Endorsed by <span class="font-weight-medium" >Zachary Lipton, Sebastian Ruder & Marc Najork </span></p>
<p class="text-light mb-4 pb-2 ">Foreword by <span class="font-weight-medium" > Julian McAuley</span></p>
<a href="#testimonials" class="btn btn-warning">Read the testimonials</a>
</div>
</div>
<div class="col-lg-5">
<div class="mt-5 mt-lg-0">
<a href="#"><img src="images/book.png" class="img-responsive" style=" max-width: 400px;margin: 0 auto;display: block;margin-bottom: 3%;"></a>
<div class="row">
<!-- <span class="text-light"><b>WARNING:</b> third-party sellers sell counterfeit on Amazon. <a class="js-scroll-trigger text-light " href="#buythebook" ><b>How to buy a genuine copy?</b></a></span> -->
</div>
</div>
</div>
</div>
</div>
</section>
<br id="courses">
<br>
<center>
<h3 class="font-weight-bold text-dark">Used for courses at
</h3>
</center>
<img src="images/acad-logos.png" class="img-responsive" style=" max-width: 800px;margin: 0 auto;display: block;margin-bottom: 3%;"></a>
<center>
<!-- <p class="lead text-dark mb-4 pb-2">Practical NLP is used as a reference book or a textbook at above-noted universities.</p> -->
</center>
<!-- Hero End -->
<!-- Courses Start -->
<!-- Eberhard -->
<section class="section bg-light " id="resources">
<div class="container">
<div class="row justify-content-left">
<div class="col-lg-12 col-md-8">
<div class="title text-left mb-5">
<center>
<h1 class="font-weight-bold text-dark"> Resources
</h1>
</center>
</div>
</div>
</div>
<div class="row align-items-center" id="zachary">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/tubingen.png" alt="" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> Eberhard Karls University</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Tübingen, Germany
</p>
</div>
</div>
<div class="col-md-8 ">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://github.com/nishkalavallabhi/SfSCourseJan2021">NLP without Annotated Data</a> by <a href="https://www.linkedin.com/in/sowmya-v-2a38734/">Dr. Sowmya Vajjala</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15 ">NLP without Annotated Data was course taught at SfS, Uni-Tuebingen in January 2021. It focuses on applying natural language processing techniquies with limited and no data. These slides are uploaded "as is", and hence are not polished for public consumption.
</p>
</div>
</div>
</div>
<!-- Plaksha -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/plaksha.png" alt="" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> Plaksha University</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Punjab, India
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="#">Natural Language Processing</a> by <a href="https://www.microsoft.com/en-us/research/people/monojitc/">Dr. Monojit Choudhury</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15">This was a course taught to undergraduate and graduate engineering students. Slides will be uploaded soon.</p>
</div>
</div>
</div>
<!-- Ludwig -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/ludwig.png" alt="" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> Ludwig Maximilian University</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Munich, Germany
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://econnlpcourse.github.io/course-materials/">Natural Language Processing for Economists</a> by <a href="https://www.linkedin.com/in/sowmya-v-2a38734/">Dr. Sowmya Vajjala</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15">This course introduces Natural Language Processing (and Machine Learning) to economist and explores how it can be used to address research questions in economics that require analysis of textual data.</p>
</div>
</div>
</div>
<!-- Taiwan Normal -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/taiwan_normal.png" alt="" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> National Taiwan Normal University</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Taipei City, Taiwan
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://alvinntnu.github.io/NTNU_ENC2045_LECTURES/intro.html">Computational Linguistics</a> by <a href="https://alvinchen.myftp.org/">Dr. Alvin Chen</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15"> This course aims to introduce useful strategies and common workflows that have been widely adopted by data scientists to extract useful insights from the textual data.</p>
</div>
</div>
</div>
<!-- Vienna -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/vienna_austria.png" alt="Will be added soon" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> University of Vienna</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Vienna, Austria
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://ufind.univie.ac.at/en/course.html?lv=052315&semester=2021S">VU 052315 Natural Language Processing</a> by <a href="https://ufind.univie.ac.at/en/person.html?id=6309">Dr Werner Winiwarter</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15"> This is a practice-oriented course that aims to help students master the use of linguistic resources and tools, and efficiently apply them to independently design and implement solutions for subject-specific problems</p>
</div>
</div>
</div>
<!-- Marymount -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/marymount.png" alt="Will be added soon" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> Marymount University</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Arlington County, Virginia
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://marymount.smartcatalogiq.com/en/2019-2020/Catalogs/Graduate-Catalog/Courses/IT-Information-Technology/500/IT-576">IT 576 Natural Language Processing (NLP) Techniques</a> by <a href="https://marymount.edu/staff-members/nathan-green/">Dr Nathan Green</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15"> This is a master's level course where students examine the complexities of language phenomena and how to handle those using current NLP tools and scripting techniques.</p>
</div>
</div>
</div>
<!-- North Texas -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/north_texas.png" alt="Will be added soon" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> University of North Texas</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
Denton, Texas
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="http://catalog.unt.edu/preview_course_nopop.php?catoid=21&coid=82461&">LING 5412 - NLP in Linguistics</a> by <a href="https://linguistics.unt.edu/taraka-kasicheyanula
">Dr Taraka Rama Kasicheyanula</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15"> The course covers a survey of problems, methods, and theory of computational linguistics and natural language processing, with a particular focus on linguistically-oriented approaches.</p>
</div>
</div>
</div>
<!-- Campinas -->
<hr class="hr-dark">
<div class="row align-items-center">
<div class="col-md-4" >
<div class="features-img author-item">
<img src="images/campinas.png" alt="Will be added soon" class="img-fluid d-block mx-auto">
<p class="text-dark mb-0 text-center font-weight-medium"> University of Campinas</p>
<p class=" text-dark mb-0 text-center font-weight-medium">
São Paulo, Brazil
</p>
</div>
</div>
<div class="col-md-8">
<div class="features-box mt-5 mt-sm-0 mb-4">
<h4 class="text-dark "><a href="https://www.ic.unicamp.br/~afalcao/mo434/index.html">Deep Learning (MO434/MC934)</a> by <a href="https://www.ic.unicamp.br/~afalcao/">Prof. Alexandre Xavier Falc˜ao</a></h4>
<hr class="hr-dark">
<p class="mb-3 f-15"> This course provides the knowledge to construct and use deep neural networks for image and text analysis. The course starts from the basic concepts to understand, train and test neural networks for classification and regression. It introduces image analysis. In the sequence, it provides an introduction to text analysis and then covers Recurrent Neural Networks, Attention, Transformers and applications in text analysis.</p>
</div>
</div>
</div>
</section>
<!-- Courses End -->
<!-- Footer Start -->
<section class="section bg-dark footer">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="row ">
<div class="col-md-12">
<div class="text-center text-light">
<p class="mb-0 f-15">2020 © Practical Natural Language Processing.</p>
<p class="mb-0 f-15"> Made with <i class="fa fa-heart" aria-hidden="true"></i>
in Bangalore by <a href="https://codetrappers.com/" target="_blank">CodeTrappers</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer End -->
<!-- javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/scrollspy.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<!-- Main Js -->
<script src="js/app.js"></script>
</body>
</html>