1

I am looking for a translator from Spanish and Portuguese to english that can be used to translate thousand of texts automatically. I used to use google translator, but the recently it has presented several issues that are not consistently solvable (it seems that google changed his policy). Is there any good offline option for ubuntu?

The translation need not to be as good as the one of google, since I am working with natural language processing and a model that considers the idea of "bags of words". So, the most important is to translate well the keywords.

  • 1
    DeepL is much better than Google Translate for Spanish and Portuguese to English translation. DeepL plays fair with NLP. – karel Dec 13 '18 at 12:15
  • @karel can I use it offline? – DanielTheRocketMan Dec 13 '18 at 12:20
  • 2
    DeepL is a web application, not an offline app. You have to purchase a paid subscription to integrate DeepL’s translations into Computer Assisted Translation tools which offers a 30-day free trial. – karel Dec 13 '18 at 12:30

1 Answers1

1

there is argos-translate

pip3 install argostranslate
export PATH="$PATH:$HOME/.local/bin"
argospm update
argospm install translate-en_de
argos-translate --from en --to de "Hello World!"
milahu
  • 337