Views
No views yet
pip install transquest1git clone https://github.com/TharinduDR/TransQuest.git
2cd TransQuest
3pip install -r requirements.txt1from transquest.algo.word_level.microtransquest.run_model import MicroTransQuestModel
2import torch
3
4model = MicroTransQuestModel("xlmroberta", "TransQuest/microtransquest-en_cs-it-smt", labels=["OK", "BAD"], use_cuda=torch.cuda.is_available())
5source_tags, target_tags = model.predict([["if not , you may not be protected against the diseases . ", "ja tā nav , Jūs varat nepasargāt no slimībām . "]])
61@InProceedings{ranasinghe2021,
2author = {Ranasinghe, Tharindu and Orasan, Constantin and Mitkov, Ruslan},
3title = {An Exploratory Analysis of Multilingual Word Level Quality Estimation with Cross-Lingual Transformers},
4booktitle = {Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics},
5year = {2021}
6}1@InProceedings{transquest:2020a,
2author = {Ranasinghe, Tharindu and Orasan, Constantin and Mitkov, Ruslan},
3title = {TransQuest: Translation Quality Estimation with Cross-lingual Transformers},
4booktitle = {Proceedings of the 28th International Conference on Computational Linguistics},
5year = {2020}
6}1@InProceedings{transquest:2020b,
2author = {Ranasinghe, Tharindu and Orasan, Constantin and Mitkov, Ruslan},
3title = {TransQuest at WMT2020: Sentence-Level Direct Assessment},
4booktitle = {Proceedings of the Fifth Conference on Machine Translation},
5year = {2020}
6}