.. _program_listing_file_src_common_authors.h: Program Listing for File authors.h ================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/common/authors.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include namespace marian { std::string citation() { return "Marian: Fast Neural Machine Translation in C++\n" "\n" "Please cite the following paper if you use Marian:\n" "\n" "@InProceedings{mariannmt,\n" " title = {Marian: Fast Neural Machine Translation in {C++}},\n" " author = {Junczys-Dowmunt, Marcin and Grundkiewicz, Roman and\n" " Dwojak, Tomasz and Hoang, Hieu and Heafield, Kenneth and\n" " Neckermann, Tom and Seide, Frank and Germann, Ulrich and\n" " Fikri Aji, Alham and Bogoychev, Nikolay and\n" " Martins, Andr\\'{e} F. T. and Birch, Alexandra},\n" " booktitle = {Proceedings of ACL 2018, System Demonstrations},\n" " pages = {116--121},\n" " publisher = {Association for Computational Linguistics},\n" " year = {2018},\n" " month = {July},\n" " address = {Melbourne, Australia},\n" " url = {http://www.aclweb.org/anthology/P18-4020}\n" "}\n"; } // The list of contributors has been compiled semi-automatically from the // GitHub contributor list in default order. That list can be printed out with // `git shortlog -s -n`. std::string authors() { return "Marian: Fast Neural Machine Translation in C++\n" "\n" "An inevitably non-exhaustive list of contributors:\n" "\n" "Marcin Junczys-Dowmunt \n" "Roman Grundkiewicz \n" "Frank Seide \n" "Hieu Hoang \n" "Ulrich Germann \n" "Tomasz Dwojak \n" "Alham Fikri Aji \n" "Young Jin Kim \n" "Nikolay Bogoychev \n" "Andre Martins \n" "Cédric Rousseau \n" "Kenneth Heafield \n" "Lane Schwartz \n" "Maximiliana Behnke \n" "Graeme Nail \n" "Qianqian Zhu \n" "Rohit Jain \n" "Tom Neckermann \n" "Hany Hassan Awadalla \n" "Jim Geovedi \n" "Rihards Krišlauks \n" "Catarina Silva \n" "Jon Clark \n" "Vishal Chowdhary \n" "delong-coder \n" "rhenry-nv \n" "Kelly Davis \n" "Aaron Burke \n" "Barry Haddow \n" "David Meikle \n" "Dominik Stańczak \n" "Michael Hutt \n" "Richard Wei \n" "Tommy MacWilliam \n" "Wenyong Huang \n" "alancucki \n" "alvations \n" "huangjq0617 \n" "Mateusz Chudyk \n"; } } // namespace marian