├── .gitmodules ├── LICENSE ├── README.md ├── models └── README.md ├── outputs ├── nist │ ├── nist02.rerank.output │ ├── nist03.rerank.output │ ├── nist04.rerank.output │ ├── nist05.rerank.output │ ├── nist06.rerank.output │ └── nist08-complete.rerank.output └── unpc │ └── test.rerank.output ├── scripts ├── bpedict.en.json ├── bpedict.zh.json ├── detokenizer.perl ├── lowercase.perl ├── normalize-zh.sed ├── recase-stdin.perl ├── recase.sh ├── sample-train-dstack-gru.sh ├── sample-train-dstack-lstm.sh ├── sample-train-dtrans-gru.sh ├── sample-train-dtrans-lstm.sh ├── segment.sh ├── subword.sh ├── translate-norerank.sh ├── translate-rerank.sh └── vars └── tools └── segmenter ├── README.md ├── ctbModel ├── lex.GB.txt └── segment.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/models/README.md -------------------------------------------------------------------------------- /outputs/nist/nist02.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist02.rerank.output -------------------------------------------------------------------------------- /outputs/nist/nist03.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist03.rerank.output -------------------------------------------------------------------------------- /outputs/nist/nist04.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist04.rerank.output -------------------------------------------------------------------------------- /outputs/nist/nist05.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist05.rerank.output -------------------------------------------------------------------------------- /outputs/nist/nist06.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist06.rerank.output -------------------------------------------------------------------------------- /outputs/nist/nist08-complete.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/nist/nist08-complete.rerank.output -------------------------------------------------------------------------------- /outputs/unpc/test.rerank.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/outputs/unpc/test.rerank.output -------------------------------------------------------------------------------- /scripts/bpedict.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/bpedict.en.json -------------------------------------------------------------------------------- /scripts/bpedict.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/bpedict.zh.json -------------------------------------------------------------------------------- /scripts/detokenizer.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/detokenizer.perl -------------------------------------------------------------------------------- /scripts/lowercase.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/lowercase.perl -------------------------------------------------------------------------------- /scripts/normalize-zh.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/normalize-zh.sed -------------------------------------------------------------------------------- /scripts/recase-stdin.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/recase-stdin.perl -------------------------------------------------------------------------------- /scripts/recase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/recase.sh -------------------------------------------------------------------------------- /scripts/sample-train-dstack-gru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/sample-train-dstack-gru.sh -------------------------------------------------------------------------------- /scripts/sample-train-dstack-lstm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/sample-train-dstack-lstm.sh -------------------------------------------------------------------------------- /scripts/sample-train-dtrans-gru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/sample-train-dtrans-gru.sh -------------------------------------------------------------------------------- /scripts/sample-train-dtrans-lstm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/sample-train-dtrans-lstm.sh -------------------------------------------------------------------------------- /scripts/segment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/segment.sh -------------------------------------------------------------------------------- /scripts/subword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/subword.sh -------------------------------------------------------------------------------- /scripts/translate-norerank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/translate-norerank.sh -------------------------------------------------------------------------------- /scripts/translate-rerank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/translate-rerank.sh -------------------------------------------------------------------------------- /scripts/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/scripts/vars -------------------------------------------------------------------------------- /tools/segmenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/tools/segmenter/README.md -------------------------------------------------------------------------------- /tools/segmenter/ctbModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/tools/segmenter/ctbModel -------------------------------------------------------------------------------- /tools/segmenter/lex.GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/tools/segmenter/lex.GB.txt -------------------------------------------------------------------------------- /tools/segmenter/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nusnlp/c2e-mt-benchmark/HEAD/tools/segmenter/segment.py --------------------------------------------------------------------------------