Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
benchmark: fix main benchmark script
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-it committed Mar 1, 2018
1 parent a630a1f commit a15b238
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions benchmark_all.sh
@@ -1,6 +1,11 @@
ARCHITECTURES="lstm"
LANGUAGES=$(ls data/*.sentences.train)
ARCHITECTURES="lstm bi-lstm cnn"

for architecture in $ARCHITECTURES
do
./benchmark_language.sh $architecture
for train_file in $LANGUAGES
do
lang=${train_file%.train}
./benchmark_language.sh $lang $architecture
done
done

0 comments on commit a15b238

Please sign in to comment.