This commit is contained in:
s416122 2020-04-22 21:59:46 +02:00
parent 7cbc57a44e
commit e26cc3dde9

View File

@ -1,3 +1,12 @@
#!/bin/bash
wc -l $1
wc -l $1
cut -f 3 $1 > reference.txt
cut -f 2 $1 > hypothesis.txt
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
echo (sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout)