-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
256 lines (137 loc) · 6.36 KB
/
blog.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
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<title>
Marian :: Blog
</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Fast Neural Machine Translation in C++">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="/assets/plugins/bootstrap/css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="/assets/plugins/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/assets/css/pygments/github.css">
<link rel="stylesheet" href="/assets/plugins/lightbox/lightbox.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="/assets/css/styles.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="/assets/plugins/github-fork-ribbon-css/gh-fork-ribbon.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" href="/assets/plugins/github-fork-ribbon-css/gh-fork-ribbon.ie.css" />
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109819276-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-109819276-1');
</script>
</head>
<body class="body-blue">
<a class="github-fork-ribbon" href="https://github.com/marian-nmt/marian" title="Fork me on GitHub">Fork me on GitHub</a>
<div class="page-wrapper">
<header id="header" class="header">
<div class="container">
<div class="branding">
<h1 class="logo">
<a href="/">
<span aria-hidden="true" class="icon_documents_alt icon"></span>
<span class="text-highlight">Marian</span><span class="text-bold">NMT</span>
</a>
</h1>
<p class="description">Fast Neural Machine Translation in C++</p>
</div><!--//branding-->
<ol class="breadcrumb">
<li>
<a class="page-link" href="/quickstart/">Quick start</a>
</li>
<li>
<a class="page-link" href="/features/">Features & Benchmarks</a>
</li>
<li>
<a class="page-link" href="/docs/">Documentation</a>
</li>
<li>
<a class="page-link" href="/examples/">Examples</a>
</li>
<li>
<a class="page-link" href="/faq">FAQ</a>
</li>
<li>
<a class="page-link" href="/publications/">Publications</a>
</li>
<li>
<a class="page-link" href="/blog">Blog</a>
</li>
</ol>
</div><!--//container-->
</header><!--//header-->
<div class="doc-wrapper">
<div class="container">
<div id="doc-header" class="doc-header text-center">
<h1 class="doc-title">
<i class="icon fa fa-pencil-square-o }}"></i>
Blog
</h1>
<div class="meta">
<i class="fa fa-clock-o"></i>
Last updated: 30 May 2022
</div>
</div><!--//doc-header-->
<div class="doc-body">
<div class="doc-content">
<div class="content-inner">
<div class="blog-content">
<a class="blog-title" href="/2022/05/29/top-cited-2018-2019.html"><h2>The 20 top-cited Machine Translation* papers of 2018 and 2019</h2></a>
<div class="blog-date">29 May 2022</div>
Let's take a first look at the 20 top-cited machine translation papers from 2018 and 2019.
<a class="blog-continue" href="/2022/05/29/top-cited-2018-2019.html">Continue ...</a>
</div>
<div class="blog-content">
<a class="blog-title" href="/2020/01/22/lexical-diversity.html"><h2>Is MT really lexically less diverse than human translation?</h2></a>
<div class="blog-date">22 January 2020</div>
This blog post describes my journey into the rabbit hole that is lexical diversity of machine translation outputs. We take a look at lexical diversity of WMT19 systems and test sets.
<a class="blog-continue" href="/2020/01/22/lexical-diversity.html">Continue ...</a>
</div>
</div><!--//content-inner-->
</div><!--//doc-content-->
<div class="doc-sidebar hidden-xs">
<nav id="doc-nav"></nav>
</div><!--//doc-sidebar-->
</div><!--//doc-body-->
</div><!--//container-->
</div><!--//doc-wrapper-->
</div><!--//page-wrapper-->
<footer id="footer" class="footer text-center">
<div class="container">
<p>
Marian - an efficient Neural Machine Translation framework written in pure C++.</br>
Mainly developed at Microsoft Translator and at the University of Edinburgh.
</p>
<p><a href="https://github.com/marian-nmt/marian#marian">Marian</a> is licensed under the <a href="https://github.com/marian-nmt/marian/blob/master/LICENSE.md">MIT license</a>.</p>
<p><small class="copyright footnote">Based on the theme PrettyDocs designed by <a href="http://themes.3rdwavemedia.com/" targe="_blank">Xiaoying Riley</a> with modifications.</small></p>
</div><!--//container-->
</footer><!--//footer-->
<!-- Main Javascript -->
<script type="text/javascript"> localStorage.clear();</script>
<script type="text/javascript" src="/assets/plugins/jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="/assets/plugins/jquery-match-height/jquery.matchHeight-min.js"></script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="/assets/js/main.js"></script>
<script type="text/javascript" src="/assets/js/toc.js"></script>
</body>
</html>