up
This commit is contained in:
parent
051b88681f
commit
91698cdf16
1
Jenkinsfile
vendored
1
Jenkinsfile
vendored
@ -13,6 +13,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage('countLines') {
|
stage('countLines') {
|
||||||
steps {
|
steps {
|
||||||
|
sh 'chmod 777 ./countlines-metrics.sh'
|
||||||
sh './countlines-metrics.sh'
|
sh './countlines-metrics.sh'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,26 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#zad 1 - liczenie lini
|
||||||
|
wc -l wikiniews_results.tsv > countlines_result.txt
|
||||||
|
|
||||||
wc -l wikiniews_results.tsv > countlines_result.txt
|
#zad 3
|
||||||
|
#dane do txt
|
||||||
|
cut --fields=2 wikiniews_results.tsv > hypothesis.txt
|
||||||
|
cut --fields=3 wikiniews_results.tsv > reference.txt
|
||||||
|
#do trn
|
||||||
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
|
||||||
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
|
||||||
|
|
||||||
|
#Sclite sluzy do obliczenia WER
|
||||||
|
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all test.txt
|
||||||
|
|
||||||
|
|
||||||
|
# awk 'BEGIN{OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{ print ($2 + $3 + $4)/($2 + $3 + $1) }' > wer.tsv
|
||||||
|
# paste wikiniews_results.tsv wer.tsv > wikiniews_results_with_wer.tsv
|
||||||
|
# tail -n 49 wer.txt >> wer_tmp.txt
|
||||||
|
# rm wer.txt
|
||||||
|
# mv wer_tmp.txt wer.txt
|
||||||
|
# tail -n 49 srr.txt >> srr_tmp.txt
|
||||||
|
# rm srr.txt
|
||||||
|
# mv srr_tmp.txt srr.txt
|
||||||
|
# awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.txt
|
||||||
|
# awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv >> srr.txt
|
Loading…
Reference in New Issue
Block a user