s416422-mlworkshops/script.sh

15 lines
486 B
Bash
Raw Normal View History

2019-04-26 13:54:36 +02:00
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < $1 > reference_a.trn
2019-04-26 13:22:43 +02:00
cut -f2 $1 > reference.txt
cut -f3 $1 > hypothesis.txt
2019-04-26 13:33:54 +02:00
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
2019-04-26 13:22:43 +02:00
2019-04-26 14:33:29 +02:00
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout > WER_SSR.txt
2019-04-26 13:02:03 +02:00
2019-04-26 14:39:17 +02:00
cat WER_SSR.txt | grep -oP '(?<=Scores: \(#C #S #D #I\) ).*' > values.txt
2019-04-26 15:06:39 +02:00
python3 solution.py
2019-04-26 14:56:46 +02:00