[f4bf33e] | 1 | |
---|
| 2 | no_of_parts=0 |
---|
| 3 | |
---|
| 4 | while [ $# -gt 2 ] |
---|
| 5 | do |
---|
| 6 | case $1 |
---|
| 7 | in |
---|
| 8 | -p) |
---|
| 9 | no_of_parts=$2 |
---|
| 10 | shift 2 |
---|
| 11 | ;; |
---|
| 12 | |
---|
| 13 | *) |
---|
| 14 | echo "The arguments to use are" |
---|
| 15 | echo "-p: number of parts" |
---|
| 16 | shift 1 |
---|
| 17 | ;; |
---|
| 18 | esac |
---|
| 19 | done |
---|
| 20 | |
---|
| 21 | if [ $# -lt 2 ] |
---|
| 22 | then |
---|
| 23 | echo "Usage:" |
---|
| 24 | echo " compdic [-p <parts>] <wordlist> <automaton>" |
---|
| 25 | echo "where" |
---|
| 26 | echo " <wordlist> - file containig a list of words, one per line, iso-8859-2 encoded" |
---|
| 27 | echo " <automaton> - a file to which the compiled automaton in openfst format shoul be written" |
---|
| 28 | exit 0 |
---|
| 29 | fi |
---|
| 30 | |
---|
| 31 | if [ $no_of_parts -eq 0 ] |
---|
| 32 | then |
---|
| 33 | no_of_parts=$(( `cat $1 | wc -l` / 75000 + 1 )) |
---|
| 34 | fi |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | echo number of parts: $no_of_parts |
---|
| 38 | |
---|
| 39 | |
---|
| 40 | tempdir=`mktemp -d /tmp/compdic.XXXXXX` |
---|
| 41 | |
---|
| 42 | alphabet=`tempfile -d $tempdir` |
---|
| 43 | |
---|
| 44 | cat <<EOF > $alphabet |
---|
| 45 | <eps> 0 |
---|
| 46 | a 1 |
---|
| 47 | A 2 |
---|
| 48 | ä 3 |
---|
| 49 | ± 4 |
---|
| 50 | ¡ 5 |
---|
| 51 | b 6 |
---|
| 52 | B 7 |
---|
| 53 | c 8 |
---|
| 54 | C 9 |
---|
| 55 | æ 10 |
---|
| 56 | Æ 11 |
---|
| 57 | d 12 |
---|
| 58 | D 13 |
---|
| 59 | e 14 |
---|
| 60 | E 15 |
---|
| 61 | é 16 |
---|
| 62 | ê 17 |
---|
| 63 | Ê 18 |
---|
| 64 | f 19 |
---|
| 65 | F 20 |
---|
| 66 | g 21 |
---|
| 67 | G 22 |
---|
| 68 | h 23 |
---|
| 69 | H 24 |
---|
| 70 | i 25 |
---|
| 71 | I 26 |
---|
| 72 | j 27 |
---|
| 73 | J 28 |
---|
| 74 | k 29 |
---|
| 75 | K 30 |
---|
| 76 | l 31 |
---|
| 77 | L 32 |
---|
| 78 | ³ 33 |
---|
| 79 | £ 34 |
---|
| 80 | m 35 |
---|
| 81 | M 36 |
---|
| 82 | n 37 |
---|
| 83 | N 38 |
---|
| 84 | ñ 39 |
---|
| 85 | Ñ 40 |
---|
| 86 | o 41 |
---|
| 87 | O 42 |
---|
| 88 | ö 43 |
---|
| 89 | ó 44 |
---|
| 90 | Ó 45 |
---|
| 91 | p 46 |
---|
| 92 | P 47 |
---|
| 93 | q 48 |
---|
| 94 | Q 49 |
---|
| 95 | r 50 |
---|
| 96 | R 51 |
---|
| 97 | s 52 |
---|
| 98 | S 53 |
---|
| 99 | ¶ 54 |
---|
| 100 | Š 55 |
---|
| 101 | t 56 |
---|
| 102 | T 57 |
---|
| 103 | u 58 |
---|
| 104 | U 59 |
---|
| 105 | ü 60 |
---|
| 106 | v 61 |
---|
| 107 | V 62 |
---|
| 108 | w 63 |
---|
| 109 | W 64 |
---|
| 110 | x 65 |
---|
| 111 | X 66 |
---|
| 112 | y 67 |
---|
| 113 | Y 68 |
---|
| 114 | z 69 |
---|
| 115 | Z 70 |
---|
| 116 | Œ 71 |
---|
| 117 | ¬ 72 |
---|
| 118 | ¿ 73 |
---|
| 119 | ¯ 74 |
---|
| 120 | 0 75 |
---|
| 121 | 1 76 |
---|
| 122 | 2 77 |
---|
| 123 | 3 78 |
---|
| 124 | 4 79 |
---|
| 125 | 5 80 |
---|
| 126 | 6 81 |
---|
| 127 | 7 82 |
---|
| 128 | 8 83 |
---|
| 129 | 9 84 |
---|
| 130 | _ 85 |
---|
| 131 | - 86 |
---|
| 132 | ? 87 |
---|
| 133 | ! 88 |
---|
| 134 | ~ 89 |
---|
| 135 | ; 90 |
---|
| 136 | , 91 |
---|
| 137 | / 92 |
---|
| 138 | * 93 |
---|
| 139 | + 94 |
---|
| 140 | EOF |
---|
| 141 | |
---|
| 142 | |
---|
| 143 | no_of_lines=$(( (`cat $1 | wc -l` / $no_of_parts) + 1 )) |
---|
| 144 | |
---|
| 145 | split -l $no_of_lines $1 $tempdir/part. |
---|
| 146 | |
---|
| 147 | automaton=$tempdir/output.fst |
---|
| 148 | |
---|
| 149 | cat <<EOF | fstcompile --acceptor --isymbols=$alphabet > $automaton |
---|
| 150 | EOF |
---|
| 151 | |
---|
| 152 | n=0 |
---|
| 153 | |
---|
| 154 | for f in $tempdir/part.* |
---|
| 155 | do |
---|
| 156 | temp1=`tempfile -d $tempdir` |
---|
| 157 | temp2=`tempfile -d $tempdir` |
---|
| 158 | temp3=`tempfile -d $tempdir` |
---|
| 159 | |
---|
| 160 | n=$(( $n + 1 )) |
---|
| 161 | echo processing part $n |
---|
| 162 | |
---|
| 163 | cat $f |\ |
---|
| 164 | lst2fstext |\ |
---|
| 165 | fstcompile --acceptor --isymbols=$alphabet |\ |
---|
| 166 | fstrmepsilon |\ |
---|
| 167 | fstdeterminize > $temp1 |
---|
| 168 | fstminimize $temp1 $temp2 |
---|
| 169 | |
---|
| 170 | fstunion $automaton $temp2 | fstrmepsilon | fstdeterminize > $temp3 |
---|
| 171 | fstminimize $temp3 $automaton |
---|
| 172 | done |
---|
| 173 | |
---|
| 174 | echo generating binary automaton file ... |
---|
| 175 | |
---|
| 176 | cat $automaton | fsttopsort > $2 |
---|
| 177 | rm -r $tempdir |
---|
| 178 | |
---|
| 179 | #echo generating cats file ... |
---|
| 180 | |
---|
| 181 | #cat $1 | cut -d ',' -f 2 | sort -u $1.cats |
---|