| #!/bin/bash |
|
|
| |
| |
| |
|
|
| mkdir log; |
|
|
| time ./build_profile_with_char_syl_freq.sh | tee ./log/char_syl_freq.train.log |
| time ./detect_with_char_syl_freq.sh | tee ./log/char_syl_freq.detect.log |
|
|
| time ./build_profile_with_char_syl_ngram.sh | tee ./log/| tee ./log/char_syl_ngram.train.log |
| time ./detect_with_char_syl_ngram.sh | tee ./log/char_syl_ngram.detect.log |
|
|
| time ./build_profile_with_embeddings.sh | tee ./log/embeddings.train.log |
| time ./detect_with_embedding.sh | tee ./log/embeddings.detect.log |
|
|
| time ./train_with_fasttext_classifier.sh | tee ./log/fasttext_class.train.log |
| time ./detect_with_fasttext.sh | tee ./log/fasttext_class.detect.log |
|
|
| time ./train_with_nerual.sh | tee ./log/neural.train.log |
| time ./detect_with_neural.sh | tee ./log/neural.detect.log |
|
|