-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
519 lines (369 loc) · 17.8 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
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
508
509
510
511
512
513
514
515
516
517
518
519
<!--[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 :: Home
</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="landing-page 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 class="header text-center">
<div class="container">
<div class="branding">
<h1 class="logo">
<span aria-hidden="true" class="icon_documents_alt icon"></span>
<span class="text-highlight">Marian</span><span class="text-bold">NMT</span>
</h1>
</div>
<div class="tagline">
<p>Fast Neural Machine Translation in C++</p>
</div>
<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-->
<section class="cards-section text-center">
<div class="container">
<div class="intro">
<p>
<b>Marian</b> is an efficient, free Neural Machine Translation framework written
in pure C++ with minimal dependencies. It is mainly being developed by the <a target="_blank" href="http://translator.microsoft.com">Microsoft Translator</a> team. Many academic (most notably the University of Edinburgh and in the past the Adam Mickiewicz University in Poznań) and commercial <a target="_blank" href="https://github.com/marian-nmt/marian-dev/graphs/contributors">contributors</a> help with its development.
</p>
<p>
It is currently the engine behind the <a href="http://translator.microsoft.com">Microsoft Translator</a> Neural Machine Translation services and being deployed by many companies, organizations and research projects (see <a href="#users">below</a> for an incomplete list).
</p>
<p>
Main features:
<ul>
<li> Efficient pure C++ implementation </li>
<li> Fast multi-GPU training and GPU/CPU translation </li>
<li> State-of-the-art NMT architectures: deep RNN and Transformer </li>
<li> Permissive open source license (MIT) </li>
<li> <a href="../features"> more details... </a> </li>
</ul>
</p>
<div class="cta-container buttons-wrapper row">
<a class="col-md-6 btn btn-primary btn-cta btn-blue" href="https://github.com/marian-nmt/marian" target="_blank">
<i class="fa fa-github"></i>
Download from GitHub
</a>
<a class="col-md-6 btn btn-primary btn-cta btn-blue" href="https://twitter.com/marian_nmt?ref_src=twsrc%5Etfw" target="_blank">
<i class="fa fa-twitter"></i>
Follow Marian on Twitter
</a>
</div><!--//cta-container-->
</div>
<!--//intro-->
<div id="cards-wrapper" class="cards-wrapper row">
<div class="item item-green col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa-paper-plane"></span>
</div><!--//icon-holder-->
<h3 class="title">Quick Start</h3>
<p class="intro">Minimal examples for compilation, training, translation</p>
<a class="link" href="quickstart"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-pink col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa-bar-chart-o"></span>
</div><!--//icon-holder-->
<h3 class="title">Features & Benchmarks</h3>
<p class="intro">Feature list, translation and training benchmarks</p>
<a class="link" href="features"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-primary col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa-file-code-o"></span>
</div><!--//icon-holder-->
<h3 class="title">Documentation</h3>
<p class="intro">Extended description of command line options</p>
<a class="link" href="docs"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-purple col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa fa-cogs"></span>
</div><!--//icon-holder-->
<h3 class="title">Examples</h3>
<p class="intro">End-to-end examples how to train and translate with our toolkit</p>
<a class="link" href="examples"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-blue col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa-life-ring"></span>
</div><!--//icon-holder-->
<h3 class="title">FAQ</h3>
<p class="intro">Look for answers or post your own question</p>
<a class="link" href="faq"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-orange col-md-4 col-sm-6 col-xs-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon fa fa-code-fork"></span>
</div><!--//icon-holder-->
<h3 class="title">Developer API</h3>
<p class="intro">Developer documentation and library API</p>
<a class="link" href="docs/api"><span></span></a>
</div><!--//item-inner-->
</div><!--//item-->
</div>
<!--//cards-->
<h4 id="users"> Companies and organizations using Marian</h4>
<div id="logos-ms" class="logos-wrapper">
<div class="row">
<a target="_blank" class="logos-link" href="http://www.microsoft.com">
<img style="width: 300px; margin: 15px" alt="Microsoft" title="Microsoft" src="assets/logos/microsoft-alpha.png" />
</a>
</div>
<p>All other trademarks are the property of their respective owners.</p>
</div>
<!--//logos-ms-->
<div class="logos-wrapper row">
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.aylien.com">
<img class="logos-image" alt="AYLIEN" title="AYLIEN" src="assets/logos/aylien.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://afresearchlab.com">
<img class="logos-image" alt="Air Force Research Laboratory" title="Air Force Research Laboratory" src="assets/logos/afrl.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://browser.mt">
<img class="logos-image" alt="Bergamot" title="Bergamot" src="assets/logos/bergamot.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.cpsl.com">
<img class="logos-image" alt="CPSL" title="CPSL" src="assets/logos/cpsl.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.ebay.com">
<img class="logos-image" alt="EBay" title="EBay" src="assets/logos/ebay.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://ec.europa.eu/cefdigital/wiki/display/CEFDIGITAL/eTranslation">
<img class="logos-image" alt="European Commission" title="European Commission" src="assets/logos/ec.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://blogs.helsinki.fi/fiskmo-project">
<img class="logos-image" alt="FISKMÖ" title="FISKMÖ" src="assets/logos/fiskmo.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://gourmet-project.eu">
<img class="logos-image" alt="GoURMET" title="GoURMET" src="assets/logos/gourmet.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.himl.eu">
<img class="logos-image" alt="HimL" title="HimL" src="assets/logos/himl.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.intel.com">
<img class="logos-image" alt="Intel" title="Intel" src="assets/logos/intel.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.imo.org">
<img class="logos-image" alt="International Maritime Organization" title="International Maritime Organization" src="assets/logos/imo.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.lingea.com">
<img class="logos-image" alt="Lingea" title="Lingea" src="assets/logos/lingea.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.lingo24.com">
<img class="logos-image" alt="Lingo24" title="Lingo24" src="assets/logos/lingo24.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://lingoclinix.com">
<img class="logos-image" alt="Lingoclinix" title="Lingoclinix" src="assets/logos/lingoclinix.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://translator.microsoft.com">
<img class="logos-image" alt="Microsoft Translator" title="Microsoft Translator" src="assets/logos/ms-translator-white.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://github.com/Helsinki-NLP/Opus-MT">
<img class="logos-image" alt="Opus-MT" title="Opus-MT" src="assets/logos/opus_mt.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://paracrawl.eu">
<img class="logos-image" alt="ParaCrawl" title="ParaCrawl" src="assets/logos/paracrawl.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://qordoba.com">
<img class="logos-image" alt="Qordoba" title="Qordoba" src="assets/logos/qordoba.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.rakuten.com">
<img class="logos-image" alt="Rakuten" title="Rakuten" src="assets/logos/rakuten.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.summa-project.eu">
<img class="logos-image" alt="SUMMA" title="SUMMA" src="assets/logos/summa.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://sapling.ai">
<img class="logos-image" alt="Sapling" title="Sapling" src="assets/logos/sapling.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.skrivanek.com">
<img class="logos-image" alt="Skrivanek" title="Skrivanek" src="assets/logos/skrivanek.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.tilde.com">
<img class="logos-image" alt="Tilde" title="Tilde" src="assets/logos/tilde.jpg" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.unbabel.com">
<img class="logos-image" alt="Unbabel" title="Unbabel" src="assets/logos/unbabel.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.mediawiki.org/wiki/Content_translation">
<img class="logos-image" alt="Wikimedia Foundation" title="Wikimedia Foundation" src="assets/logos/wikimedia.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.wipo.org">
<img class="logos-image" alt="World Intellectual Property Organization" title="World Intellectual Property Organization" src="assets/logos/wipo.png" />
</a>
</div>
<div class="logos-item col-md-4 col-sm-6 col-xs-6">
<a target="_blank" class="logos-link" href="http://www.wto.org">
<img class="logos-image" alt="World Trade Organization" title="World Trade Organization" src="assets/logos/wto.png" />
</a>
</div>
</div>
<!--//logos-wrapper-->
<div class="intro footnote">
<p>If you would like to have your logo and link added to this list please add a comment with pointers which logo to use to <a target="_blank" href="https://github.com/marian-nmt/marian/issues/230">this thread</a>.</p>
</div>
<h4> Acknowledgements </h4>
<div class="intro">
<p>
Marian is mainly being developed by the <a target="_blank" href="http://translator.microsoft.com">Microsoft Translator</a> team and many academic and commercial contributors.
The development of Marian received funding from the European Union's Horizon 2020
Research and Innovation Programme under grant agreements No
688139 (<a target="_blank" href="http://www.summa-project.eu">SUMMA</a>; 2016-2019),
645487 (<a target="_blank" href="http://cordis.europa.eu/project/rcn/194327/factsheet/en">Modern MT</a>; 2015-2017),
644333 (<a target="_blank" href="http://tramooc.eu/">TraMOOC</a>; 2015-2017),
644402 (<a target="_blank" href="http://www.himl.eu/">HimL</a>; 2015-2017),
825303 (<a target="_blank" href="https://browser.mt/">Bergamot</a>; 2019-2021),
825627 (<a target="_blank" href="https://european-language-grid.eu/">ELG</a>; 2019-2021),
the European Union's Connecting Europe Facility project
2019-EU-IA-0045 (<a target="_blank" href="https://marian-project.eu/">User-focused Marian</a>; 2020-2022),
the Amazon Academic Research Awards program,
the World Intellectual Property Organization,
the eBay Research and University Partnership for Technology program,
a collaboration with Intel,
and is based upon work supported in part by the Office of the Director of
National Intelligence (ODNI), Intelligence Advanced Research Projects Activity
(IARPA), via contract #FA8650-17-C-9117.
Intel and the Intel logo are trademarks of Intel Corporation in the U.S. and other countries.
</p>
</div>
</div><!--//container-->
</section><!--//cards-section-->
</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-->
<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-match-height/jquery.matchHeight-min.js"></script>
<script type="text/javascript" src="/assets/js/main.js"></script>
</body>
</html>