diff options
author | Patrick Simianer <p@simianer.de> | 2014-01-13 12:37:45 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-01-13 12:37:45 +0100 |
commit | 6ec8836c01223994816be6b7bdbb9abf136a1343 (patch) | |
tree | 3ded58a7f26854fdeb89451059618e7116b3b6ca /realtime | |
parent | 70b5d1ddbce169426f7cbdfcfe9186346bea3012 (diff) | |
parent | a1cf0d10fe44ede32d29be37107884b734d459ae (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'realtime')
-rw-r--r-- | realtime/README.md | 12 | ||||
-rwxr-xr-x | realtime/realtime.py | 12 | ||||
-rw-r--r-- | realtime/rt/util.py | 2 |
3 files changed, 10 insertions, 16 deletions
diff --git a/realtime/README.md b/realtime/README.md index e5290fc5..1d49a9de 100644 --- a/realtime/README.md +++ b/realtime/README.md @@ -4,13 +4,11 @@ cdec Realtime Code by Michael Denkowski (http://www.cs.cmu.edu/~mdenkows/, mdenkows@cs.cmu.edu) ``` -@misc{denkowski-proposal2013, - author = {Michael Denkowski}, - title = {Machine Translation for Human Translators}, - year = {2013}, - month = {May}, - day = {30}, - howpublished = {{Ph.D.} Thesis Proposal, Carnegie Mellon University} +@InProceedings{realtime, + author = {Michael Denkowski and Chris Dyer and Alon Lavie}, + title = {Learning from Post-Editing: Online Model Adaptation for Statistical Machine Translation}, + booktitle = {Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics} + year = {2014}, } ``` diff --git a/realtime/realtime.py b/realtime/realtime.py index ec15b59d..f99478b0 100755 --- a/realtime/realtime.py +++ b/realtime/realtime.py @@ -13,13 +13,11 @@ ABOUT = '''Realtime adaptive translation with cdec (See README.md) Code by Michael Denkowski Citation: -@misc{denkowski-proposal2013, - author = {Michael Denkowski}, - title = {Machine Translation for Human Translators}, - year = {2013}, - month = {May}, - day = {30}, - howpublished = {{Ph.D.} Thesis Proposal, Carnegie Mellon University} +@InProceedings{realtime, + author = {Michael Denkowski and Chris Dyer and Alon Lavie}, + title = {Learning from Post-Editing: Online Model Adaptation for Statistical Machine Translation}, + booktitle = {Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics} + year = {2014}, } ''' diff --git a/realtime/rt/util.py b/realtime/rt/util.py index 52767dac..a7333bbd 100644 --- a/realtime/rt/util.py +++ b/realtime/rt/util.py @@ -4,8 +4,6 @@ import subprocess import sys import threading -from cdec.configobj import ConfigObj - SA_INI_FILES = set(( 'f_sa_file', 'e_file', |