SCLITE config
This commit is contained in:
parent
790f750aca
commit
9fd9095c1a
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -11,9 +11,14 @@ pipeline {
|
||||
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||
}
|
||||
}
|
||||
stage('Shell') {
|
||||
stage('Get data') {
|
||||
steps {
|
||||
sh label: 'count lines', script: './count.sh'
|
||||
sh label: 'count lines', script: './get_data.sh'
|
||||
}
|
||||
}
|
||||
stage('SCLITE') {
|
||||
steps {
|
||||
sh label: 'count lines', script: './sclite.sh'
|
||||
}
|
||||
}
|
||||
stage('Archive artifacts') {
|
||||
|
3
get_data.sh
Executable file
3
get_data.sh
Executable file
@ -0,0 +1,3 @@
|
||||
cat wikiniews_results.tsv | cut -f2 -s > hypothesis.txt
|
||||
cat wikiniews_results.tsv | cut -f3 -s > references.txt
|
||||
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
|
Loading…
Reference in New Issue
Block a user