2019-05-16 18:28:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-05-17 14:28:29 +02:00
|
|
|
CORPUS_NAME=opensubtitles_sample
|
|
|
|
CORPUS_PATH=./$CORPUS_NAME
|
2019-05-16 18:28:30 +02:00
|
|
|
SRC_LANG_ID=1
|
|
|
|
TRG_LANG_ID=2
|
|
|
|
|
|
|
|
./addFastAlignedTM.py $CORPUS_NAME $CORPUS_PATH/src_clean.txt $CORPUS_PATH/src_clean.lem $SRC_LANG_ID $CORPUS_PATH/trg_clean.txt $TRG_LANG_ID $CORPUS_PATH/alignments.txt $CORPUS_PATH/ids_clean.txt
|