make.sh (456B)
1 #!/bin/bash 2 3 # From a French text input and an exceptions dictionnary, prepare the 4 # trie. 5 6 ./prepare.sh | # reformat the text 7 ./detect.pl | # identify and label occurrences 8 cat - $* | # add in exceptions 9 sed 's/ h/ /' | # we don't keep the useless leading 'h' in the trie 10 ./haspirater/buildtrie.py | # prepare the trie 11 ./haspirater/compresstrie.py | # compress the trie 12 ./haspirater/majoritytrie.py # keep only the most frequent information 13