3 lines
137 B
Bash
3 lines
137 B
Bash
#!/bin/bash
|
|
for x in exp/*/decode* exp/chain*/*/decode*; do [ -d $x ] && [[ $x =~ "$1" ]] && grep WER $x/wer_* | utils/best_wer.sh; done
|