Bertalign-1

This commit is contained in:
nlpfun
2021-05-17 23:44:19 +08:00
parent 025bc2afe4
commit ca6ffedb45
89 changed files with 18549 additions and 382 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright © 2010 University of Zürich
# Author: Rico Sennrich <sennrich@cl.uzh.ch>
# For licensing information, see LICENSE
import sys
from command_utils import load_arguments
from bleualign.align import Aligner
if __name__ == '__main__':
options = load_arguments(sys.argv)
a = Aligner(options)
a.mainloop()