myZagar / exp.sh
ye-nlp's picture
added shell scripts etc.
0d84e21
#!/bin/bash
# Demo profile building and detecting with all approaches
# Written by Ye Kyaw Thu, LU Lab., Myanmar
# Last updated: 31 Jan 2024
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