├── .gitmodules ├── README.md ├── config.yml ├── model_def.py ├── scripts ├── build-training-data.sh ├── get-mono-data-wiki.sh ├── get-nonoverlap-split.sh ├── get-opus-data.sh ├── get-ted-data.sh ├── preprocess.sh └── spm-subword.py ├── setup-env.sh ├── train.sh └── translate.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/config.yml -------------------------------------------------------------------------------- /model_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/model_def.py -------------------------------------------------------------------------------- /scripts/build-training-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/build-training-data.sh -------------------------------------------------------------------------------- /scripts/get-mono-data-wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/get-mono-data-wiki.sh -------------------------------------------------------------------------------- /scripts/get-nonoverlap-split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/get-nonoverlap-split.sh -------------------------------------------------------------------------------- /scripts/get-opus-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/get-opus-data.sh -------------------------------------------------------------------------------- /scripts/get-ted-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/get-ted-data.sh -------------------------------------------------------------------------------- /scripts/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/preprocess.sh -------------------------------------------------------------------------------- /scripts/spm-subword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/scripts/spm-subword.py -------------------------------------------------------------------------------- /setup-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/setup-env.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/train.sh -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surafelml/Afro-NMT/HEAD/translate.sh --------------------------------------------------------------------------------