Last active
September 21, 2019 08:09
-
-
Save IlnarSelimcan/87bef975e919836e90865e44935a6bd7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang rash | |
;; ASSUME: - this script is placed into apertium-all/ | |
;; - hfst-covtest is in the PATH | |
;; USAGE: racket apertium-turkic-bilingual-stats.rkt > /tmp/bilingual 2>&1 | |
;; REQUIRES: racket | |
;; rash (install with "raco pkg install rash") | |
(provide MONOLINGUAL BILINGUAL) | |
(define MONOLINGUAL | |
(hash | |
'alt "apertium-incubator/apertium-alt/" | |
'aze "apertium-incubator/apertium-aze/" | |
'bak "apertium-languages/apertium-bak/" | |
'chv "apertium-languages/apertium-chv/" | |
'crh "apertium-languages/apertium-crh/" | |
'gag "apertium-languages/apertium-gag/" | |
'kaa "apertium-languages/apertium-kaa/" | |
'kaz "apertium-languages/apertium-kaz/" | |
'kir "apertium-languages/apertium-kir/" | |
'kjh "apertium-incubator/apertium-kjh/" | |
'krc "apertium-incubator/apertium-krc/" | |
'kum "apertium-languages/apertium-kum/" | |
'nog "apertium-languages/apertium-nog/" | |
'ota "apertium-incubator/apertium-ota/" | |
'sah "apertium-languages/apertium-sah/" | |
'tat "apertium-languages/apertium-tat/" | |
'tuk "apertium-languages/apertium-tuk/" | |
'tur "apertium-languages/apertium-tur/" | |
'tyv "apertium-languages/apertium-tyv/" | |
'uig "apertium-languages/apertium-uig/" | |
'uzb "apertium-languages/apertium-uzb/")) | |
(define BILINGUAL | |
'( | |
"apertium-incubator/apertium-chv-tat/" | |
"apertium-incubator/apertium-chv-tur/" | |
"apertium-trunk/apertium-crh-tur/" | |
"apertium-incubator/apertium-kaz-kaa/" | |
"apertium-nursery/apertium-kaz-kir/" | |
"apertium-nursery/apertium-kaz-kum/" | |
"apertium-incubator/apertium-kaz-sah/" | |
"apertium-trunk/apertium-kaz-tat/" | |
"apertium-incubator/apertium-kaz-tur/" | |
"apertium-incubator/apertium-kaz-tyv/" | |
"apertium-incubator/apertium-kaz-uig/" | |
"apertium-incubator/apertium-kir-uzb/" | |
"apertium-incubator/apertium-nog-kaz/" | |
"apertium-nursery/apertium-tat-bak/" | |
"apertium-incubator/apertium-tat-kaa/" | |
"apertium-incubator/apertium-tat-kir/" | |
"apertium-nursery/apertium-tuk-tur/" | |
"apertium-nursery/apertium-tur-aze/" | |
"apertium-nursery/apertium-tur-kir/" | |
"apertium-nursery/apertium-tur-tat/" | |
"apertium-nursery/apertium-tur-uzb/" | |
"apertium-incubator/apertium-uig-tur/" | |
"apertium-incubator/apertium-uzb-kaa/")) | |
(for ([p BILINGUAL]) | |
(parameterize ([current-directory p]) | |
(define lang1 (substring p (- (string-length p) 8) (- (string-length p) 5))) | |
(define lang2 (substring p (- (string-length p) 4) (- (string-length p) 1))) | |
(define path1 (string-append "../../" (hash-ref MONOLINGUAL (string->symbol lang1)))) | |
(define path2 (string-append "../../" (hash-ref MONOLINGUAL (string->symbol lang2)))) | |
{echo $lang1 $lang2 | |
(with-handlers ([exn:fail? (λ (exn) (display "git failed\n"))]) | |
{git checkout master | |
git pull | |
git log | head -n1}) | |
(with-handlers ([exn:fail? (λ (exn) (display "compilation failed\n"))]) | |
{./autogen.sh --with-lang1=$path1 --with-lang2=$path2 | |
make clean | |
make}) | |
echo | |
echo bible coverage (values lang1) -> (values lang2) | |
(with-handlers ([exn:fail? (λ (exn) (display "covtest failed"))]) | |
{aq-covtest (string-append path1 "bible.destxt") (string-append lang1 "-" lang2 ".automorf.bin") | |
hfst-covtest (string-append lang1 "-" lang2) . (string-append path1 "bible.destxt")}) | |
echo wikipedia coverage (values lang1) -> (values lang2) | |
(with-handlers ([exn:fail? (λ (exn) (display "covtest failed"))]) | |
{aq-covtest (string-append path1 "wiki.destxt") (string-append lang1 "-" lang2 ".automorf.bin") | |
hfst-covtest (string-append lang1 "-" lang2) . (string-append path1 "wiki.destxt")}) | |
echo | |
echo bible coverage (values lang2) -> (values lang1) | |
(with-handlers ([exn:fail? (λ (exn) (display "covtest failed"))]) | |
{aq-covtest (string-append path2 "bible.destxt") (string-append lang2 "-" lang1 ".automorf.bin") | |
hfst-covtest (string-append lang2 "-" lang1) . (string-append path2 "bible.destxt")}) | |
echo wikipedia coverage (values lang2) -> (values lang1) | |
(with-handlers ([exn:fail? (λ (exn) (display "covtest failed"))]) | |
{aq-covtest (string-append path2 "wiki.destxt") (string-append lang2 "-" lang1 ".automorf.bin") | |
hfst-covtest (string-append lang2 "-" lang1) . (string-append path2 "wiki.destxt")}) | |
printf "\n\n\n\n"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env bash | |
## ASSUME: - this script is placed into apertium-all/ | |
## - hfst-covtest is in the PATH | |
## USAGE: bash apertium-turkic-monolingual-stats.bash > /tmp/monolingual-log 2>&1 | |
## 3-letter language code => Wikipedia prefix | |
declare -A LANGS=( ["tat"]="tt" ["kaz"]="kk" ["kir"]="ky" ["crh"]="crh" ["tyv"]="tyv" | |
["bak"]="ba" ["chv"]="cv" ["uzb"]="uz" ["kaa"]="kaa" ["uig"]="ug" ["sah"]="sah" ["kum"]=false | |
["nog"]=false ["gag"]="gag" ["tuk"]="tk" ["tur"]="tr" ) | |
declare -A LANGSINCUBATOR=( ["krc"]="krc" ["alt"]=false ["kjh"]=false ["ota"]=false ["aze"]="az" ) | |
OUT=/tmp/monolingual-turkicstats | |
## ["incubator" / "languages"] iso3 => stats | |
stats () { | |
printf "$2: " >> $OUT | |
cd "apertium-$1/apertium-$2" | |
pwd | |
git checkout master | |
git pull | |
git log | head -n1 >> $OUT | |
printf "stems: " >> $OUT | |
# count stems | |
grep -E ":\w+.*;" "apertium-$2.$2.lexc" | grep -v "[<>]" | wc -l >> $OUT | |
./autogen.sh | |
make clean; make | |
## bibles are in https://github.com/taruen/apertiumpp/tree/master/data4apertium/corpora/bible/ | |
printf "bible coverage\n" >> $OUT | |
apertium-destxt -n ../../../data4apertium/corpora/bible/$2.txt > bible.destxt | |
aq-covtest bible.destxt $2.automorf.bin >> $OUT 2>&1 | |
hfst-covtest $2 . ../../../data4apertium/corpora/bible/$2.txt >> $OUT 2>&1 | |
printf "bible corpus size (tokens): " >> $OUT | |
wc -w ../../../data4apertium/corpora/bible/$2.txt >> $OUT | |
if [ "$1" == "languages" ]; then | |
prefix="${LANGS[$2]}" | |
else | |
prefix="${LANGSINCUBATOR[$2]}" | |
fi | |
if ! [[ "$prefix" == false ]]; then | |
printf "wikipedia coverage\n" >> $OUT | |
if ! [[ -f "wiki.destxt" ]]; then | |
python3 ~/local/bin/wikiextractor.py --infn "${prefix}wiki-20190901-pages-articles-multistream.xml.bz2" | |
apertium-destxt -n wiki.txt > wiki.destxt | |
fi | |
aq-covtest wiki.destxt $2.automorf.bin >> $OUT 2>&1 | |
hfst-covtest $2 . wiki.txt >> $OUT 2>&1 | |
printf "wikipedia corpus size (tokens): " >> $OUT | |
wc -w wiki.txt >> $OUT | |
fi | |
printf "\n" >> $OUT | |
cd ../.. | |
} | |
printf "" > $OUT | |
for l in "${!LANGS[@]}"; do stats "languages" "$l"; done | |
for l in "${!LANGSINCUBATOR[@]}"; do stats "incubator" "$l"; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chv tat | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 232a3031b106a312fe41ad21fea95db5851f0cb4 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-chv from ../../apertium-languages/apertium-chv/ | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "chv-tat.autobil.bin tat-chv.autobil.bin chv-tat.automorf.bin chv-tat.autopgen.bin chv-tat.autogen.bin chv-tat.t1x.bin chv-tat.t2x.bin tat-chv.automorf.bin tat-chv.autopgen.bin tat-chv.autogen.bin tat-chv.autogen.hfst tat-chv.t1x.bin tat-chv.t2x.bin chv-tat.rlx.bin tat-chv.rlx.bin chv-tat.lrx.bin tat-chv.lrx.bin" || rm -f chv-tat.autobil.bin tat-chv.autobil.bin chv-tat.automorf.bin chv-tat.autopgen.bin chv-tat.autogen.bin chv-tat.t1x.bin chv-tat.t2x.bin tat-chv.automorf.bin tat-chv.autopgen.bin tat-chv.autogen.bin tat-chv.autogen.hfst tat-chv.t1x.bin tat-chv.t2x.bin chv-tat.rlx.bin tat-chv.rlx.bin chv-tat.lrx.bin tat-chv.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-chv-tat.chv-tat.dix | |
lt-comp lr apertium-chv-tat.chv-tat.dix chv-tat.autobil.bin | |
main@standard 34104 59904 | |
apertium-validate-dictionary apertium-chv-tat.chv-tat.dix | |
lt-comp rl apertium-chv-tat.chv-tat.dix tat-chv.autobil.bin | |
main@standard 34106 59907 | |
if [ ! -d .deps ]; then mkdir .deps; fi | |
touch .deps/.d | |
lt-print chv-tat.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/chv-tat.autobil.att | |
hfst-txt2fst -e ε < .deps/chv-tat.autobil.att > .deps/chv-tat.autobil.hfst | |
hfst-project -p upper .deps/chv-tat.autobil.hfst > .deps/chv-tat.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/chv-tat.autobil.upper -2 .deps/any-symbol.hfst -o .deps/chv-tat.autobil.prefixes | |
zcat ../../apertium-languages/apertium-chv//chv.automorf.att.gz | hfst-txt2fst > .deps/chv.automorf.hfst | |
hfst-compose-intersect -1 .deps/chv.automorf.hfst -2 .deps/chv-tat.autobil.prefixes -o .deps/chv-tat.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<gen>") in | |
transducer in file .deps/chv.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/chv-tat.autobil.prefixes. | |
hfst-fst2txt -i .deps/chv-tat.automorf.trimmed -o .deps/chv-tat.automorf.trimmed.att | |
lt-comp lr .deps/chv-tat.automorf.trimmed.att chv-tat.automorf.bin | |
main@standard 31747 72044 | |
final@inconditional 22 45 | |
apertium-validate-dictionary ../../apertium-languages/apertium-chv//apertium-chv.post-chv.dix | |
lt-comp lr ../../apertium-languages/apertium-chv//apertium-chv.post-chv.dix chv-tat.autopgen.bin | |
main@standard 9 114 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin chv-tat.autogen.bin | |
apertium-validate-transfer apertium-chv-tat.chv-tat.t1x | |
apertium-preprocess-transfer apertium-chv-tat.chv-tat.t1x chv-tat.t1x.bin | |
apertium-validate-transfer apertium-chv-tat.chv-tat.t2x | |
apertium-preprocess-transfer apertium-chv-tat.chv-tat.t2x chv-tat.t2x.bin | |
lt-print tat-chv.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-chv.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-chv.autobil.att > .deps/tat-chv.autobil.hfst | |
hfst-project -p upper .deps/tat-chv.autobil.hfst > .deps/tat-chv.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-chv.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-chv.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-chv.autobil.prefixes -o .deps/tat-chv.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-chv.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-chv.automorf.trimmed -o .deps/tat-chv.automorf.trimmed.att | |
lt-comp lr .deps/tat-chv.automorf.trimmed.att tat-chv.automorf.bin | |
main@standard 128750 237561 | |
final@inconditional 751 1598 | |
apertium-validate-dictionary ../../apertium-languages/apertium-tat//apertium-tat.post-tat.dix | |
lt-comp lr ../../apertium-languages/apertium-tat//apertium-tat.post-tat.dix tat-chv.autopgen.bin | |
main@standard 9 114 | |
cp ../../apertium-languages/apertium-chv//chv.autogen.bin tat-chv.autogen.bin | |
cp ../../apertium-languages/apertium-chv//chv.autogen.hfst tat-chv.autogen.hfst | |
apertium-validate-transfer apertium-chv-tat.tat-chv.t1x | |
apertium-preprocess-transfer apertium-chv-tat.tat-chv.t1x tat-chv.t1x.bin | |
apertium-validate-transfer apertium-chv-tat.tat-chv.t2x | |
apertium-preprocess-transfer apertium-chv-tat.tat-chv.t2x tat-chv.t2x.bin | |
cg-comp ../../apertium-languages/apertium-chv//apertium-chv.chv.rlx chv-tat.rlx.bin | |
Sections: 2, Rules: 6, Sets: 16, Tags: 41 | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-chv.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
lrx-comp apertium-chv-tat.chv-tat.lrx chv-tat.lrx.bin | |
1: 22@23 | |
lrx-comp apertium-chv-tat.tat-chv.lrx tat-chv.lrx.bin | |
10: 142@157 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
cp *.mode modes/ | |
cp: der Aufruf von stat für '*.mode' ist nicht möglich: Datei oder Verzeichnis nicht gefunden | |
make: *** [Makefile:779: modes/chv-tat.mode] Fehler 1 | |
bible coverage chv -> tat | |
Number of tokenised words in the corpus: 196766 | |
Coverage: 86.62% | |
Top unknown words in the corpus: | |
1432 Иисус | |
462 Христос | |
379 чухне | |
272 Эй | |
248 Иисуса | |
236 пурте | |
162 нумай | |
136 Святой | |
125 Иоанн | |
123 Ҫавӑн | |
101 Акӑ | |
93 илтсен | |
92 никам | |
86 Моисей | |
86 пӗтӗмпех | |
80 нимӗн | |
78 иудейсем | |
77 ҫирӗплетсе | |
75 Израиль | |
75 кирек | |
Translation time: 2.321425199508667 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./chv-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage chv -> tat | |
Error: Malformed input stream.Number of tokenised words in the corpus: 693 | |
Coverage: 83.26% | |
Top unknown words in the corpus: | |
2 тĕрĕк | |
2 Хуть | |
2 тĕрлĕрен | |
2 идиомсем | |
2 Чăвашла | |
2 тĕпченин | |
2 чăвашла | |
2 Халь | |
2 каяп | |
2 вĕрентӳ | |
2 япон | |
1 пăлхар | |
1 пĕртен | |
1 Пăлхарăн | |
1 хазар | |
1 вирьял | |
1 мĕшĕнче | |
1 палăртаççĕ | |
1 нимпех | |
1 уйралса | |
Translation time: 0.0467984676361084 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./chv-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tat -> chv | |
Number of tokenised words in the corpus: 196071 | |
Coverage: 86.16% | |
Top unknown words in the corpus: | |
1351 Гайсә | |
1126 Аллаһы | |
420 чөнки | |
403 Мәсих | |
390 Чөнки | |
380 кебек | |
372 иман | |
290 Раббы | |
288 Изге | |
283 Аллаһының | |
264 Аллаһыга | |
196 Гайсәнең | |
190 Паул | |
161 Гайсәне | |
159 Петер | |
137 аркылы | |
118 изге | |
113 Яхъя | |
112 яһүдләр | |
109 барысы | |
Translation time: 4.255837917327881 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-chv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> chv | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 65.38% | |
Top unknown words in the corpus: | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 İnternetı | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.06401181221008301 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-chv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
chv tur | |
Bereits auf 'master' | |
M tur-chv.prob | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 32735fc46542d31cf619410c4d884701381b18e5 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-chv from ../../apertium-languages/apertium-chv/ | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "chv-tur.automorf.bin chv-tur.prob chv-tur.rlx.bin chv-tur.autobil.bin chv-tur.autolex.bin chv-tur.autogen.bin chv-tur.autopgen.bin chv-tur.t1x.bin chv-tur.t2x.bin chv-tur.t3x.bin tur-chv.automorf.bin tur-chv.prob tur-chv.rlx.bin tur-chv.autobil.bin tur-chv.autolex.bin tur-chv.autogen.bin tur-chv.autopgen.bin tur-chv.t1x.bin tur-chv.t2x.bin tur-chv.t3x.bin tur-chv.t4x.bin" || rm -f chv-tur.automorf.bin chv-tur.prob chv-tur.rlx.bin chv-tur.autobil.bin chv-tur.autolex.bin chv-tur.autogen.bin chv-tur.autopgen.bin chv-tur.t1x.bin chv-tur.t2x.bin chv-tur.t3x.bin tur-chv.automorf.bin tur-chv.prob tur-chv.rlx.bin tur-chv.autobil.bin tur-chv.autolex.bin tur-chv.autogen.bin tur-chv.autopgen.bin tur-chv.t1x.bin tur-chv.t2x.bin tur-chv.t3x.bin tur-chv.t4x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-chv//chv.automorf.att.gz | hfst-txt2fst > .deps/chv.automorf.hfst | |
apertium-validate-dictionary apertium-chv-tur.chv-tur.dix | |
lt-comp lr apertium-chv-tur.chv-tur.dix chv-tur.autobil.bin | |
main@standard 308 462 | |
nocomprovat@standard 21662 31014 | |
notincrp@standard 90770 112482 | |
lt-print chv-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/chv-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/chv-tur.autobil.att > .deps/chv-tur.autobil.hfst | |
hfst-project -p upper .deps/chv-tur.autobil.hfst > .deps/chv-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/chv-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/chv-tur.autobil.prefixes | |
hfst-compose-intersect -1 .deps/chv.automorf.hfst -2 .deps/chv-tur.autobil.prefixes -o .deps/chv-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<abbr>") in | |
transducer in file .deps/chv.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/chv-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/chv-tur.automorf.trimmed -o .deps/chv-tur.automorf.trimmed.att | |
lt-comp lr .deps/chv-tur.automorf.trimmed.att chv-tur.automorf.bin | |
main@standard 408 857 | |
final@inconditional 8 7 | |
cp ../../apertium-languages/apertium-chv//chv.prob chv-tur.prob | |
cg-comp ../../apertium-languages/apertium-chv//apertium-chv.chv.rlx chv-tur.rlx.bin | |
Sections: 2, Rules: 6, Sets: 16, Tags: 41 | |
lrx-comp apertium-chv-tur.chv-tur.lrx chv-tur.autolex.bin | |
4: 61@67 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin chv-tur.autogen.bin | |
cp ../../apertium-languages/apertium-tur//tur.autopgen.bin chv-tur.autopgen.bin | |
apertium-validate-transfer apertium-chv-tur.chv-tur.t1x | |
apertium-preprocess-transfer apertium-chv-tur.chv-tur.t1x chv-tur.t1x.bin | |
apertium-validate-interchunk apertium-chv-tur.chv-tur.t2x | |
apertium-preprocess-transfer apertium-chv-tur.chv-tur.t2x chv-tur.t2x.bin | |
apertium-validate-postchunk apertium-chv-tur.chv-tur.t3x | |
apertium-preprocess-transfer apertium-chv-tur.chv-tur.t3x chv-tur.t3x.bin | |
/bin/zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
apertium-validate-dictionary apertium-chv-tur.chv-tur.dix | |
lt-comp rl apertium-chv-tur.chv-tur.dix tur-chv.autobil.bin | |
main@standard 308 462 | |
nocomprovat@standard 21662 31014 | |
notincrp@standard 90770 112482 | |
lt-print tur-chv.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-chv.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-chv.autobil.att > .deps/tur-chv.autobil.hfst | |
hfst-project -p upper .deps/tur-chv.autobil.hfst > .deps/tur-chv.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-chv.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-chv.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-chv.autobil.prefixes -o .deps/tur-chv.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<quot>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-chv.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-chv.automorf.trimmed -o .deps/tur-chv.automorf.trimmed.att | |
lt-comp lr .deps/tur-chv.automorf.trimmed.att tur-chv.automorf.bin | |
main@standard 308 308 | |
final@inconditional 168 167 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-chv.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-chv.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-chv-tur.tur-chv.lrx tur-chv.autolex.bin | |
22: 328@369 | |
cp ../../apertium-languages/apertium-chv//chv.autogen.bin tur-chv.autogen.bin | |
cp ../../apertium-languages/apertium-chv//chv.autopgen.bin tur-chv.autopgen.bin | |
apertium-validate-transfer apertium-chv-tur.tur-chv.t1x | |
apertium-preprocess-transfer apertium-chv-tur.tur-chv.t1x tur-chv.t1x.bin | |
apertium-validate-interchunk apertium-chv-tur.tur-chv.t2x | |
apertium-preprocess-transfer apertium-chv-tur.tur-chv.t2x tur-chv.t2x.bin | |
apertium-validate-postchunk apertium-chv-tur.tur-chv.t3x | |
apertium-preprocess-transfer apertium-chv-tur.tur-chv.t3x tur-chv.t3x.bin | |
apertium-validate-transfer apertium-chv-tur.tur-chv.t4x | |
apertium-preprocess-transfer apertium-chv-tur.tur-chv.t4x tur-chv.t4x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/chv.automorf.bin.att .deps/chv.automorf.bin | |
main@standard 55063 140662 | |
final@inconditional 105 261 | |
lt-comp lr .deps/tur.automorf.bin.att .deps/tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
bible coverage chv -> tur | |
Number of tokenised words in the corpus: 142124 | |
Coverage: 0.18% | |
Top unknown words in the corpus: | |
2912 те | |
2665 та | |
1489 Турӑ | |
1432 Иисус | |
1224 вара | |
929 Вӑл | |
869 тесе | |
778 ҫапла | |
742 каланӑ | |
740 Эпӗ | |
667 тата | |
666 вӗсем | |
661 ӑна | |
660 пӗр | |
648 тесен | |
645 сире | |
623 вӑл | |
617 мар | |
610 мӗн | |
590 тенӗ | |
Translation time: 0.3829376697540283 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./chv-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage chv -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 537 | |
Coverage: 0.19% | |
Top unknown words in the corpus: | |
17 Чăваш | |
13 те | |
10 чĕлхи | |
8 тата | |
8 чăваш | |
6 чĕлхе | |
6 чĕлхипе | |
5 чĕлхине | |
5 çине | |
5 та | |
4 пĕр | |
4 ытти | |
4 пулать | |
4 хальхи | |
3 йышĕ | |
3 чĕлхин | |
3 пек | |
3 хушшинчи | |
3 усă | |
3 вара | |
Translation time: 0.00605320930480957 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./chv-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tur -> chv | |
Number of tokenised words in the corpus: 322696 | |
Coverage: 0.00% | |
Top unknown words in the corpus: | |
4764 ve | |
4035 bir | |
2738 için | |
2240 da | |
2098 de | |
1782 Tanrı | |
1686 Çünkü | |
1604 O | |
1562 nın | |
1505 İsrail | |
1460 gibi | |
1352 oğlu | |
1308 in | |
1238 ın | |
1236 bütün | |
1234 ya | |
1146 a | |
1124 bu | |
1115 dedi | |
1104 Ama | |
Translation time: 0.772911787033081 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-chv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> chv | |
Error: Malformed input stream.Number of tokenised words in the corpus: 14776 | |
Coverage: 0.01% | |
Top unknown words in the corpus: | |
404 ve | |
348 Han | |
331 Cengiz | |
293 bir | |
148 ın | |
145 ile | |
124 da | |
124 Temuçin | |
119 için | |
108 in | |
103 de | |
92 olan | |
91 olarak | |
85 bu | |
76 sonra | |
71 Çin | |
63 en | |
59 a | |
59 Bu | |
58 büyük | |
Translation time: 0.07053613662719727 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-chv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
crh tur | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit a48867598137559646089ed83798c2d37fb0c3a1 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-crh from ../../apertium-languages/apertium-crh/ | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "crh-tur.automorf.bin crh-tur.prob crh-tur.rlx.bin crh-tur.autobil.bin crh-tur.autolex.bin crh-tur.autogen.bin crh-tur.autopgen.bin crh-tur.t1x.bin crh-tur.t2x.bin crh-tur.t3x.bin crh-tur.t4x.bin tur-crh.automorf.bin tur-crh.prob tur-crh.rlx.bin tur-crh.autobil.bin tur-crh.autolex.bin tur-crh.autogen.bin tur-crh.autopgen.bin tur-crh.t1x.bin tur-crh.t2x.bin tur-crh.t4x.bin tur-crh.t3x.bin" || rm -f crh-tur.automorf.bin crh-tur.prob crh-tur.rlx.bin crh-tur.autobil.bin crh-tur.autolex.bin crh-tur.autogen.bin crh-tur.autopgen.bin crh-tur.t1x.bin crh-tur.t2x.bin crh-tur.t3x.bin crh-tur.t4x.bin tur-crh.automorf.bin tur-crh.prob tur-crh.rlx.bin tur-crh.autobil.bin tur-crh.autolex.bin tur-crh.autogen.bin tur-crh.autopgen.bin tur-crh.t1x.bin tur-crh.t2x.bin tur-crh.t4x.bin tur-crh.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-crh//crh.automorf.att.gz | hfst-txt2fst > .deps/crh.automorf.hfst | |
apertium-validate-dictionary apertium-crh-tur.crh-tur.dix | |
lt-comp lr apertium-crh-tur.crh-tur.dix crh-tur.autobil.bin | |
main@standard 12695 19382 | |
lt-print crh-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/crh-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/crh-tur.autobil.att > .deps/crh-tur.autobil.hfst | |
hfst-project -p upper .deps/crh-tur.autobil.hfst > .deps/crh-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/crh-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/crh-tur.autobil.prefixes | |
hfst-compose-intersect -1 .deps/crh.automorf.hfst -2 .deps/crh-tur.autobil.prefixes -o .deps/crh-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<apos>") in | |
transducer in file .deps/crh.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/crh-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/crh-tur.automorf.trimmed -o .deps/crh-tur.automorf.trimmed.att | |
lt-comp lr .deps/crh-tur.automorf.trimmed.att crh-tur.automorf.bin | |
main@standard 83327 232963 | |
final@inconditional 8152 14258 | |
cp ../../apertium-languages/apertium-crh//crh.prob crh-tur.prob | |
cg-comp ../../apertium-languages/apertium-crh//apertium-crh.crh.rlx crh-tur.rlx.bin | |
Sections: 3, Rules: 72, Sets: 92, Tags: 96 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-crh-tur.crh-tur.lrx crh-tur.autolex.bin | |
14: 298@335 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin crh-tur.autogen.bin | |
cp ../../apertium-languages/apertium-tur//tur.autopgen.bin crh-tur.autopgen.bin | |
apertium-validate-transfer apertium-crh-tur.crh-tur.t1x | |
apertium-preprocess-transfer apertium-crh-tur.crh-tur.t1x crh-tur.t1x.bin | |
apertium-validate-interchunk apertium-crh-tur.crh-tur.t2x | |
apertium-preprocess-transfer apertium-crh-tur.crh-tur.t2x crh-tur.t2x.bin | |
apertium-validate-postchunk apertium-crh-tur.crh-tur.t3x | |
apertium-preprocess-transfer apertium-crh-tur.crh-tur.t3x crh-tur.t3x.bin | |
apertium-validate-transfer apertium-crh-tur.crh-tur.t4x | |
apertium-preprocess-transfer apertium-crh-tur.crh-tur.t4x crh-tur.t4x.bin | |
/bin/zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
apertium-validate-dictionary apertium-crh-tur.crh-tur.dix | |
lt-comp rl apertium-crh-tur.crh-tur.dix tur-crh.autobil.bin | |
main@standard 12664 19312 | |
lt-print tur-crh.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-crh.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-crh.autobil.att > .deps/tur-crh.autobil.hfst | |
hfst-project -p upper .deps/tur-crh.autobil.hfst > .deps/tur-crh.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-crh.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-crh.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-crh.autobil.prefixes -o .deps/tur-crh.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<apos>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-crh.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-crh.automorf.trimmed -o .deps/tur-crh.automorf.trimmed.att | |
lt-comp lr .deps/tur-crh.automorf.trimmed.att tur-crh.automorf.bin | |
main@standard 14064 28608 | |
final@inconditional 2361 3820 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-crh.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-crh.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-crh-tur.tur-crh.lrx tur-crh.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-crh//crh.autogen.bin tur-crh.autogen.bin | |
cp ../../apertium-languages/apertium-crh//crh.autopgen.bin tur-crh.autopgen.bin | |
apertium-validate-transfer apertium-crh-tur.tur-crh.t1x | |
apertium-preprocess-transfer apertium-crh-tur.tur-crh.t1x tur-crh.t1x.bin | |
apertium-validate-interchunk apertium-crh-tur.tur-crh.t2x | |
apertium-preprocess-transfer apertium-crh-tur.tur-crh.t2x tur-crh.t2x.bin | |
apertium-validate-transfer apertium-crh-tur.tur-crh.t4x | |
apertium-preprocess-transfer apertium-crh-tur.tur-crh.t4x tur-crh.t4x.bin | |
apertium-validate-postchunk apertium-crh-tur.tur-crh.t3x | |
apertium-preprocess-transfer apertium-crh-tur.tur-crh.t3x tur-crh.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/crh.automorf.bin.att .deps/crh.automorf.bin | |
main@standard 112233 320968 | |
final@inconditional 424 1452 | |
lt-comp lr .deps/tur.automorf.bin.att .deps/tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
bible coverage crh -> tur | |
Number of tokenised words in the corpus: 108974 | |
Coverage: 31.35% | |
Top unknown words in the corpus: | |
1566 ве | |
1022 Иса | |
910 бир | |
880 деди | |
729 ичюн | |
677 исе | |
624 эди | |
578 да | |
556 деп | |
505 Мен | |
501 бу | |
464 де | |
420 адам | |
352 оларгъа | |
339 не | |
336 Онынъ | |
319 Алланынъ | |
315 сонъ | |
296 Бу | |
285 оны | |
Translation time: 0.35404133796691895 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./crh-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage crh -> tur | |
Number of tokenised words in the corpus: 4299 | |
Coverage: 88.95% | |
Top unknown words in the corpus: | |
12 Amdi | |
10 Abibulla | |
8 Odabaş | |
5 Giraybay | |
5 nemse | |
4 cenkâver | |
4 Ablây | |
4 افغانستان | |
4 Afġānistān | |
4 askeriy | |
3 ci | |
3 Abeşistan | |
3 Aluston | |
3 Prinsligi | |
2 ac | |
2 ae | |
2 af | |
2 ag | |
2 ai | |
2 am | |
Translation time: 0.17180109024047852 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./crh-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tur -> crh | |
Number of tokenised words in the corpus: 396976 | |
Coverage: 76.61% | |
Top unknown words in the corpus: | |
1782 Tanrı | |
1484 nın | |
1050 ın | |
921 a | |
832 Davut | |
671 dek | |
654 e | |
585 Yahuda | |
553 Ey | |
528 şöyle | |
505 Yeruşalim | |
487 Egemen | |
409 na | |
377 Tanrısı | |
375 la | |
359 i | |
355 Saul | |
347 ı | |
326 dan | |
318 ey | |
Translation time: 6.870069742202759 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-crh.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> crh | |
Error: Malformed input stream.Number of tokenised words in the corpus: 16235 | |
Coverage: 77.76% | |
Top unknown words in the corpus: | |
136 ın | |
124 Temuçin | |
51 a | |
40 ı | |
40 nin | |
39 i | |
34 Camuka | |
34 nın | |
33 Jin | |
33 Tuğrul | |
29 e | |
29 Cuci | |
27 Harezmşah | |
22 Cebe | |
17 Mukhulai | |
17 Subutay | |
16 Yesügey | |
15 Çağatay | |
14 Börte | |
14 Alaeddin | |
Translation time: 0.3534669876098633 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-crh.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz kaa | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 0ef5cdf2fe24b25d9c459751cfa1290f6214913f | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-kaa from ../../apertium-languages/apertium-kaa/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-kaa.autobil.bin kaa-kaz.autobil.bin kaz-kaa.automorf.bin kaz-kaa.autopgen.bin kaz-kaa.autogen.bin kaz-kaa.t1x.bin kaz-kaa.t2x.bin kaa-kaz.automorf.bin kaa-kaz.autopgen.bin kaa-kaz.autogen.bin kaa-kaz.t1x.bin kaa-kaz.t2x.bin kaz-kaa.rlx.bin kaa-kaz.rlx.bin kaz-kaa.lrx.bin kaa-kaz.lrx.bin" || rm -f kaz-kaa.autobil.bin kaa-kaz.autobil.bin kaz-kaa.automorf.bin kaz-kaa.autopgen.bin kaz-kaa.autogen.bin kaz-kaa.t1x.bin kaz-kaa.t2x.bin kaa-kaz.automorf.bin kaa-kaz.autopgen.bin kaa-kaz.autogen.bin kaa-kaz.t1x.bin kaa-kaz.t2x.bin kaz-kaa.rlx.bin kaa-kaz.rlx.bin kaz-kaa.lrx.bin kaa-kaz.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-kaa.kaz-kaa.dix | |
lt-comp lr apertium-kaz-kaa.kaz-kaa.dix kaz-kaa.autobil.bin | |
main@standard 10901 15943 | |
apertium-validate-dictionary apertium-kaz-kaa.kaz-kaa.dix | |
lt-comp rl apertium-kaz-kaa.kaz-kaa.dix kaa-kaz.autobil.bin | |
main@standard 10887 15926 | |
if [ ! -d .deps ]; then mkdir .deps; fi | |
touch .deps/.d | |
lt-print kaz-kaa.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-kaa.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-kaa.autobil.att > .deps/kaz-kaa.autobil.hfst | |
hfst-project -p upper .deps/kaz-kaa.autobil.hfst > .deps/kaz-kaa.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-kaa.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-kaa.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-kaa.autobil.prefixes -o .deps/kaz-kaa.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-kaa.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-kaa.automorf.trimmed -o .deps/kaz-kaa.automorf.trimmed.att | |
lt-comp lr .deps/kaz-kaa.automorf.trimmed.att kaz-kaa.automorf.bin | |
main@standard 181934 412306 | |
final@inconditional 2634 7472 | |
apertium-validate-dictionary apertium-kaz-kaa.post-kaz.dix | |
lt-comp lr apertium-kaz-kaa.post-kaz.dix kaz-kaa.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-kaa//kaa.autogen.bin kaz-kaa.autogen.bin | |
apertium-validate-transfer apertium-kaz-kaa.kaz-kaa.t1x | |
apertium-preprocess-transfer apertium-kaz-kaa.kaz-kaa.t1x kaz-kaa.t1x.bin | |
apertium-validate-transfer apertium-kaz-kaa.kaz-kaa.t2x | |
apertium-preprocess-transfer apertium-kaz-kaa.kaz-kaa.t2x kaz-kaa.t2x.bin | |
lt-print kaa-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaa-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/kaa-kaz.autobil.att > .deps/kaa-kaz.autobil.hfst | |
hfst-project -p upper .deps/kaa-kaz.autobil.hfst > .deps/kaa-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaa-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaa-kaz.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaa//kaa.automorf.att.gz | hfst-txt2fst > .deps/kaa.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaa.automorf.hfst -2 .deps/kaa-kaz.autobil.prefixes -o .deps/kaa-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<subst>") in | |
transducer in file .deps/kaa.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaa-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaa-kaz.automorf.trimmed -o .deps/kaa-kaz.automorf.trimmed.att | |
lt-comp lr .deps/kaa-kaz.automorf.trimmed.att kaa-kaz.automorf.bin | |
main@standard 11323 20644 | |
final@inconditional 444 1655 | |
apertium-validate-dictionary apertium-kaz-kaa.post-kaa.dix | |
lt-comp lr apertium-kaz-kaa.post-kaa.dix kaa-kaz.autopgen.bin | |
main@standard 9 114 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin kaa-kaz.autogen.bin | |
apertium-validate-transfer apertium-kaz-kaa.kaa-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-kaa.kaa-kaz.t1x kaa-kaz.t1x.bin | |
apertium-validate-transfer apertium-kaz-kaa.kaa-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-kaa.kaa-kaz.t2x kaa-kaz.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-kaa.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-kaa//apertium-kaa.kaa.rlx kaa-kaz.rlx.bin | |
Sections: 1, Rules: 1, Sets: 5, Tags: 23 | |
lrx-comp apertium-kaz-kaa.kaz-kaa.lrx kaz-kaa.lrx.bin | |
6: 99@109 | |
lrx-comp apertium-kaz-kaa.kaa-kaz.lrx kaa-kaz.lrx.bin | |
1: 19@19 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
cp *.mode modes/ | |
bible coverage kaz -> kaa | |
Number of tokenised words in the corpus: 214563 | |
Coverage: 92.41% | |
Top unknown words in the corpus: | |
1268 Иса | |
323 Мәсіх | |
284 Исаның | |
246 Мәсіхтің | |
211 Ізгі | |
175 Исаға | |
151 Исаны | |
150 Петір | |
136 Пауыл | |
129 Таурат | |
103 Мәсіхке | |
83 Жақия | |
79 Мұса | |
68 Ыбырайым | |
66 яһудилер | |
65 парызшылдар | |
64 Шимон | |
63 немесе | |
62 Иерусалимге | |
59 Мәсіхпен | |
Translation time: 6.704168081283569 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> kaa | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2952 | |
Coverage: 88.52% | |
Top unknown words in the corpus: | |
8 оңт | |
5 ның | |
5 Украина | |
5 солт | |
4 Каспий | |
3 Алтай | |
3 Сібір | |
3 Тянь | |
3 Шань | |
3 Еділ | |
3 одақтық | |
3 м | |
2 Қызылқұм | |
2 Сібірдің | |
2 мыңжылдық | |
2 тайпалық | |
2 ғұндар | |
2 аумағындағы | |
2 Оғыз | |
2 жоспарлық | |
Translation time: 0.2152414321899414 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kaa -> kaz | |
Number of tokenised words in the corpus: 188496 | |
Coverage: 88.24% | |
Top unknown words in the corpus: | |
1223 İysa | |
520 Muxaddes | |
408 ytkeni | |
353 Masix | |
346 A | |
294 İysanıń | |
214 z | |
212 hámme | |
183 Masixtıń | |
172 hámmesi | |
172 ǵo | |
168 İysaǵa | |
161 Petr | |
153 İysanı | |
148 Pavel | |
142 atırǵan | |
139 zi | |
112 qalay | |
108 Háy | |
106 muxaddes | |
Translation time: 2.959629535675049 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaa -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4 | |
Coverage: 100.00% | |
Top unknown words in the corpus: | |
Translation time: 0.010514259338378906 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz kir | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 34dd3475c6103f173f6f4b443155486a7231b0b7 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-kir from ../../apertium-languages/apertium-kir/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-kir.autobil.bin kir-kaz.autobil.bin kaz-kir.automorf.bin kaz-kir.autopgen.bin kaz-kir.autogen.bin kaz-kir.t1x.bin kaz-kir.t2x.bin kir-kaz.automorf.bin kir-kaz.autopgen.bin kir-kaz.autogen.bin kir-kaz.t1x.bin kir-kaz.t2x.bin kaz-kir.rlx.bin kir-kaz.rlx.bin kaz-kir.autolex.bin kir-kaz.autolex.bin kaz-kir.autoseq.bin kir-kaz.autoseq.bin kaz-kir.revautoseq.bin kir-kaz.revautoseq.bin" || rm -f kaz-kir.autobil.bin kir-kaz.autobil.bin kaz-kir.automorf.bin kaz-kir.autopgen.bin kaz-kir.autogen.bin kaz-kir.t1x.bin kaz-kir.t2x.bin kir-kaz.automorf.bin kir-kaz.autopgen.bin kir-kaz.autogen.bin kir-kaz.t1x.bin kir-kaz.t2x.bin kaz-kir.rlx.bin kir-kaz.rlx.bin kaz-kir.autolex.bin kir-kaz.autolex.bin kaz-kir.autoseq.bin kir-kaz.autoseq.bin kaz-kir.revautoseq.bin kir-kaz.revautoseq.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-kir.kaz-kir.dix | |
lt-comp lr apertium-kaz-kir.kaz-kir.dix kaz-kir.autobil.bin | |
main@standard 13606 31838 | |
apertium-validate-dictionary apertium-kaz-kir.kaz-kir.dix | |
lt-comp rl apertium-kaz-kir.kaz-kir.dix kir-kaz.autobil.bin | |
main@standard 13574 31782 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print kaz-kir.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-kir.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-kir.autobil.att > .deps/kaz-kir.autobil.hfst | |
hfst-project -p upper .deps/kaz-kir.autobil.hfst > .deps/kaz-kir.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-kir.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-kir.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-kir.autobil.prefixes -o .deps/kaz-kir.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-kir.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-kir.automorf.trimmed -o .deps/kaz-kir.automorf.trimmed.att | |
lt-comp lr .deps/kaz-kir.automorf.trimmed.att kaz-kir.automorf.bin | |
main@standard 167998 377602 | |
final@inconditional 41 67 | |
apertium-validate-dictionary apertium-kaz-kir.post-kaz.dix | |
lt-comp lr apertium-kaz-kir.post-kaz.dix kaz-kir.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-kir//kir.autogen.bin kaz-kir.autogen.bin | |
apertium-validate-transfer apertium-kaz-kir.kaz-kir.t1x | |
apertium-preprocess-transfer apertium-kaz-kir.kaz-kir.t1x kaz-kir.t1x.bin | |
apertium-validate-transfer apertium-kaz-kir.kaz-kir.t2x | |
apertium-preprocess-transfer apertium-kaz-kir.kaz-kir.t2x kaz-kir.t2x.bin | |
lt-print kir-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kir-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/kir-kaz.autobil.att > .deps/kir-kaz.autobil.hfst | |
hfst-project -p upper .deps/kir-kaz.autobil.hfst > .deps/kir-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kir-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kir-kaz.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kir//kir.automorf.att.gz | hfst-txt2fst > .deps/kir.automorf.hfst | |
hfst-compose-intersect -1 .deps/kir.automorf.hfst -2 .deps/kir-kaz.autobil.prefixes -o .deps/kir-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<percent>") in | |
transducer in file .deps/kir.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kir-kaz.autobil.prefixes. | |
hfst-fst2fst -O .deps/kir-kaz.automorf.trimmed -o kir-kaz.automorf.bin | |
hfst-fst2txt -i .deps/kir-kaz.automorf.trimmed -o .deps/kir-kaz.automorf.trimmed.att | |
lt-comp lr .deps/kir-kaz.automorf.trimmed.att kir-kaz.automorf.bin | |
main@standard 22176 46844 | |
final@inconditional 16 34 | |
apertium-validate-dictionary apertium-kaz-kir.post-kir.dix | |
lt-comp lr apertium-kaz-kir.post-kir.dix kir-kaz.autopgen.bin | |
main@standard 16 356 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin kir-kaz.autogen.bin | |
apertium-validate-transfer apertium-kaz-kir.kir-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-kir.kir-kaz.t1x kir-kaz.t1x.bin | |
apertium-validate-transfer apertium-kaz-kir.kir-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-kir.kir-kaz.t2x kir-kaz.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-kir.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-kir//apertium-kir.kir.rlx kir-kaz.rlx.bin | |
Sections: 3, Rules: 71, Sets: 102, Tags: 126 | |
lrx-comp apertium-kaz-kir.kaz-kir.lrx kaz-kir.autolex.bin | |
58: 963@1073 | |
lrx-comp apertium-kaz-kir.kir-kaz.lrx kir-kaz.autolex.bin | |
2: 25@26 | |
lsx-comp lr apertium-kaz-kir.kaz-kir.lsx kaz-kir.autoseq.bin | |
main@standard 47 50 | |
lsx-comp lr apertium-kaz-kir.kir-kaz.lsx kir-kaz.autoseq.bin | |
main@standard 97 108 | |
lsx-comp rl apertium-kaz-kir.kaz-kir.lsx kaz-kir.revautoseq.bin | |
main@standard 47 50 | |
lsx-comp rl apertium-kaz-kir.kir-kaz.lsx kir-kaz.revautoseq.bin | |
main@standard 97 108 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
apertium-createmodes.awk: modes/kaz-kir-autoseq.mode seen twice | |
apertium-createmodes.awk: modes/@kaz-kir-autoseq.mode seen twice | |
apertium-createmodes.awk: modes/kir-kaz-autoseq.mode seen twice | |
apertium-createmodes.awk: modes/@kir-kaz-autoseq.mode seen twice | |
bible coverage kaz -> kir | |
Number of tokenised words in the corpus: 214330 | |
Coverage: 92.64% | |
Top unknown words in the corpus: | |
66 яһудилер | |
65 парызшылдар | |
63 немесе | |
53 сиынып | |
50 сеніп | |
50 Пилат | |
49 өтінді | |
49 Жохан | |
48 бетер | |
44 Аумин | |
43 Ирод | |
43 ертіп | |
41 Яһудея | |
39 әзәзіл | |
36 яһудилердің | |
35 адалдығын | |
35 дүниелік | |
34 Матай | |
34 гөр | |
32 Ғалилея | |
Translation time: 6.111989498138428 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> kir | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2937 | |
Coverage: 90.19% | |
Top unknown words in the corpus: | |
5 ның | |
3 ге | |
3 одақтық | |
3 қалыптасқан | |
3 оңт | |
2 Қызылқұм | |
2 мыңжылдық | |
2 тайпалық | |
2 ғұндар | |
2 ғ | |
2 Оғыз | |
2 жоспарлық | |
2 өнеркәсіптік | |
2 өндірушісі | |
2 Беловеж | |
2 ны | |
2 сессиясында | |
2 құрлығының | |
2 с | |
2 қоңыржай | |
Translation time: 0.20651888847351074 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kir -> kaz | |
Number of tokenised words in the corpus: 203725 | |
Coverage: 89.17% | |
Top unknown words in the corpus: | |
1279 Ыйса | |
946 Кудай | |
597 Кудайдын | |
380 Машаяк | |
362 Ыйсанын | |
305 Кудайга | |
208 Ыйсаны | |
184 Ыйсага | |
174 Машаяктын | |
163 Пабыл | |
94 Кудайды | |
92 улам | |
90 Кудайдан | |
83 Жакыя | |
68 таалим | |
66 иудей | |
65 динкызматчылар | |
64 Машаякка | |
63 Пабылдын | |
62 фарисейлер | |
Translation time: 5.053615570068359 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kir -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 9337 | |
Coverage: 85.91% | |
Top unknown words in the corpus: | |
15 С | |
10 К | |
10 көл | |
10 Көлдүн | |
8 б | |
8 Б | |
7 комплекстик | |
7 Н | |
7 Көл | |
6 дээрлик | |
6 закон | |
6 СССРдин | |
6 ИАнын | |
6 Борбордук | |
6 Кыргызжер | |
6 Сулайман | |
5 П | |
5 В | |
5 ландшафт | |
5 ээлеген | |
Translation time: 0.25955748558044434 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz kum | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 061a225d1c6d235e04fd492f6064fa7616409281 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-kum from ../../apertium-languages/apertium-kum/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-kum.autobil.bin kum-kaz.autobil.bin kaz-kum.automorf.bin kaz-kum.autopgen.bin kaz-kum.autogen.bin kaz-kum.t1x.bin kaz-kum.t2x.bin kaz-kum.rlx.bin kum-kaz.rlx.bin kaz-kum.lrx.bin " || rm -f kaz-kum.autobil.bin kum-kaz.autobil.bin kaz-kum.automorf.bin kaz-kum.autopgen.bin kaz-kum.autogen.bin kaz-kum.t1x.bin kaz-kum.t2x.bin kaz-kum.rlx.bin kum-kaz.rlx.bin kaz-kum.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-kum.kaz-kum.dix | |
lt-comp lr apertium-kaz-kum.kaz-kum.dix kaz-kum.autobil.bin | |
main@standard 1671 2288 | |
apertium-validate-dictionary apertium-kaz-kum.kaz-kum.dix | |
lt-comp rl apertium-kaz-kum.kaz-kum.dix kum-kaz.autobil.bin | |
main@standard 1653 2265 | |
if [ ! -d .deps ]; then mkdir .deps; fi | |
touch .deps/.d | |
lt-print kaz-kum.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-kum.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-kum.autobil.att > .deps/kaz-kum.autobil.hfst | |
hfst-project -p upper .deps/kaz-kum.autobil.hfst > .deps/kaz-kum.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-kum.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-kum.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-kum.autobil.prefixes -o .deps/kaz-kum.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-kum.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-kum.automorf.trimmed -o .deps/kaz-kum.automorf.trimmed.att | |
lt-comp lr .deps/kaz-kum.automorf.trimmed.att kaz-kum.automorf.bin | |
main@standard 38123 86166 | |
final@inconditional 2616 7439 | |
apertium-validate-dictionary ../../apertium-languages/apertium-kaz//apertium-kaz.post-kaz.dix | |
lt-comp lr ../../apertium-languages/apertium-kaz//apertium-kaz.post-kaz.dix kaz-kum.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-kum//kum.autogen.bin kaz-kum.autogen.bin | |
apertium-validate-transfer apertium-kaz-kum.kaz-kum.t1x | |
apertium-preprocess-transfer apertium-kaz-kum.kaz-kum.t1x kaz-kum.t1x.bin | |
apertium-validate-transfer apertium-kaz-kum.kaz-kum.t2x | |
apertium-preprocess-transfer apertium-kaz-kum.kaz-kum.t2x kaz-kum.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-kum.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-kum//apertium-kum.kum.rlx kum-kaz.rlx.bin | |
Sections: 1, Rules: 6, Sets: 20, Tags: 32 | |
lrx-comp apertium-kaz-kum.kaz-kum.lrx kaz-kum.lrx.bin | |
2: 36@40 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
cp *.mode modes/ | |
cp: der Aufruf von stat für '*.mode' ist nicht möglich: Datei oder Verzeichnis nicht gefunden | |
make: *** [Makefile:781: modes/kaz-kum.mode] Fehler 1 | |
bible coverage kaz -> kum | |
Number of tokenised words in the corpus: 175579 | |
Coverage: 56.36% | |
Top unknown words in the corpus: | |
1268 Иса | |
411 туралы | |
383 сендер | |
371 рухани | |
349 Себебі | |
339 арқылы | |
323 Мәсіх | |
309 Киелі | |
308 сендерге | |
284 Исаның | |
270 Иеміз | |
246 Мәсіхтің | |
238 Сондықтан | |
219 әрі | |
211 Ізгі | |
211 күні | |
196 сияқты | |
195 діни | |
194 біз | |
188 Алайда | |
Translation time: 3.2530195713043213 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kum.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> kum | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2675 | |
Coverage: 48.64% | |
Top unknown words in the corpus: | |
11 км | |
10 бойынша | |
8 КСРО | |
8 оңт | |
7 негізгі | |
7 тайпалар | |
6 Қазақ | |
6 экономикалық | |
6 туралы | |
6 жылғы | |
6 желтоқсанда | |
6 басшылары | |
5 бөлігін | |
5 ның | |
5 феодалдық | |
5 Украина | |
5 солт | |
4 арқылы | |
4 оңтүстік | |
4 Елдің | |
Translation time: 0.08241939544677734 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-kum.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kum -> kaz | |
[Errno 2] No such file or directory: 'kum-kaz.automorf.bin' | |
wikipedia coverage kum -> kaz | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-kum/wiki.destxt' | |
kaz sah | |
Bereits auf 'master' | |
M ap_include.am | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 176f11224e72a9789db879fe7e88ebaf93d124db | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-sah from ../../apertium-languages/apertium-sah/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-sah.automorf.bin kaz-sah.prob kaz-sah.rlx.bin kaz-sah.autobil.bin kaz-sah.autolex.bin kaz-sah.autogen.bin kaz-sah.autopgen.bin kaz-sah.t1x.bin kaz-sah.t2x.bin kaz-sah.t3x.bin kaz-sah.t4x.bin sah-kaz.automorf.bin sah-kaz.prob sah-kaz.rlx.bin sah-kaz.autobil.bin sah-kaz.autolex.bin sah-kaz.autogen.bin sah-kaz.autopgen.bin sah-kaz.t1x.bin sah-kaz.t2x.bin sah-kaz.t3x.bin" || rm -f kaz-sah.automorf.bin kaz-sah.prob kaz-sah.rlx.bin kaz-sah.autobil.bin kaz-sah.autolex.bin kaz-sah.autogen.bin kaz-sah.autopgen.bin kaz-sah.t1x.bin kaz-sah.t2x.bin kaz-sah.t3x.bin kaz-sah.t4x.bin sah-kaz.automorf.bin sah-kaz.prob sah-kaz.rlx.bin sah-kaz.autobil.bin sah-kaz.autolex.bin sah-kaz.autogen.bin sah-kaz.autopgen.bin sah-kaz.t1x.bin sah-kaz.t2x.bin sah-kaz.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
apertium-validate-dictionary apertium-kaz-sah.kaz-sah.dix | |
lt-comp lr apertium-kaz-sah.kaz-sah.dix kaz-sah.autobil.bin | |
main@standard 8508 11300 | |
lt-print kaz-sah.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-sah.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-sah.autobil.att > .deps/kaz-sah.autobil.hfst | |
hfst-project -p upper .deps/kaz-sah.autobil.hfst > .deps/kaz-sah.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-sah.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-sah.autobil.prefixes | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-sah.autobil.prefixes -o .deps/kaz-sah.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-sah.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-sah.automorf.trimmed -o .deps/kaz-sah.automorf.trimmed.att | |
lt-comp lr .deps/kaz-sah.automorf.trimmed.att kaz-sah.automorf.bin | |
main@standard 86196 189326 | |
final@inconditional 28 38 | |
cp ../../apertium-languages/apertium-kaz//kaz.prob kaz-sah.prob | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-sah.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-sah.kaz-sah.lrx kaz-sah.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-sah//sah.autogen.bin kaz-sah.autogen.bin | |
cp ../../apertium-languages/apertium-sah//sah.autopgen.bin kaz-sah.autopgen.bin | |
apertium-validate-transfer apertium-kaz-sah.kaz-sah.t1x | |
apertium-preprocess-transfer apertium-kaz-sah.kaz-sah.t1x kaz-sah.t1x.bin | |
apertium-validate-interchunk apertium-kaz-sah.kaz-sah.t2x | |
apertium-preprocess-transfer apertium-kaz-sah.kaz-sah.t2x kaz-sah.t2x.bin | |
apertium-validate-postchunk apertium-kaz-sah.kaz-sah.t3x | |
apertium-preprocess-transfer apertium-kaz-sah.kaz-sah.t3x kaz-sah.t3x.bin | |
apertium-validate-transfer apertium-kaz-sah.kaz-sah.t4x | |
apertium-preprocess-transfer apertium-kaz-sah.kaz-sah.t4x kaz-sah.t4x.bin | |
/bin/zcat ../../apertium-languages/apertium-sah//sah.automorf.att.gz | hfst-txt2fst > .deps/sah.automorf.hfst | |
apertium-validate-dictionary apertium-kaz-sah.kaz-sah.dix | |
lt-comp rl apertium-kaz-sah.kaz-sah.dix sah-kaz.autobil.bin | |
main@standard 8502 11291 | |
lt-print sah-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/sah-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/sah-kaz.autobil.att > .deps/sah-kaz.autobil.hfst | |
hfst-project -p upper .deps/sah-kaz.autobil.hfst > .deps/sah-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/sah-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/sah-kaz.autobil.prefixes | |
hfst-compose-intersect -1 .deps/sah.automorf.hfst -2 .deps/sah-kaz.autobil.prefixes -o .deps/sah-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<apos>") in | |
transducer in file .deps/sah.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/sah-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/sah-kaz.automorf.trimmed -o .deps/sah-kaz.automorf.trimmed.att | |
lt-comp lr .deps/sah-kaz.automorf.trimmed.att sah-kaz.automorf.bin | |
main@standard 17257 40258 | |
final@inconditional 549 1631 | |
cp ../../apertium-languages/apertium-sah//sah.prob sah-kaz.prob | |
cg-comp ../../apertium-languages/apertium-sah//apertium-sah.sah.rlx sah-kaz.rlx.bin | |
Sections: 1, Rules: 2, Sets: 7, Tags: 17 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-sah.sah-kaz.lrx sah-kaz.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin sah-kaz.autogen.bin | |
cp ../../apertium-languages/apertium-kaz//kaz.autopgen.bin sah-kaz.autopgen.bin | |
apertium-validate-transfer apertium-kaz-sah.sah-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-sah.sah-kaz.t1x sah-kaz.t1x.bin | |
apertium-validate-interchunk apertium-kaz-sah.sah-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-sah.sah-kaz.t2x sah-kaz.t2x.bin | |
apertium-validate-postchunk apertium-kaz-sah.sah-kaz.t3x | |
apertium-preprocess-transfer apertium-kaz-sah.sah-kaz.t3x sah-kaz.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/kaz.automorf.bin.att .deps/kaz.automorf.bin | |
main@standard 380438 893117 | |
final@inconditional 2645 7326 | |
lt-comp lr .deps/sah.automorf.bin.att .deps/sah.automorf.bin | |
main@standard 17256 40256 | |
final@inconditional 543 1625 | |
bible coverage kaz -> sah | |
Number of tokenised words in the corpus: 174579 | |
Coverage: 67.93% | |
Top unknown words in the corpus: | |
1268 Иса | |
825 Құдайдың | |
762 Құдай | |
324 1 | |
323 Мәсіх | |
306 2 | |
298 Құдайға | |
284 3 | |
284 Исаның | |
279 4 | |
276 5 | |
272 6 | |
269 7 | |
269 10 | |
267 8 | |
267 9 | |
267 11 | |
265 12 | |
264 13 | |
252 14 | |
Translation time: 4.182401418685913 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-sah.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> sah | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2675 | |
Coverage: 71.93% | |
Top unknown words in the corpus: | |
11 1991 | |
8 1 | |
8 оңт | |
7 тайпалар | |
5 2 | |
5 3 | |
5 феодалдық | |
5 30 | |
5 10 | |
5 солт | |
4 шығысында | |
4 70 | |
4 60 | |
4 салдарынан | |
4 мыңдаған | |
3 ге | |
3 созылып | |
3 өкілдері | |
3 16 | |
3 яғни | |
Translation time: 0.13700127601623535 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-sah.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage sah -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 1107 | |
Coverage: 91.06% | |
Top unknown words in the corpus: | |
5 Апостоллар | |
3 Евангелие | |
2 Спасскай | |
2 миссионердар | |
2 Аланд | |
1 Annotation | |
1 НОВЫЙ | |
1 ЗАВЕТ | |
1 якутском | |
1 языке | |
1 in | |
1 c | |
1 эҕэрдэлиибин | |
1 Тэнгри | |
1 чочуобунаны | |
1 сүрэхтэнэр | |
1 бэргэһэлэнэр | |
1 Дежнев | |
1 Абакайааданы | |
1 бэргэһэлээбит | |
Translation time: 0.04111599922180176 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./sah-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage sah -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 3672 | |
Coverage: 90.36% | |
Top unknown words in the corpus: | |
5 Орест | |
4 якутского | |
4 языка | |
3 Вейсенбург | |
2 Ромулус | |
2 киириитиэр | |
2 саарар | |
2 фон | |
2 монастырыгар | |
2 рукопись | |
2 этилэр | |
2 биллибитэ | |
2 К | |
2 Пеллерин | |
2 Кустуктуурап | |
2 буоланнар | |
2 Максимовы | |
2 Маҥаачыйа | |
2 Поликарпов | |
2 сорохторун | |
Translation time: 0.08243060111999512 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./sah-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz tat | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit ea9afd606afe03df1f9c7c6adc2affd0ef72500a | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-tat.autobil.bin tat-kaz.autobil.bin kaz-tat.automorf.bin kaz-tat.autopgen.bin kaz-tat.autogen.bin kaz-tat.t1x.bin kaz-tat.t2x.bin tat-kaz.automorf.bin tat-kaz.autopgen.bin tat-kaz.autogen.bin tat-kaz.t1x.bin tat-kaz.t2x.bin kaz-tat.rlx.bin tat-kaz.rlx.bin kaz-tat.lrx.bin tat-kaz.lrx.bin" || rm -f kaz-tat.autobil.bin tat-kaz.autobil.bin kaz-tat.automorf.bin kaz-tat.autopgen.bin kaz-tat.autogen.bin kaz-tat.t1x.bin kaz-tat.t2x.bin tat-kaz.automorf.bin tat-kaz.autopgen.bin tat-kaz.autogen.bin tat-kaz.t1x.bin tat-kaz.t2x.bin kaz-tat.rlx.bin tat-kaz.rlx.bin kaz-tat.lrx.bin tat-kaz.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-tat.kaz-tat.dix | |
lt-comp lr apertium-kaz-tat.kaz-tat.dix kaz-tat.autobil.bin | |
main@standard 18888 36358 | |
apertium-validate-dictionary apertium-kaz-tat.kaz-tat.dix | |
lt-comp rl apertium-kaz-tat.kaz-tat.dix tat-kaz.autobil.bin | |
main@standard 18854 36285 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print kaz-tat.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-tat.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-tat.autobil.att > .deps/kaz-tat.autobil.hfst | |
hfst-project -p upper .deps/kaz-tat.autobil.hfst > .deps/kaz-tat.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-tat.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-tat.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-tat.autobil.prefixes -o .deps/kaz-tat.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<percent>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-tat.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-tat.automorf.trimmed -o .deps/kaz-tat.automorf.trimmed.att | |
lt-comp lr .deps/kaz-tat.automorf.trimmed.att kaz-tat.automorf.bin | |
main@standard 210972 478879 | |
final@inconditional 2596 7002 | |
apertium-validate-dictionary apertium-kaz-tat.post-kaz.dix | |
lt-comp lr apertium-kaz-tat.post-kaz.dix kaz-tat.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin kaz-tat.autogen.bin | |
apertium-validate-transfer apertium-kaz-tat.kaz-tat.t1x | |
apertium-preprocess-transfer apertium-kaz-tat.kaz-tat.t1x kaz-tat.t1x.bin | |
apertium-validate-transfer apertium-kaz-tat.kaz-tat.t2x | |
apertium-preprocess-transfer apertium-kaz-tat.kaz-tat.t2x kaz-tat.t2x.bin | |
lt-print tat-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-kaz.autobil.att > .deps/tat-kaz.autobil.hfst | |
hfst-project -p upper .deps/tat-kaz.autobil.hfst > .deps/tat-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-kaz.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-kaz.autobil.prefixes -o .deps/tat-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-kaz.automorf.trimmed -o .deps/tat-kaz.automorf.trimmed.att | |
lt-comp lr .deps/tat-kaz.automorf.trimmed.att tat-kaz.automorf.bin | |
main@standard 97321 178518 | |
final@inconditional 755 1606 | |
apertium-validate-dictionary apertium-kaz-tat.post-tat.dix | |
lt-comp lr apertium-kaz-tat.post-tat.dix tat-kaz.autopgen.bin | |
main@standard 16 356 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin tat-kaz.autogen.bin | |
apertium-validate-transfer apertium-kaz-tat.tat-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-tat.tat-kaz.t1x tat-kaz.t1x.bin | |
apertium-validate-transfer apertium-kaz-tat.tat-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-tat.tat-kaz.t2x tat-kaz.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-tat.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-kaz.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
lrx-comp apertium-kaz-tat.kaz-tat.lrx kaz-tat.lrx.bin | |
43: 1009@1120 | |
lrx-comp apertium-kaz-tat.tat-kaz.lrx tat-kaz.lrx.bin | |
3: 49@52 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage kaz -> tat | |
Number of tokenised words in the corpus: 214397 | |
Coverage: 95.03% | |
Top unknown words in the corpus: | |
66 яһудилер | |
65 парызшылдар | |
63 немесе | |
50 Пилат | |
49 Жохан | |
44 Аумин | |
43 Ирод | |
41 Яһудея | |
39 әзәзіл | |
36 яһудилердің | |
35 дүниелік | |
34 гөр | |
32 Ғалилея | |
31 уағыздап | |
29 екеуі | |
29 кейбіреулері | |
29 Саул | |
29 Қорынттықтарга | |
27 Лұқа | |
26 ұлылығын | |
Translation time: 7.922478675842285 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> tat | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2937 | |
Coverage: 92.17% | |
Top unknown words in the corpus: | |
5 ның | |
3 ге | |
3 одақтық | |
3 оңт | |
2 Қызылқұм | |
2 мыңжылдық | |
2 тайпалық | |
2 ғұндар | |
2 Оғыз | |
2 жоспарлық | |
2 өнеркәсіптік | |
2 Беловеж | |
2 ны | |
2 сессиясында | |
2 құрлығының | |
2 қоңыржай | |
2 респ | |
2 жоғ | |
2 өкілеттігі | |
2 мореналық | |
Translation time: 0.23727869987487793 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tat -> kaz | |
Number of tokenised words in the corpus: 194164 | |
Coverage: 93.57% | |
Top unknown words in the corpus: | |
190 Паул | |
159 Петер | |
112 яһүдләр | |
108 берсе | |
91 яһүд | |
90 канун | |
80 әллә | |
74 карата | |
73 бөек | |
66 Шимун | |
60 Пилат | |
57 каршында | |
55 Яһүд | |
52 явыз | |
52 фарисейләр | |
49 Һируд | |
49 һәммәсе | |
49 хачка | |
47 Аннары | |
47 канунчылар | |
Translation time: 5.087080955505371 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 65.38% | |
Top unknown words in the corpus: | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 İnternetı | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.05028939247131348 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz tur | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 5939a3b8ca9a9331bc8eb1c9ec9e3824e0fa2aaa | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-tur.automorf.bin kaz-tur.prob kaz-tur.rlx.bin kaz-tur.autobil.bin kaz-tur.autolex.bin kaz-tur.autogen.bin kaz-tur.autopgen.bin kaz-tur.t1x.bin kaz-tur.t2x.bin kaz-tur.t3x.bin kaz-tur.t4x.bin tur-kaz.automorf.bin tur-kaz.prob tur-kaz.rlx.bin tur-kaz.autobil.bin tur-kaz.autolex.bin tur-kaz.autogen.bin tur-kaz.t1x.bin tur-kaz.t2x.bin tur-kaz.t3x.bin" || rm -f kaz-tur.automorf.bin kaz-tur.prob kaz-tur.rlx.bin kaz-tur.autobil.bin kaz-tur.autolex.bin kaz-tur.autogen.bin kaz-tur.autopgen.bin kaz-tur.t1x.bin kaz-tur.t2x.bin kaz-tur.t3x.bin kaz-tur.t4x.bin tur-kaz.automorf.bin tur-kaz.prob tur-kaz.rlx.bin tur-kaz.autobil.bin tur-kaz.autolex.bin tur-kaz.autogen.bin tur-kaz.t1x.bin tur-kaz.t2x.bin tur-kaz.t3x.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-tur.kaz-tur.dix | |
lt-comp lr apertium-kaz-tur.kaz-tur.dix kaz-tur.autobil.bin | |
main@standard 20029 27244 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print kaz-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-tur.autobil.att > .deps/kaz-tur.autobil.hfst | |
hfst-project -p upper .deps/kaz-tur.autobil.hfst > .deps/kaz-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-tur.autobil.prefixes | |
/bin/zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-tur.autobil.prefixes -o .deps/kaz-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-tur.automorf.trimmed -o .deps/kaz-tur.automorf.trimmed.att | |
lt-comp lr .deps/kaz-tur.automorf.trimmed.att kaz-tur.automorf.bin | |
main@standard 162122 359659 | |
final@inconditional 41 68 | |
cp ../../apertium-languages/apertium-kaz//kaz.prob kaz-tur.prob | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-tur.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-tur.kaz-tur.lrx kaz-tur.autolex.bin | |
95: 2190@2458 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin kaz-tur.autogen.bin | |
cp ../../apertium-languages/apertium-tur//tur.autopgen.bin kaz-tur.autopgen.bin | |
apertium-validate-transfer apertium-kaz-tur.kaz-tur.t1x | |
apertium-preprocess-transfer apertium-kaz-tur.kaz-tur.t1x kaz-tur.t1x.bin | |
Warning (717): Paths to rule 5 blocked by rule 4. | |
Warning (958): Paths to rule 13 blocked by rule 12. | |
Warning (1602): Paths to rule 34 blocked by rule 33. | |
Warning (1710): Paths to rule 36 blocked by rule 35. | |
Warning (2020): Paths to rule 46 blocked by rule 45. | |
Warning (2080): Paths to rule 48 blocked by rule 47. | |
Warning (2839): Paths to rule 71 blocked by rule 70. | |
Warning (2839): Paths to rule 71 blocked by rule 70. | |
apertium-validate-interchunk apertium-kaz-tur.kaz-tur.t2x | |
apertium-preprocess-transfer apertium-kaz-tur.kaz-tur.t2x kaz-tur.t2x.bin | |
apertium-validate-postchunk apertium-kaz-tur.kaz-tur.t3x | |
apertium-preprocess-transfer apertium-kaz-tur.kaz-tur.t3x kaz-tur.t3x.bin | |
apertium-validate-transfer apertium-kaz-tur.kaz-tur.t4x | |
apertium-preprocess-transfer apertium-kaz-tur.kaz-tur.t4x kaz-tur.t4x.bin | |
apertium-validate-dictionary apertium-kaz-tur.kaz-tur.dix | |
lt-comp rl apertium-kaz-tur.kaz-tur.dix tur-kaz.autobil.bin | |
main@standard 19995 27192 | |
lt-print tur-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-kaz.autobil.att > .deps/tur-kaz.autobil.hfst | |
hfst-project -p upper .deps/tur-kaz.autobil.hfst > .deps/tur-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-kaz.autobil.prefixes | |
/bin/zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-kaz.autobil.prefixes -o .deps/tur-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<quot>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-kaz.automorf.trimmed -o .deps/tur-kaz.automorf.trimmed.att | |
lt-comp lr .deps/tur-kaz.automorf.trimmed.att tur-kaz.automorf.bin | |
main@standard 12675 24541 | |
final@inconditional 4052 7570 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-kaz.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-kaz.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-tur.tur-kaz.lrx tur-kaz.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin tur-kaz.autogen.bin | |
apertium-validate-transfer apertium-kaz-tur.tur-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-tur.tur-kaz.t1x tur-kaz.t1x.bin | |
apertium-validate-interchunk apertium-kaz-tur.tur-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-tur.tur-kaz.t2x tur-kaz.t2x.bin | |
apertium-validate-postchunk apertium-kaz-tur.tur-kaz.t3x | |
apertium-preprocess-transfer apertium-kaz-tur.tur-kaz.t3x tur-kaz.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage kaz -> tur | |
Number of tokenised words in the corpus: 214376 | |
Coverage: 89.05% | |
Top unknown words in the corpus: | |
1268 Иса | |
323 Мәсіх | |
309 Киелі | |
284 Исаның | |
246 Мәсіхтің | |
211 Ізгі | |
175 Исаға | |
151 Исаны | |
150 Петір | |
136 Пауыл | |
129 Таурат | |
127 шынайы | |
106 күнәкар | |
103 Мәсіхке | |
89 киелі | |
88 яғни | |
83 Жақия | |
83 әркім | |
79 әділ | |
79 Мұса | |
Translation time: 7.062980890274048 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2936 | |
Coverage: 88.28% | |
Top unknown words in the corpus: | |
8 оңт | |
5 феодалдық | |
5 солт | |
4 мыңдаған | |
3 ге | |
3 Тянь | |
3 Шань | |
3 Еділ | |
3 яғни | |
3 VI | |
3 Социалистік | |
3 жж | |
3 одақтық | |
3 ядролық | |
3 м | |
3 континенттік | |
2 Қызылқұм | |
2 тайпалық | |
2 ғұндар | |
2 әкімшілік | |
Translation time: 0.20586729049682617 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tur -> kaz | |
Number of tokenised words in the corpus: 493813 | |
Coverage: 82.25% | |
Top unknown words in the corpus: | |
1782 Tanrı | |
1686 Çünkü | |
1562 nın | |
1150 ın | |
1044 a | |
912 ki | |
832 Davut | |
620 üzerine | |
585 Yahuda | |
553 Ey | |
505 Yeruşalim | |
487 Egemen | |
448 Musa | |
409 na | |
390 la | |
377 Tanrısı | |
376 ı | |
362 i | |
355 Saul | |
340 dan | |
Translation time: 7.328187942504883 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 16959 | |
Coverage: 77.57% | |
Top unknown words in the corpus: | |
141 ın | |
124 Temuçin | |
53 a | |
41 ı | |
40 i | |
40 nin | |
34 Camuka | |
34 nın | |
33 Jin | |
33 Tuğrul | |
29 Cuci | |
28 Kırım | |
27 soyundan | |
27 Harezmşah | |
24 üzerine | |
22 Cebe | |
22 Hanlığı | |
17 Mukhulai | |
17 Subutay | |
16 Yesügey | |
Translation time: 0.4011809825897217 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz tyv | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit ba80cf81d1ca88b2b35fb961f2d746f8f28e42a2 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-tyv from ../../apertium-languages/apertium-tyv/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-tyv.automorf.bin kaz-tyv.prob kaz-tyv.rlx.bin kaz-tyv.autobil.bin kaz-tyv.autolex.bin kaz-tyv.autogen.bin kaz-tyv.autopgen.bin kaz-tyv.t1x.bin kaz-tyv.t2x.bin kaz-tyv.t3x.bin kaz-tyv.t4x.bin tyv-kaz.automorf.bin tyv-kaz.prob tyv-kaz.rlx.bin tyv-kaz.autobil.bin tyv-kaz.autolex.bin tyv-kaz.autogen.bin tyv-kaz.autopgen.bin tyv-kaz.t1x.bin tyv-kaz.t2x.bin tyv-kaz.t3x.bin" || rm -f kaz-tyv.automorf.bin kaz-tyv.prob kaz-tyv.rlx.bin kaz-tyv.autobil.bin kaz-tyv.autolex.bin kaz-tyv.autogen.bin kaz-tyv.autopgen.bin kaz-tyv.t1x.bin kaz-tyv.t2x.bin kaz-tyv.t3x.bin kaz-tyv.t4x.bin tyv-kaz.automorf.bin tyv-kaz.prob tyv-kaz.rlx.bin tyv-kaz.autobil.bin tyv-kaz.autolex.bin tyv-kaz.autogen.bin tyv-kaz.autopgen.bin tyv-kaz.t1x.bin tyv-kaz.t2x.bin tyv-kaz.t3x.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-tyv.kaz-tyv.dix | |
lt-comp lr apertium-kaz-tyv.kaz-tyv.dix kaz-tyv.autobil.bin | |
main@standard 465 671 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print kaz-tyv.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-tyv.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-tyv.autobil.att > .deps/kaz-tyv.autobil.hfst | |
hfst-project -p upper .deps/kaz-tyv.autobil.hfst > .deps/kaz-tyv.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-tyv.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-tyv.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-tyv.autobil.prefixes -o .deps/kaz-tyv.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-tyv.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-tyv.automorf.trimmed -o .deps/kaz-tyv.automorf.trimmed.att | |
lt-comp lr .deps/kaz-tyv.automorf.trimmed.att kaz-tyv.automorf.bin | |
main@standard 21219 48771 | |
final@inconditional 2584 6986 | |
cp ../../apertium-languages/apertium-kaz//kaz.prob kaz-tyv.prob | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-tyv.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-tyv.kaz-tyv.lrx kaz-tyv.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-tyv//tyv.autogen.bin kaz-tyv.autogen.bin | |
cp ../../apertium-languages/apertium-tyv//tyv.autopgen.bin kaz-tyv.autopgen.bin | |
apertium-validate-transfer apertium-kaz-tyv.kaz-tyv.t1x | |
apertium-preprocess-transfer apertium-kaz-tyv.kaz-tyv.t1x kaz-tyv.t1x.bin | |
apertium-validate-interchunk apertium-kaz-tyv.kaz-tyv.t2x | |
apertium-preprocess-transfer apertium-kaz-tyv.kaz-tyv.t2x kaz-tyv.t2x.bin | |
apertium-validate-postchunk apertium-kaz-tyv.kaz-tyv.t3x | |
apertium-preprocess-transfer apertium-kaz-tyv.kaz-tyv.t3x kaz-tyv.t3x.bin | |
apertium-validate-transfer apertium-kaz-tyv.kaz-tyv.t4x | |
apertium-preprocess-transfer apertium-kaz-tyv.kaz-tyv.t4x kaz-tyv.t4x.bin | |
apertium-validate-dictionary apertium-kaz-tyv.kaz-tyv.dix | |
lt-comp rl apertium-kaz-tyv.kaz-tyv.dix tyv-kaz.autobil.bin | |
main@standard 465 671 | |
lt-print tyv-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tyv-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/tyv-kaz.autobil.att > .deps/tyv-kaz.autobil.hfst | |
hfst-project -p upper .deps/tyv-kaz.autobil.hfst > .deps/tyv-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tyv-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tyv-kaz.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tyv//tyv.automorf.att.gz | hfst-txt2fst > .deps/tyv.automorf.hfst | |
hfst-compose-intersect -1 .deps/tyv.automorf.hfst -2 .deps/tyv-kaz.autobil.prefixes -o .deps/tyv-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<subst>") in | |
transducer in file .deps/tyv.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tyv-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/tyv-kaz.automorf.trimmed -o .deps/tyv-kaz.automorf.trimmed.att | |
lt-comp lr .deps/tyv-kaz.automorf.trimmed.att tyv-kaz.automorf.bin | |
main@standard 1721 4129 | |
final@inconditional 307 799 | |
cp ../../apertium-languages/apertium-tyv//tyv.prob tyv-kaz.prob | |
cg-comp ../../apertium-languages/apertium-tyv//apertium-tyv.tyv.rlx tyv-kaz.rlx.bin | |
Sections: 2, Rules: 34, Sets: 60, Tags: 102 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-kaz-tyv.tyv-kaz.lrx tyv-kaz.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin tyv-kaz.autogen.bin | |
cp ../../apertium-languages/apertium-kaz//kaz.autopgen.bin tyv-kaz.autopgen.bin | |
apertium-validate-transfer apertium-kaz-tyv.tyv-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-tyv.tyv-kaz.t1x tyv-kaz.t1x.bin | |
apertium-validate-interchunk apertium-kaz-tyv.tyv-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-tyv.tyv-kaz.t2x tyv-kaz.t2x.bin | |
apertium-validate-postchunk apertium-kaz-tyv.tyv-kaz.t3x | |
apertium-preprocess-transfer apertium-kaz-tyv.tyv-kaz.t3x tyv-kaz.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage kaz -> tyv | |
Number of tokenised words in the corpus: 217646 | |
Coverage: 57.56% | |
Top unknown words in the corpus: | |
1268 Иса | |
825 Құдайдың | |
808 үшін | |
762 Құдай | |
434 Сонда | |
414 осы | |
411 туралы | |
383 сендер | |
371 рухани | |
351 өз | |
349 Себебі | |
339 арқылы | |
323 Мәсіх | |
309 Киелі | |
308 сендерге | |
298 Құдайға | |
284 Исаның | |
270 Иеміз | |
246 Мәсіхтің | |
240 қатты | |
Translation time: 2.413213014602661 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tyv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> tyv | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2980 | |
Coverage: 40.77% | |
Top unknown words in the corpus: | |
51 Қазақстан | |
11 км | |
10 бойынша | |
8 мемлекет | |
8 Қазақстанның | |
8 КСРО | |
8 Орта | |
8 оңт | |
7 ең | |
7 негізгі | |
7 өз | |
7 тайпалар | |
6 Республикасы | |
6 орналасқан | |
6 Қазақ | |
6 шығыс | |
6 экономикалық | |
6 туралы | |
6 ірі | |
6 республика | |
Translation time: 0.06718015670776367 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-tyv.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tyv -> kaz | |
Number of tokenised words in the corpus: 227032 | |
Coverage: 59.05% | |
Top unknown words in the corpus: | |
1547 даа | |
1179 Бурганның | |
1101 Иисус | |
703 мынча | |
678 бүгү | |
558 Бурган | |
545 силерге | |
543 Дээрги | |
532 Мен | |
501 силер | |
475 мен | |
447 дег | |
442 ла | |
430 чедип | |
423 Мээң | |
393 өске | |
373 дугайында | |
360 катап | |
321 ле | |
318 бис | |
Translation time: 1.5751702785491943 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tyv-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tyv -> kaz | |
Number of tokenised words in the corpus: 433 | |
Coverage: 49.19% | |
Top unknown words in the corpus: | |
4 В | |
4 quot | |
4 Кезер | |
4 Даңгына | |
3 Азия | |
3 Хемниң | |
3 Ачыты | |
3 Мерген | |
3 бурят | |
2 Азияның | |
2 төвү | |
2 Азий | |
2 Төвү | |
2 Тываның | |
2 тураскаал | |
2 төвүнде | |
2 он | |
2 ла | |
2 илереткен | |
2 Куулар | |
Translation time: 0.008584737777709961 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tyv-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz uig | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 27242d1bc93089f2430d555817239e064530f2d1 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-uig from ../../apertium-languages/apertium-uig/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-uig.autobil.bin uig-kaz.autobil.bin kaz-uig.automorf.bin kaz-uig.autopgen.bin kaz-uig.autogen.bin kaz-uig.t1x.bin kaz-uig.t2x.bin uig-kaz.automorf.bin uig-kaz.autopgen.bin uig-kaz.autogen.bin uig-kaz.t1x.bin uig-kaz.t2x.bin kaz-uig.rlx.bin uig-kaz.rlx.bin kaz-uig.lrx.bin uig-kaz.lrx.bin" || rm -f kaz-uig.autobil.bin uig-kaz.autobil.bin kaz-uig.automorf.bin kaz-uig.autopgen.bin kaz-uig.autogen.bin kaz-uig.t1x.bin kaz-uig.t2x.bin uig-kaz.automorf.bin uig-kaz.autopgen.bin uig-kaz.autogen.bin uig-kaz.t1x.bin uig-kaz.t2x.bin kaz-uig.rlx.bin uig-kaz.rlx.bin kaz-uig.lrx.bin uig-kaz.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-uig.kaz-uig.dix | |
lt-comp lr apertium-kaz-uig.kaz-uig.dix kaz-uig.autobil.bin | |
main@standard 6798 9416 | |
apertium-validate-dictionary apertium-kaz-uig.kaz-uig.dix | |
lt-comp rl apertium-kaz-uig.kaz-uig.dix uig-kaz.autobil.bin | |
main@standard 6786 9401 | |
if [ ! -d .deps ]; then mkdir .deps; fi | |
touch .deps/.d | |
lt-print kaz-uig.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-uig.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-uig.autobil.att > .deps/kaz-uig.autobil.hfst | |
hfst-project -p upper .deps/kaz-uig.autobil.hfst > .deps/kaz-uig.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-uig.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-uig.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-uig.autobil.prefixes -o .deps/kaz-uig.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-uig.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-uig.automorf.trimmed -o .deps/kaz-uig.automorf.trimmed.att | |
lt-comp lr .deps/kaz-uig.automorf.trimmed.att kaz-uig.automorf.bin | |
main@standard 104981 233480 | |
final@inconditional 2589 6991 | |
apertium-validate-dictionary apertium-kaz-uig.post-kaz.dix | |
lt-comp lr apertium-kaz-uig.post-kaz.dix kaz-uig.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-uig//uig.autogen.bin kaz-uig.autogen.bin | |
apertium-validate-transfer apertium-kaz-uig.kaz-uig.t1x | |
apertium-preprocess-transfer apertium-kaz-uig.kaz-uig.t1x kaz-uig.t1x.bin | |
apertium-validate-transfer apertium-kaz-uig.kaz-uig.t2x | |
apertium-preprocess-transfer apertium-kaz-uig.kaz-uig.t2x kaz-uig.t2x.bin | |
lt-print uig-kaz.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/uig-kaz.autobil.att | |
hfst-txt2fst -e ε < .deps/uig-kaz.autobil.att > .deps/uig-kaz.autobil.hfst | |
hfst-project -p upper .deps/uig-kaz.autobil.hfst > .deps/uig-kaz.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/uig-kaz.autobil.upper -2 .deps/any-symbol.hfst -o .deps/uig-kaz.autobil.prefixes | |
zcat ../../apertium-languages/apertium-uig//uig.automorf.att.gz | hfst-txt2fst > .deps/uig.automorf.hfst | |
hfst-compose-intersect -1 .deps/uig.automorf.hfst -2 .deps/uig-kaz.autobil.prefixes -o .deps/uig-kaz.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<barb>") in | |
transducer in file .deps/uig.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/uig-kaz.autobil.prefixes. | |
hfst-fst2txt -i .deps/uig-kaz.automorf.trimmed -o .deps/uig-kaz.automorf.trimmed.att | |
lt-comp lr .deps/uig-kaz.automorf.trimmed.att uig-kaz.automorf.bin | |
main@standard 7086 37292 | |
final@inconditional 17 38 | |
apertium-validate-dictionary apertium-kaz-uig.post-uig.dix | |
lt-comp lr apertium-kaz-uig.post-uig.dix uig-kaz.autopgen.bin | |
main@standard 9 114 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin uig-kaz.autogen.bin | |
apertium-validate-transfer apertium-kaz-uig.uig-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-uig.uig-kaz.t1x uig-kaz.t1x.bin | |
apertium-validate-transfer apertium-kaz-uig.uig-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-uig.uig-kaz.t2x uig-kaz.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-uig.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-uig//apertium-uig.uig.rlx uig-kaz.rlx.bin | |
Sections: 1, Rules: 55, Sets: 81, Tags: 147 | |
lrx-comp apertium-kaz-uig.kaz-uig.lrx kaz-uig.lrx.bin | |
6: 99@109 | |
lrx-comp apertium-kaz-uig.uig-kaz.lrx uig-kaz.lrx.bin | |
1: 19@19 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
cp *.mode modes/ | |
cp: der Aufruf von stat für '*.mode' ist nicht möglich: Datei oder Verzeichnis nicht gefunden | |
make: *** [Makefile:779: modes/kaz-uig.mode] Fehler 1 | |
bible coverage kaz -> uig | |
Number of tokenised words in the corpus: 215836 | |
Coverage: 79.13% | |
Top unknown words in the corpus: | |
1268 Иса | |
462 былай | |
434 Сонда | |
323 Мәсіх | |
284 Исаның | |
270 Иеміз | |
246 Мәсіхтің | |
238 Сондықтан | |
211 Ізгі | |
208 Содан | |
208 айтып | |
205 кезде | |
188 Алайда | |
181 етіп | |
175 Исаға | |
174 барып | |
166 жерде | |
151 Исаны | |
150 Петір | |
141 Сонымен | |
Translation time: 4.965975522994995 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-uig.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> uig | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2966 | |
Coverage: 70.23% | |
Top unknown words in the corpus: | |
8 КСРО | |
8 оңт | |
7 тайпалар | |
7 жерінде | |
6 Республикасы | |
6 Қазақ | |
6 шығыс | |
6 жер | |
6 республика | |
6 желтоқсанда | |
6 басшылары | |
6 республиканың | |
5 ның | |
5 батыс | |
5 Украина | |
5 Республикасының | |
5 солт | |
4 шығысында | |
4 тау | |
4 Каспий | |
Translation time: 0.15818142890930176 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-uig.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage uig -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 692001 | |
Coverage: 57.33% | |
Top unknown words in the corpus: | |
5391 ۋە | |
4124 بۇ | |
4115 ئۇ | |
3007 بىر | |
2610 مەن | |
2541 ئۇالر | |
2289 دەپ | |
2189 ئۈچۈن | |
2173 دېدى | |
2159 ئەيسا | |
2014 ھەزرىتى | |
1875 پەرۋەردىگار | |
1704 قىلىپ | |
1656 بولۇپ | |
1454 ئۆز | |
1379 چۈنكى | |
1377 سىلەر | |
1345 ئۇالرنىڭ | |
1297 بولغان | |
1296 قىلغان | |
Translation time: 4.557683944702148 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uig-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage uig -> kaz | |
Error: Malformed input stream.Number of tokenised words in the corpus: 194 | |
Coverage: 41.24% | |
Top unknown words in the corpus: | |
3 ئۇيغۇر | |
3 كومپۇتەر | |
2 ۋە | |
2 بولۇپ | |
2 بیزنیڭ | |
2 ئاز | |
2 كیشیلیریمیز | |
2 جۇڭخۇا | |
2 جۇمھۇرىيىتى | |
2 شەھىرى | |
1 ئۇيغۇرچە | |
1 ۋىكىپىدىيە | |
1 خەلقئارالىق | |
1 ئۇچۇر | |
1 بېتى | |
1 ۋىكىپېدىيەنىڭ | |
1 نۇسخاسىغا | |
1 خوش | |
1 كېلىپسىز | |
1 تاللانغان | |
Translation time: 0.015642166137695312 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uig-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kir uzb | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 0bd73de9fd7a7b50bfb4d95ec7c3837a7c25a164 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kir from ../../apertium-languages/apertium-kir/ | |
Using apertium-uzb from ../../apertium-languages/apertium-uzb/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kir-uzb.autobil.bin uzb-kir.autobil.bin kir-uzb.automorf.bin kir-uzb.autopgen.bin kir-uzb.autogen.bin kir-uzb.t1x.bin kir-uzb.t2x.bin uzb-kir.automorf.bin uzb-kir.autopgen.bin uzb-kir.autogen.bin uzb-kir.t1x.bin uzb-kir.t2x.bin kir-uzb.rlx.bin uzb-kir.rlx.bin kir-uzb.autolex.bin uzb-kir.autolex.bin" || rm -f kir-uzb.autobil.bin uzb-kir.autobil.bin kir-uzb.automorf.bin kir-uzb.autopgen.bin kir-uzb.autogen.bin kir-uzb.t1x.bin kir-uzb.t2x.bin uzb-kir.automorf.bin uzb-kir.autopgen.bin uzb-kir.autogen.bin uzb-kir.t1x.bin uzb-kir.t2x.bin kir-uzb.rlx.bin uzb-kir.rlx.bin kir-uzb.autolex.bin uzb-kir.autolex.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kir-uzb.kir-uzb.dix | |
lt-comp lr apertium-kir-uzb.kir-uzb.dix kir-uzb.autobil.bin | |
main@standard 838 1151 | |
apertium-validate-dictionary apertium-kir-uzb.kir-uzb.dix | |
lt-comp rl apertium-kir-uzb.kir-uzb.dix uzb-kir.autobil.bin | |
main@standard 838 1151 | |
if [ ! -d .deps ]; then mkdir .deps; fi | |
touch .deps/.d | |
lt-print kir-uzb.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kir-uzb.autobil.att | |
hfst-txt2fst -e ε < .deps/kir-uzb.autobil.att > .deps/kir-uzb.autobil.hfst | |
hfst-project -p upper .deps/kir-uzb.autobil.hfst > .deps/kir-uzb.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kir-uzb.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kir-uzb.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kir//kir.automorf.att.gz | hfst-txt2fst > .deps/kir.automorf.hfst | |
hfst-compose-intersect -1 .deps/kir.automorf.hfst -2 .deps/kir-uzb.autobil.prefixes -o .deps/kir-uzb.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<quot>") in | |
transducer in file .deps/kir.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kir-uzb.autobil.prefixes. | |
hfst-fst2fst -O -i .deps/kir-uzb.automorf.trimmed -o kir-uzb.automorf.bin | |
hfst-fst2txt -i .deps/kir-uzb.automorf.trimmed -o .deps/kir-uzb.automorf.trimmed.att | |
lt-comp lr .deps/kir-uzb.automorf.trimmed.att kir-uzb.automorf.bin | |
main@standard 6684 15957 | |
final@inconditional 827 2299 | |
cp ../../apertium-languages/apertium-kir//kir.autopgen.bin kir-uzb.autopgen.bin | |
cp ../../apertium-languages/apertium-uzb//uzb.autogen.bin kir-uzb.autogen.bin | |
apertium-validate-transfer apertium-kir-uzb.kir-uzb.t1x | |
apertium-preprocess-transfer apertium-kir-uzb.kir-uzb.t1x kir-uzb.t1x.bin | |
apertium-validate-transfer apertium-kir-uzb.kir-uzb.t2x | |
apertium-preprocess-transfer apertium-kir-uzb.kir-uzb.t2x kir-uzb.t2x.bin | |
lt-print uzb-kir.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/uzb-kir.autobil.att | |
hfst-txt2fst -e ε < .deps/uzb-kir.autobil.att > .deps/uzb-kir.autobil.hfst | |
hfst-project -p upper .deps/uzb-kir.autobil.hfst > .deps/uzb-kir.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/uzb-kir.autobil.upper -2 .deps/any-symbol.hfst -o .deps/uzb-kir.autobil.prefixes | |
zcat ../../apertium-languages/apertium-uzb//uzb.automorf.att.gz | hfst-txt2fst > .deps/uzb.automorf.hfst | |
hfst-compose-intersect -1 .deps/uzb.automorf.hfst -2 .deps/uzb-kir.autobil.prefixes -o .deps/uzb-kir.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uzb.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/uzb-kir.autobil.prefixes. | |
hfst-fst2txt -i .deps/uzb-kir.automorf.trimmed -o .deps/uzb-kir.automorf.trimmed.att | |
lt-comp lr .deps/uzb-kir.automorf.trimmed.att uzb-kir.automorf.bin | |
main@standard 1109 1924 | |
final@inconditional 21 94 | |
apertium-validate-dictionary ../../apertium-languages/apertium-uzb//apertium-uzb.post-uzb.dix | |
lt-comp lr ../../apertium-languages/apertium-uzb//apertium-uzb.post-uzb.dix uzb-kir.autopgen.bin | |
main@standard 16 356 | |
cp ../../apertium-languages/apertium-kir//kir.autogen.bin uzb-kir.autogen.bin | |
apertium-validate-transfer apertium-kir-uzb.uzb-kir.t1x | |
apertium-preprocess-transfer apertium-kir-uzb.uzb-kir.t1x uzb-kir.t1x.bin | |
apertium-validate-transfer apertium-kir-uzb.uzb-kir.t2x | |
apertium-preprocess-transfer apertium-kir-uzb.uzb-kir.t2x uzb-kir.t2x.bin | |
cg-comp ../../apertium-languages/apertium-kir//apertium-kir.kir.rlx kir-uzb.rlx.bin | |
Sections: 3, Rules: 71, Sets: 102, Tags: 126 | |
cg-comp ../../apertium-languages/apertium-uzb//apertium-uzb.uzb.rlx uzb-kir.rlx.bin | |
Sections: 0, Rules: 62, Sets: 54, Tags: 104 | |
lrx-comp apertium-kir-uzb.kir-uzb.lrx kir-uzb.autolex.bin | |
1: 19@19 | |
lrx-comp apertium-kir-uzb.uzb-kir.lrx uzb-kir.autolex.bin | |
1: 19@19 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
cp *.mode modes/ | |
cp: der Aufruf von stat für '*.mode' ist nicht möglich: Datei oder Verzeichnis nicht gefunden | |
make: *** [Makefile:774: modes/kir-uzb.mode] Fehler 1 | |
bible coverage kir -> uzb | |
Number of tokenised words in the corpus: 205768 | |
Coverage: 64.63% | |
Top unknown words in the corpus: | |
1279 Ыйса | |
946 Кудай | |
597 Кудайдын | |
582 алып | |
380 Машаяк | |
362 Ыйсанын | |
325 өз | |
305 Кудайга | |
284 Ыйык | |
264 Анан | |
259 Эгебиз | |
246 баары | |
237 берди | |
229 ар | |
225 киши | |
208 Ыйсаны | |
204 Өз | |
189 керек | |
188 көп | |
187 эл | |
Translation time: 2.4062106609344482 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kir -> uzb | |
Error: Malformed input stream.Number of tokenised words in the corpus: 9480 | |
Coverage: 44.46% | |
Top unknown words in the corpus: | |
51 Кыргыз | |
29 Кыргызстандын | |
29 Республикасынын | |
28 табигый | |
28 географиялык | |
27 География | |
25 кылымдын | |
24 ж | |
23 илимий | |
20 ар | |
20 жылы | |
19 жайгашкан | |
18 география | |
18 кыргыз | |
18 тоо | |
17 Географиялык | |
17 А | |
16 Кыргызстан | |
15 экономикалык | |
15 С | |
Translation time: 0.09597134590148926 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage uzb -> kir | |
Number of tokenised words in the corpus: 215561 | |
Coverage: 51.41% | |
Top unknown words in the corpus: | |
3577 bo | |
3488 o | |
2129 ko | |
1423 Iso | |
1162 O | |
985 g | |
925 qo | |
854 so | |
755 yo | |
741 Xudo | |
735 to | |
715 z | |
553 Xudoning | |
450 lib | |
395 lgan | |
391 Masih | |
365 zi | |
352 har | |
345 lsa | |
333 shunday | |
Translation time: 0.743370771408081 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage uzb -> kir | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4189 | |
Coverage: 41.27% | |
Top unknown words in the corpus: | |
32 X | |
27 Oʻzbekiston | |
22 av | |
21 Xorazm | |
15 qad | |
14 boʻlgan | |
14 mil | |
12 qalʼa | |
12 Mil | |
11 asr | |
11 yasalgan | |
10 boʻlib | |
10 xom | |
10 oʻlka | |
10 ning | |
10 shim | |
10 da | |
9 jan | |
9 madaniyati | |
8 qismi | |
Translation time: 0.02355480194091797 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
nog kaz | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 64776015694b4e339eab1cf9b23ae9f4c6c9cb28 | |
bible coverage nog -> kaz | |
[Errno 2] No such file or directory: 'nog-kaz.automorf.bin' | |
wikipedia coverage nog -> kaz | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-nog/wiki.destxt' | |
bible coverage kaz -> nog | |
[Errno 2] No such file or directory: 'kaz-nog.automorf.bin' | |
wikipedia coverage kaz -> nog | |
[Errno 2] No such file or directory: 'kaz-nog.automorf.bin' | |
tat bak | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 94b66d3c663e88ad5263734620780b2eeea80c16 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
Using apertium-bak from ../../apertium-languages/apertium-bak/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tat-bak.autobil.bin bak-tat.autobil.bin tat-bak.automorf.bin tat-bak.autopgen.bin tat-bak.autogen.bin tat-bak.t1x.bin tat-bak.t2x.bin bak-tat.automorf.bin bak-tat.autopgen.bin bak-tat.autogen.bin bak-tat.t1x.bin bak-tat.t2x.bin tat-bak.rlx.bin bak-tat.rlx.bin tat-bak.lrx.bin bak-tat.lrx.bin" || rm -f tat-bak.autobil.bin bak-tat.autobil.bin tat-bak.automorf.bin tat-bak.autopgen.bin tat-bak.autogen.bin tat-bak.t1x.bin tat-bak.t2x.bin bak-tat.automorf.bin bak-tat.autopgen.bin bak-tat.autogen.bin bak-tat.t1x.bin bak-tat.t2x.bin tat-bak.rlx.bin bak-tat.rlx.bin tat-bak.lrx.bin bak-tat.lrx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-tat-bak.tat-bak.dix | |
lt-comp lr apertium-tat-bak.tat-bak.dix tat-bak.autobil.bin | |
main@standard 71611 117353 | |
apertium-validate-dictionary apertium-tat-bak.tat-bak.dix | |
lt-comp rl apertium-tat-bak.tat-bak.dix bak-tat.autobil.bin | |
main@standard 71609 117346 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print tat-bak.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-bak.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-bak.autobil.att > .deps/tat-bak.autobil.hfst | |
hfst-project -p upper .deps/tat-bak.autobil.hfst > .deps/tat-bak.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-bak.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-bak.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-bak.autobil.prefixes -o .deps/tat-bak.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-bak.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-bak.automorf.trimmed -o .deps/tat-bak.automorf.trimmed.att | |
lt-comp lr .deps/tat-bak.automorf.trimmed.att tat-bak.automorf.bin | |
main@standard 225878 445718 | |
final@inconditional 38 64 | |
apertium-validate-dictionary apertium-tat-bak.post-tat.dix | |
lt-comp lr apertium-tat-bak.post-tat.dix tat-bak.autopgen.bin | |
main@standard 16 356 | |
cp ../../apertium-languages/apertium-bak//bak.autogen.bin tat-bak.autogen.bin | |
apertium-validate-transfer apertium-tat-bak.tat-bak.t1x | |
apertium-preprocess-transfer apertium-tat-bak.tat-bak.t1x tat-bak.t1x.bin | |
apertium-validate-transfer apertium-tat-bak.tat-bak.t2x | |
apertium-preprocess-transfer apertium-tat-bak.tat-bak.t2x tat-bak.t2x.bin | |
lt-print bak-tat.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/bak-tat.autobil.att | |
hfst-txt2fst -e ε < .deps/bak-tat.autobil.att > .deps/bak-tat.autobil.hfst | |
hfst-project -p upper .deps/bak-tat.autobil.hfst > .deps/bak-tat.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/bak-tat.autobil.upper -2 .deps/any-symbol.hfst -o .deps/bak-tat.autobil.prefixes | |
zcat ../../apertium-languages/apertium-bak//bak.automorf.att.gz | hfst-txt2fst > .deps/bak.automorf.hfst | |
hfst-compose-intersect -1 .deps/bak.automorf.hfst -2 .deps/bak-tat.autobil.prefixes -o .deps/bak-tat.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/bak.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/bak-tat.autobil.prefixes. | |
hfst-fst2txt -i .deps/bak-tat.automorf.trimmed -o .deps/bak-tat.automorf.trimmed.att | |
lt-comp lr .deps/bak-tat.automorf.trimmed.att bak-tat.automorf.bin | |
main@standard 78313 141455 | |
final@inconditional 15 35 | |
apertium-validate-dictionary apertium-tat-bak.post-bak.dix | |
lt-comp lr apertium-tat-bak.post-bak.dix bak-tat.autopgen.bin | |
main@standard 10 149 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin bak-tat.autogen.bin | |
apertium-validate-transfer apertium-tat-bak.bak-tat.t1x | |
apertium-preprocess-transfer apertium-tat-bak.bak-tat.t1x bak-tat.t1x.bin | |
apertium-validate-transfer apertium-tat-bak.bak-tat.t2x | |
apertium-preprocess-transfer apertium-tat-bak.bak-tat.t2x bak-tat.t2x.bin | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-bak.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
cg-comp ../../apertium-languages/apertium-bak//apertium-bak.bak.rlx bak-tat.rlx.bin | |
Sections: 1, Rules: 5, Sets: 25, Tags: 44 | |
lrx-comp apertium-tat-bak.tat-bak.lrx tat-bak.lrx.bin | |
2: 34@36 | |
lrx-comp apertium-tat-bak.bak-tat.lrx bak-tat.lrx.bin | |
2: 31@33 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage tat -> bak | |
Number of tokenised words in the corpus: 196787 | |
Coverage: 97.34% | |
Top unknown words in the corpus: | |
57 каршында | |
52 явыз | |
52 фарисейләр | |
49 Һируд | |
49 хачка | |
47 канунчылар | |
36 Имандашлар | |
33 савыктыра | |
33 Барнаб | |
30 кайберләре | |
29 Шаул | |
29 Corinthians | |
28 Matthew | |
28 дучар | |
28 беркайчан | |
28 John | |
28 Acts | |
27 имандаш | |
26 Гәлиләя | |
26 чумдырылу | |
Translation time: 6.27307653427124 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-bak.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> bak | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 46.15% | |
Top unknown words in the corpus: | |
3 Tatnet | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 Tatar | |
1 İnternetı | |
1 Tatarstan | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.12012624740600586 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-bak.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage bak -> tat | |
Number of tokenised words in the corpus: 197387 | |
Coverage: 94.05% | |
Top unknown words in the corpus: | |
176 алдында | |
144 Һөйөнөслө | |
114 китте | |
94 имандаштар | |
75 үҙҙәре | |
71 шундай | |
63 алдына | |
58 ҡыуып | |
54 арҡысаҡҡа | |
53 киткән | |
52 фарисейҙар | |
51 бөтөнөһө | |
50 ҡисса | |
49 дусар | |
49 өҫтөнән | |
48 Ирод | |
48 береһенә | |
48 Имандаштар | |
46 Йәһүҙә | |
46 халҡы | |
Translation time: 4.23078179359436 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./bak-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage bak -> tat | |
Error: Malformed input stream.Number of tokenised words in the corpus: 474 | |
Coverage: 96.20% | |
Top unknown words in the corpus: | |
4 власы | |
2 ө | |
2 н | |
1 ноябрендә | |
1 октябрендә | |
1 суверенитеты | |
1 февраленән | |
1 ТӨРКСОЙ | |
1 Халҡы | |
1 ын | |
1 тауҙарының | |
1 Ямантау | |
1 мәмерйәләре | |
Translation time: 0.06259441375732422 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./bak-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
tat kaa | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit e685b6d852eb648f87d89649c331bc75898cc1ce | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
Using apertium-kaa from ../../apertium-languages/apertium-kaa/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tat-kaa.automorf.bin tat-kaa.prob tat-kaa.rlx.bin tat-kaa.autobil.bin tat-kaa.autolex.bin tat-kaa.autogen.bin tat-kaa.autopgen.bin tat-kaa.t1x.bin tat-kaa.t2x.bin tat-kaa.t3x.bin kaa-tat.automorf.bin kaa-tat.rlx.bin kaa-tat.autobil.bin kaa-tat.autolex.bin kaa-tat.autogen.bin kaa-tat.autopgen.bin kaa-tat.t1x.bin kaa-tat.t2x.bin kaa-tat.t3x.bin" || rm -f tat-kaa.automorf.bin tat-kaa.prob tat-kaa.rlx.bin tat-kaa.autobil.bin tat-kaa.autolex.bin tat-kaa.autogen.bin tat-kaa.autopgen.bin tat-kaa.t1x.bin tat-kaa.t2x.bin tat-kaa.t3x.bin kaa-tat.automorf.bin kaa-tat.rlx.bin kaa-tat.autobil.bin kaa-tat.autolex.bin kaa-tat.autogen.bin kaa-tat.autopgen.bin kaa-tat.t1x.bin kaa-tat.t2x.bin kaa-tat.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
apertium-validate-dictionary apertium-tat-kaa.tat-kaa.dix | |
lt-comp lr apertium-tat-kaa.tat-kaa.dix tat-kaa.autobil.bin | |
main@standard 9 17 | |
lt-print tat-kaa.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-kaa.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-kaa.autobil.att > .deps/tat-kaa.autobil.hfst | |
hfst-project -p upper .deps/tat-kaa.autobil.hfst > .deps/tat-kaa.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-kaa.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-kaa.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-kaa.autobil.prefixes -o .deps/tat-kaa.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-kaa.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-kaa.automorf.trimmed -o .deps/tat-kaa.automorf.trimmed.att | |
lt-comp lr .deps/tat-kaa.automorf.trimmed.att tat-kaa.automorf.bin | |
main@standard 351 668 | |
final@inconditional 8 12 | |
cp ../../apertium-languages/apertium-tat//tat.prob tat-kaa.prob | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-kaa.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
lrx-comp apertium-tat-kaa.tat-kaa.lrx tat-kaa.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-kaa//kaa.autogen.bin tat-kaa.autogen.bin | |
cp ../../apertium-languages/apertium-kaa//kaa.autopgen.bin tat-kaa.autopgen.bin | |
apertium-validate-transfer apertium-tat-kaa.tat-kaa.t1x | |
apertium-preprocess-transfer apertium-tat-kaa.tat-kaa.t1x tat-kaa.t1x.bin | |
apertium-validate-interchunk apertium-tat-kaa.tat-kaa.t2x | |
apertium-preprocess-transfer apertium-tat-kaa.tat-kaa.t2x tat-kaa.t2x.bin | |
apertium-validate-postchunk apertium-tat-kaa.tat-kaa.t3x | |
apertium-preprocess-transfer apertium-tat-kaa.tat-kaa.t3x tat-kaa.t3x.bin | |
/bin/zcat ../../apertium-languages/apertium-kaa//kaa.automorf.att.gz | hfst-txt2fst > .deps/kaa.automorf.hfst | |
apertium-validate-dictionary apertium-tat-kaa.tat-kaa.dix | |
lt-comp rl apertium-tat-kaa.tat-kaa.dix kaa-tat.autobil.bin | |
main@standard 9 17 | |
lt-print kaa-tat.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaa-tat.autobil.att | |
hfst-txt2fst -e ε < .deps/kaa-tat.autobil.att > .deps/kaa-tat.autobil.hfst | |
hfst-project -p upper .deps/kaa-tat.autobil.hfst > .deps/kaa-tat.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaa-tat.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaa-tat.autobil.prefixes | |
hfst-compose-intersect -1 .deps/kaa.automorf.hfst -2 .deps/kaa-tat.autobil.prefixes -o .deps/kaa-tat.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<apos>") in | |
transducer in file .deps/kaa.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaa-tat.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaa-tat.automorf.trimmed -o .deps/kaa-tat.automorf.trimmed.att | |
lt-comp lr .deps/kaa-tat.automorf.trimmed.att kaa-tat.automorf.bin | |
main@standard 183 359 | |
final@inconditional 7 12 | |
cg-comp ../../apertium-languages/apertium-kaa//apertium-kaa.kaa.rlx kaa-tat.rlx.bin | |
Sections: 1, Rules: 1, Sets: 5, Tags: 23 | |
lrx-comp apertium-tat-kaa.kaa-tat.lrx kaa-tat.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin kaa-tat.autogen.bin | |
cp ../../apertium-languages/apertium-tat//tat.autopgen.bin kaa-tat.autopgen.bin | |
apertium-validate-transfer apertium-tat-kaa.kaa-tat.t1x | |
apertium-preprocess-transfer apertium-tat-kaa.kaa-tat.t1x kaa-tat.t1x.bin | |
apertium-validate-interchunk apertium-tat-kaa.kaa-tat.t2x | |
apertium-preprocess-transfer apertium-tat-kaa.kaa-tat.t2x kaa-tat.t2x.bin | |
apertium-validate-postchunk apertium-tat-kaa.kaa-tat.t3x | |
apertium-preprocess-transfer apertium-tat-kaa.kaa-tat.t3x kaa-tat.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/tat.automorf.bin.att .deps/tat.automorf.bin | |
main@standard 242055 497437 | |
final@inconditional 805 1769 | |
lt-comp lr .deps/kaa.automorf.bin.att .deps/kaa.automorf.bin | |
main@standard 22375 47983 | |
final@inconditional 443 1599 | |
bible coverage tat -> kaa | |
Number of tokenised words in the corpus: 178385 | |
Coverage: 19.96% | |
Top unknown words in the corpus: | |
3525 һәм | |
1964 белән | |
1351 Гайсә | |
1335 дип | |
1279 өчен | |
1202 дә | |
1126 Аллаһы | |
1109 да | |
1044 Ул | |
711 Мин | |
710 ул | |
630 бер | |
622 Аның | |
607 алар | |
587 иде | |
551 сез | |
533 бу | |
516 диде | |
515 итеп | |
511 ә | |
Translation time: 0.3744645118713379 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> kaa | |
Error: Malformed input stream.Number of tokenised words in the corpus: 17 | |
Coverage: 17.65% | |
Top unknown words in the corpus: | |
2 Tatnet | |
1 ^Tatnet | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 Tatar | |
1 İnternetı | |
1 Tatarstan | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.0061550140380859375 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kaa -> tat | |
Number of tokenised words in the corpus: 172711 | |
Coverage: 16.31% | |
Top unknown words in the corpus: | |
2075 hám | |
1625 menen | |
1303 ushın | |
1223 İysa | |
1223 de | |
1134 O | |
1111 bir | |
1060 da | |
1038 dep | |
1032 dedi | |
876 edi | |
817 Qudaydıń | |
807 Ol | |
710 Biraq | |
645 Quday | |
629 adam | |
620 Men | |
563 bul | |
520 Muxaddes | |
515 etip | |
Translation time: 0.3134338855743408 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaa -> tat | |
Error: Malformed input stream.Number of tokenised words in the corpus: 3 | |
Coverage: 33.33% | |
Top unknown words in the corpus: | |
1 ^Bas | |
1 bet | |
Translation time: 0.004499197006225586 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
tat kir | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 56e673ad16a30e2a0eb0015015455265b66a3560 | |
bible coverage tat -> kir | |
[Errno 2] No such file or directory: 'tat-kir.automorf.bin' | |
wikipedia coverage tat -> kir | |
[Errno 2] No such file or directory: 'tat-kir.automorf.bin' | |
bible coverage kir -> tat | |
[Errno 2] No such file or directory: 'kir-tat.automorf.bin' | |
wikipedia coverage kir -> tat | |
[Errno 2] No such file or directory: 'kir-tat.automorf.bin' | |
tuk tur | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 9447fb2278ed49b2dd982d6a3871e0cc5c250bd1 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tuk from ../../apertium-languages/apertium-tuk/ | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tuk-tur.automorf.bin tuk-tur.prob tuk-tur.rlx.bin tuk-tur.autobil.bin tuk-tur.autolex.bin tuk-tur.autogen.bin tuk-tur.t1x.bin tuk-tur.t2x.bin tuk-tur.t3x.bin tur-tuk.automorf.bin tur-tuk.prob tur-tuk.rlx.bin tur-tuk.autobil.bin tur-tuk.autolex.bin tur-tuk.autogen.bin tur-tuk.t1x.bin tur-tuk.t2x.bin tur-tuk.t3x.bin" || rm -f tuk-tur.automorf.bin tuk-tur.prob tuk-tur.rlx.bin tuk-tur.autobil.bin tuk-tur.autolex.bin tuk-tur.autogen.bin tuk-tur.t1x.bin tuk-tur.t2x.bin tuk-tur.t3x.bin tur-tuk.automorf.bin tur-tuk.prob tur-tuk.rlx.bin tur-tuk.autobil.bin tur-tuk.autolex.bin tur-tuk.autogen.bin tur-tuk.t1x.bin tur-tuk.t2x.bin tur-tuk.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-tuk//tuk.automorf.att.gz | hfst-txt2fst > .deps/tuk.automorf.hfst | |
apertium-validate-dictionary apertium-tuk-tur.tuk-tur.dix | |
lt-comp lr apertium-tuk-tur.tuk-tur.dix tuk-tur.autobil.bin | |
main@standard 9639 12929 | |
lt-print tuk-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tuk-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/tuk-tur.autobil.att > .deps/tuk-tur.autobil.hfst | |
hfst-project -p upper .deps/tuk-tur.autobil.hfst > .deps/tuk-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tuk-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tuk-tur.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tuk.automorf.hfst -2 .deps/tuk-tur.autobil.prefixes -o .deps/tuk-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<pl>") in | |
transducer in file .deps/tuk.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tuk-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/tuk-tur.automorf.trimmed -o .deps/tuk-tur.automorf.trimmed.att | |
lt-comp lr .deps/tuk-tur.automorf.trimmed.att tuk-tur.automorf.bin | |
main@standard 11942 18802 | |
final@inconditional 43 61 | |
make: *** Keine Regel vorhanden, um das Ziel „../../apertium-languages/apertium-tuk//tuk.prob“, | |
benötigt von „tuk-tur.prob“, zu erstellen. Schluss. | |
bible coverage tuk -> tur | |
Number of tokenised words in the corpus: 598872 | |
Coverage: 65.77% | |
Top unknown words in the corpus: | |
3337 Reb | |
2415 Rebbiň | |
2228 Men | |
2012 öz | |
1929 şeýle | |
1737 ýaly | |
1610 ähli | |
1053 Rebbe | |
1048 men | |
923 meniň | |
867 ýüz | |
850 Meniň | |
782 maňa | |
772 siz | |
768 çünki | |
761 Eý | |
745 patyşa | |
744 Öz | |
730 Ysraýyl | |
700 Çünki | |
Translation time: 8.47865080833435 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tuk-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tuk -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 129 | |
Coverage: 76.74% | |
Top unknown words in the corpus: | |
2 inženerligi | |
2 programma | |
1 Baş | |
1 Sahypa | |
1 Kimýä | |
1 beýleki | |
1 ähtimal | |
1 şire | |
1 çyg | |
1 tagam | |
1 splawy | |
1 guýmak | |
1 garylmak | |
1 tebigat | |
1 iň | |
1 wajyp | |
1 ugurlarynyň | |
1 gurluşlary | |
1 üýtgeýişleri | |
1 şeýle | |
Translation time: 0.011470556259155273 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tuk-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tur -> tuk | |
[Errno 2] No such file or directory: 'tur-tuk.automorf.bin' | |
wikipedia coverage tur -> tuk | |
[Errno 2] No such file or directory: 'tur-tuk.automorf.bin' | |
tur aze | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit b12fd6e161ca7f1449f08562c2f269ca123d33de | |
configure.ac:5: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:5: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
configure.ac:35: error: required file 'morph-az/Makefile.in' not found | |
configure.ac:35: error: required file 'morph-tr/Makefile.in' not found | |
autoreconf: automake failed with exit status: 1 | |
bible coverage tur -> aze | |
[Errno 2] No such file or directory: 'tur-aze.automorf.bin' | |
wikipedia coverage tur -> aze | |
[Errno 2] No such file or directory: 'tur-aze.automorf.bin' | |
bible coverage aze -> tur | |
[Errno 2] No such file or directory: 'aze-tur.automorf.bin' | |
wikipedia coverage aze -> tur | |
[Errno 2] No such file or directory: 'aze-tur.automorf.bin' | |
tur kir | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 0490bbeb2c6c0d2f2e4976ba12237695386b3283 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
configure.ac:4: installing './install-sh' | |
configure.ac:4: installing './missing' | |
Makefile.am: installing './INSTALL' | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
Using apertium-kir from ../../apertium-languages/apertium-kir/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
Making clean in ../../apertium-languages/apertium-tur/ | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tur“ wird betreten | |
test -z "tur.automorf.hfst tur.autogen.hfst tur.automorf.bin tur.autogen.bin tur.autopgen.bin tur.automorf.att.gz tur.autogen.att.gz tur.rlx.bin" || rm -f tur.automorf.hfst tur.autogen.hfst tur.automorf.bin tur.autogen.bin tur.autopgen.bin tur.automorf.att.gz tur.autogen.att.gz tur.rlx.bin | |
rm -rf .deps modes | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tur“ wird verlassen | |
Making clean in ../../apertium-languages/apertium-kir/ | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kir“ wird betreten | |
test -z "kir.automorf.hfst kir.autogen.hfst kir.autopgen.bin kir.automorf.bin kir.autogen.bin kir.automorf.att.gz kir.autogen.att.gz kir.rlx.bin" || rm -f kir.automorf.hfst kir.autogen.hfst kir.autopgen.bin kir.automorf.bin kir.autogen.bin kir.automorf.att.gz kir.autogen.att.gz kir.rlx.bin | |
rm -rf .deps modes | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kir“ wird verlassen | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-nursery/apertium-tur-kir“ wird betreten | |
test -z "tur-kir.autobil.bin kir-tur.autobil.bin tur-kir.automorf.bin tur-kir.autopgen.bin tur-kir.autogen.bin tur-kir.autogen.hfst kir-tur.autogen.hfst tur-kir.t0x.bin tur-kir.t1x.bin tur-kir.t2x.bin tur-kir.t3x.bin tur-kir.t4x.bin tur-kir.t5x.bin tur-kir.t6x.bin kir-tur.automorf.bin kir-tur.autopgen.bin kir-tur.autogen.bin kir-tur.t1x.bin kir-tur.t2x.bin tur-kir.rlx.bin kir-tur.rlx.bin tur-kir.autolex.bin kir-tur.autolex.bin" || rm -f tur-kir.autobil.bin kir-tur.autobil.bin tur-kir.automorf.bin tur-kir.autopgen.bin tur-kir.autogen.bin tur-kir.autogen.hfst kir-tur.autogen.hfst tur-kir.t0x.bin tur-kir.t1x.bin tur-kir.t2x.bin tur-kir.t3x.bin tur-kir.t4x.bin tur-kir.t5x.bin tur-kir.t6x.bin kir-tur.automorf.bin kir-tur.autopgen.bin kir-tur.autogen.bin kir-tur.t1x.bin kir-tur.t2x.bin tur-kir.rlx.bin kir-tur.rlx.bin tur-kir.autolex.bin kir-tur.autolex.bin | |
rm -rf .deps modes | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-nursery/apertium-tur-kir“ wird verlassen | |
Making all in ../../apertium-languages/apertium-tur/ | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tur“ wird betreten | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-tur.tur.lexc | grep -v 'Dir/RL' > .deps/tur.LR.lexc | |
hfst-lexc --Werror -v .deps/tur.LR.lexc -o .deps/tur.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tur.LR.lexc, writing to .deps/tur.LR.lexc.hfst | |
Parsing lexc file .deps/tur.LR.lexc | |
Root...18 SQRD...5 NUM-DIGIT...18 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 V-AR-TV...1 V-AR-IV...1 V-IR-IV...1 V-IR-TV...1 V-DERIV-AR...8 V-DERIV-AR-COMMON...2 V-DERIV-IR...8 V-DERIV-IR-COMMON...2 V-GERUNDS...7 V-GERUNDS-AOR-AR...1 V-GERUNDS-AOR-IR...1 V-NONFIN-IR...4 V-NONFIN-AR...4 V-NONFIN-COMMON...4 V-PRC...2 V-AOR-NONFIN-AR...3 V-AOR-NONFIN-IR...3 V-PRC-COMMON...1 V-GNA-COMMON...1 V-GPR...4 V-GPR-DIK-COMMON...2 V-GPR-DIK-PERS...6 V-GPR-COMMON...2 V-GNA-ABIL...1 V-GNA-ABIL-NEG...3 V-GNA...4 V-FIN-AR...2 V-FIN-IR...2 V-AOR-IR...2 V-AOR-AR...2 V-AOR-NEG...1 V-TENSE-COMMON...2 V-TENSE-MA...2 V-TENSE-MA-NEG...1 V-TENSE-MA-COMMON...7 V-IFI-COND...2 V-PROG...1 V-FUT...1 V-NEC...1 V-TENSE-ABIL...6 V-TENSE-ABIL-NEG...3 V-TENSE-ABIL-AFF...3 V-PAST...1 V-POT...1 V-IMP...10 V-IFI-COND-COMMON...1 V-IFI...2 V-COND...3 V-COND-COP...1 V-COND-COP-IFI...1 V-COP-PERS...7 V-COP-IFI-PERS...6 V-IFI-COND-PERS...7 V-IFI-COND-PERS-QST...2 V-INFL-PRE-COP...3 V-DUB...2 V-DUB-COMMON...3 V-IFI-COP...1 V-MI...1 V-MI-COMMON...1 V-COP...5 V-COP-IFI...1 V-IFI-COP-COND...1 COPULA-MIMIS-DUB...2 COPULA-MIMIS-COMMON...2 COPULA-MIMIS-COP...3 COPULA-P3-PERS...3 COPULA-MIMIS-MI...2 COPULA-MIMIS...1 COPULA-IFI-KEN...2 COPULA-KEN...1 COPULA-AOR...1 PERS-COP-PRES...13 COPULA-IFI-PRS...7 COPULA-IFI...1 COPULA-COND...1 CLIT...2 CLIT-NOPERS...2 V-NOPERS-COP...2 CLIT-GENERAL...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...4 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 GER-CASE-ETC...2 GER-GENPOSS-ETC...1 POSS-REAL...8 GER-POSS-REAL...6 N-INFL-COMMON...2 GER-N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 GER-SUBST...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PP-PERS...7 FULL-NOMINAL-INFLECTION...3 N1...3 N2...2 N3...4 N4...1 N5...5 NP-TOP...7 NP2-TOP...2 NP3-TOP...2 NP4-TOP...2 NP-ORG...3 NP-ORG-COMPOUND-PX...2 NP-ANT-M...5 NP-ANT-F...5 NP-COG-ZADE...11 NP-COG-MF...6 NP-COG-OV...12 NP-PAT-VICH...12 NP-AL-PL...5 NP-AL...4 NP-TOP-ACR...4 PRON-PERS...90 PRON-DEM-BU...12 PRON-ITG-NERE...8 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...13 PRON-QNT...2 PRON-QNT-ÇOĞU...2 PRON-RECIP...1 PRON-NEG...1 PRON-REF...8 PRON-ADV...1 CA...1 CS...1 CC...1 POSTADV...1 NUM...4 ADV1...3 ADV2...3 ADV3...2 ADV4...3 ADV-ITG...2 ADJ-CLIT...2 A1...3 A2...2 A3...2 A4...2 V-PERS-COP-G2-NOSG3-FINAL...6 INTERJ...1 POST...1 DET-REF...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 TIT...1 NUM-ROMAN...1 SYM-HASH...1 SYM-HASH-TAG...1 SYM...1 ABBR...1 Miscellaneous...10 Postadverbs...3 Postpositions...71 Conjunctions...134 Pronouns...41 Determiners...56 Numerals...51 Titles...1 Nouns...8554 ProperNouns...8551 Adjectives...2311 Adverbs...621 Verbs...1980 Interjections...71 Symbols...3 Abbreviations...44 Punctuation...24 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADJ-CLIT Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... COPULA-AOR Morphotaxing... COPULA-COND Morphotaxing... COPULA-IFI Morphotaxing... COPULA-IFI-KEN Morphotaxing... COPULA-IFI-PRS Morphotaxing... COPULA-KEN Morphotaxing... COPULA-MIMIS Morphotaxing... COPULA-MIMIS-COMMON Morphotaxing... COPULA-MIMIS-COP Morphotaxing... COPULA-MIMIS-DUB Morphotaxing... COPULA-MIMIS-MI Morphotaxing... COPULA-P3-PERS Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GER-CASE-ETC Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-POSS-REAL Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-ZADE Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND-PX Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ACR Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PERS-COP-PRES Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-ÇOĞU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-AOR-AR Morphotaxing... V-AOR-IR Morphotaxing... V-AOR-NEG Morphotaxing... V-AOR-NONFIN-AR Morphotaxing... V-AOR-NONFIN-IR Morphotaxing... V-AR-IV Morphotaxing... V-AR-TV Morphotaxing... V-COND Morphotaxing... V-COND-COP Morphotaxing... V-COND-COP-IFI Morphotaxing... V-COP Morphotaxing... V-COP-IFI Morphotaxing... V-COP-IFI-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-DERIV-AR Morphotaxing... V-DERIV-AR-COMMON Morphotaxing... V-DERIV-IR Morphotaxing... V-DERIV-IR-COMMON Morphotaxing... V-DUB Morphotaxing... V-DUB-COMMON Morphotaxing... V-FIN-AR Morphotaxing... V-FIN-IR Morphotaxing... V-FUT Morphotaxing... V-GERUNDS Morphotaxing... V-GERUNDS-AOR-AR Morphotaxing... V-GERUNDS-AOR-IR Morphotaxing... V-GNA Morphotaxing... V-GNA-ABIL Morphotaxing... V-GNA-ABIL-NEG Morphotaxing... V-GNA-COMMON Morphotaxing... V-GPR Morphotaxing... V-GPR-COMMON Morphotaxing... V-GPR-DIK-COMMON Morphotaxing... V-GPR-DIK-PERS Morphotaxing... V-IFI Morphotaxing... V-IFI-COND Morphotaxing... V-IFI-COND-COMMON Morphotaxing... V-IFI-COND-PERS Morphotaxing... V-IFI-COND-PERS-QST Morphotaxing... V-IFI-COP Morphotaxing... V-IFI-COP-COND Morphotaxing... V-IMP Morphotaxing... V-INFL-PRE-COP Morphotaxing... V-IR-IV Morphotaxing... V-IR-TV Morphotaxing... V-MI Morphotaxing... V-MI-COMMON Morphotaxing... V-NEC Morphotaxing... V-NONFIN-AR Morphotaxing... V-NONFIN-COMMON Morphotaxing... V-NONFIN-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PAST Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-POT Morphotaxing... V-PRC Morphotaxing... V-PRC-COMMON Morphotaxing... V-PROG Morphotaxing... V-TENSE-ABIL Morphotaxing... V-TENSE-ABIL-AFF Morphotaxing... V-TENSE-ABIL-NEG Morphotaxing... V-TENSE-COMMON Morphotaxing... V-TENSE-MA Morphotaxing... V-TENSE-MA-COMMON Morphotaxing... V-TENSE-MA-NEG Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-tur.tur.twol -o .deps/tur.twol.hfst | |
Reading input from apertium-tur.tur.twol. | |
Writing output to .deps/tur.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tur.LR.lexc.hfst -2 .deps/tur.twol.hfst -o .deps/tur.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tur.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o tur.automorf.hfst | |
cat apertium-tur.tur.lexc | grep -v 'Dir/LR' > .deps/tur.RL.lexc | |
hfst-lexc --Werror -v .deps/tur.RL.lexc -o .deps/tur.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tur.RL.lexc, writing to .deps/tur.RL.lexc.hfst | |
Parsing lexc file .deps/tur.RL.lexc | |
Root...18 SQRD...3 NUM-DIGIT...14 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 V-AR-TV...1 V-AR-IV...1 V-IR-IV...1 V-IR-TV...1 V-DERIV-AR...7 V-DERIV-AR-COMMON...2 V-DERIV-IR...7 V-DERIV-IR-COMMON...2 V-GERUNDS...7 V-GERUNDS-AOR-AR...1 V-GERUNDS-AOR-IR...1 V-NONFIN-IR...4 V-NONFIN-AR...4 V-NONFIN-COMMON...4 V-PRC...2 V-AOR-NONFIN-AR...3 V-AOR-NONFIN-IR...3 V-PRC-COMMON...1 V-GNA-COMMON...1 V-GPR...4 V-GPR-DIK-COMMON...2 V-GPR-DIK-PERS...6 V-GPR-COMMON...2 V-GNA-ABIL...1 V-GNA-ABIL-NEG...3 V-GNA...4 V-FIN-AR...2 V-FIN-IR...2 V-AOR-IR...2 V-AOR-AR...2 V-AOR-NEG...1 V-TENSE-COMMON...2 V-TENSE-MA...2 V-TENSE-MA-NEG...1 V-TENSE-MA-COMMON...7 V-IFI-COND...2 V-PROG...1 V-FUT...1 V-NEC...1 V-TENSE-ABIL...6 V-TENSE-ABIL-NEG...3 V-TENSE-ABIL-AFF...3 V-PAST...1 V-POT...1 V-IMP...9 V-IFI-COND-COMMON...1 V-IFI...2 V-COND...3 V-COND-COP...1 V-COND-COP-IFI...1 V-COP-PERS...7 V-COP-IFI-PERS...6 V-IFI-COND-PERS...7 V-IFI-COND-PERS-QST...2 V-INFL-PRE-COP...3 V-DUB...2 V-DUB-COMMON...3 V-IFI-COP...1 V-MI...1 V-MI-COMMON...1 V-COP...5 V-COP-IFI...1 V-IFI-COP-COND...1 COPULA-MIMIS-DUB...2 COPULA-MIMIS-COMMON...2 COPULA-MIMIS-COP...3 COPULA-P3-PERS...3 COPULA-MIMIS-MI...2 COPULA-MIMIS...1 COPULA-IFI-KEN...2 COPULA-KEN...1 COPULA-AOR...1 PERS-COP-PRES...13 COPULA-IFI-PRS...7 COPULA-IFI...1 COPULA-COND...1 CLIT...2 CLIT-NOPERS...2 V-NOPERS-COP...2 CLIT-GENERAL...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...4 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 GER-CASE-ETC...2 GER-GENPOSS-ETC...1 POSS-REAL...8 GER-POSS-REAL...6 N-INFL-COMMON...2 GER-N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 GER-SUBST...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PP-PERS...7 FULL-NOMINAL-INFLECTION...3 N1...3 N2...2 N3...4 N4...1 N5...5 NP-TOP...8 NP2-TOP...3 NP3-TOP...3 NP4-TOP...3 NP-ORG...3 NP-ORG-COMPOUND-PX...2 NP-ANT-M...5 NP-ANT-F...5 NP-COG-ZADE...6 NP-COG-MF...6 NP-COG-OV...12 NP-PAT-VICH...12 NP-AL-PL...5 NP-AL...4 NP-TOP-ACR...4 PRON-PERS...90 PRON-DEM-BU...12 PRON-ITG-NERE...7 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...13 PRON-QNT...2 PRON-QNT-ÇOĞU...2 PRON-RECIP...1 PRON-NEG...1 PRON-REF...8 PRON-ADV...1 CA...1 CS...1 CC...1 POSTADV...1 NUM...4 ADV1...3 ADV2...3 ADV3...2 ADV4...3 ADV-ITG...2 ADJ-CLIT...2 A1...3 A2...2 A3...2 A4...2 V-PERS-COP-G2-NOSG3-FINAL...6 INTERJ...1 POST...1 DET-REF...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 TIT...1 NUM-ROMAN...1 SYM-HASH...1 SYM-HASH-TAG...1 SYM...1 ABBR...1 Miscellaneous...8 Postadverbs...2 Postpositions...70 Conjunctions...130 Pronouns...39 Determiners...56 Numerals...50 Titles...1 Nouns...8494 ProperNouns...8547 Adjectives...2319 Adverbs...626 Verbs...1995 Interjections...69 BARB...1 Symbols...5 Abbreviations...44 Punctuation...24 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADJ-CLIT Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... COPULA-AOR Morphotaxing... COPULA-COND Morphotaxing... COPULA-IFI Morphotaxing... COPULA-IFI-KEN Morphotaxing... COPULA-IFI-PRS Morphotaxing... COPULA-KEN Morphotaxing... COPULA-MIMIS Morphotaxing... COPULA-MIMIS-COMMON Morphotaxing... COPULA-MIMIS-COP Morphotaxing... COPULA-MIMIS-DUB Morphotaxing... COPULA-MIMIS-MI Morphotaxing... COPULA-P3-PERS Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GER-CASE-ETC Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-POSS-REAL Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-ZADE Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND-PX Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ACR Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PERS-COP-PRES Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-ÇOĞU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-AOR-AR Morphotaxing... V-AOR-IR Morphotaxing... V-AOR-NEG Morphotaxing... V-AOR-NONFIN-AR Morphotaxing... V-AOR-NONFIN-IR Morphotaxing... V-AR-IV Morphotaxing... V-AR-TV Morphotaxing... V-COND Morphotaxing... V-COND-COP Morphotaxing... V-COND-COP-IFI Morphotaxing... V-COP Morphotaxing... V-COP-IFI Morphotaxing... V-COP-IFI-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-DERIV-AR Morphotaxing... V-DERIV-AR-COMMON Morphotaxing... V-DERIV-IR Morphotaxing... V-DERIV-IR-COMMON Morphotaxing... V-DUB Morphotaxing... V-DUB-COMMON Morphotaxing... V-FIN-AR Morphotaxing... V-FIN-IR Morphotaxing... V-FUT Morphotaxing... V-GERUNDS Morphotaxing... V-GERUNDS-AOR-AR Morphotaxing... V-GERUNDS-AOR-IR Morphotaxing... V-GNA Morphotaxing... V-GNA-ABIL Morphotaxing... V-GNA-ABIL-NEG Morphotaxing... V-GNA-COMMON Morphotaxing... V-GPR Morphotaxing... V-GPR-COMMON Morphotaxing... V-GPR-DIK-COMMON Morphotaxing... V-GPR-DIK-PERS Morphotaxing... V-IFI Morphotaxing... V-IFI-COND Morphotaxing... V-IFI-COND-COMMON Morphotaxing... V-IFI-COND-PERS Morphotaxing... V-IFI-COND-PERS-QST Morphotaxing... V-IFI-COP Morphotaxing... V-IFI-COP-COND Morphotaxing... V-IMP Morphotaxing... V-INFL-PRE-COP Morphotaxing... V-IR-IV Morphotaxing... V-IR-TV Morphotaxing... V-MI Morphotaxing... V-MI-COMMON Morphotaxing... V-NEC Morphotaxing... V-NONFIN-AR Morphotaxing... V-NONFIN-COMMON Morphotaxing... V-NONFIN-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PAST Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-POT Morphotaxing... V-PRC Morphotaxing... V-PRC-COMMON Morphotaxing... V-PROG Morphotaxing... V-TENSE-ABIL Morphotaxing... V-TENSE-ABIL-AFF Morphotaxing... V-TENSE-ABIL-NEG Morphotaxing... V-TENSE-COMMON Morphotaxing... V-TENSE-MA Morphotaxing... V-TENSE-MA-COMMON Morphotaxing... V-TENSE-MA-NEG Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/tur.RL.lexc.hfst -2 .deps/tur.twol.hfst -o .deps/tur.RL.hfst | |
hfst-fst2fst -O .deps/tur.RL.hfst -o tur.autogen.hfst | |
hfst-fst2txt tur.automorf.hfst | gzip -9 -c -n > tur.automorf.att.gz | |
zcat < tur.automorf.att.gz > .deps/tur.automorf.att | |
lt-comp lr .deps/tur.automorf.att tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
hfst-fst2txt tur.autogen.hfst | gzip -9 -c -n > tur.autogen.att.gz | |
zcat < tur.autogen.att.gz > .deps/tur.autogen.att | |
lt-comp lr .deps/tur.autogen.att tur.autogen.bin | |
main@standard 58746 1073824 | |
final@inconditional 2376 3848 | |
lt-comp lr apertium-tur.post-tur.dix tur.autopgen.bin | |
main@standard 14 218 | |
/usr/bin/cg-comp apertium-tur.tur.rlx tur.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tur“ wird verlassen | |
Making all in ../../apertium-languages/apertium-kir/ | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kir“ wird betreten | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kir.kir.lexc | grep -v 'Dir/RL' > .deps/kir.LR.lexc | |
hfst-lexc -W -v .deps/kir.LR.lexc -o .deps/kir.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kir.LR.lexc, writing to .deps/kir.LR.lexc.hfst | |
Parsing lexc file .deps/kir.LR.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...39 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...13 DIGITLEX...10 CASES-DEFAULT...5 CASES...2 CASES-PX12SG...3 NIKI...2 DAY...5 GEN-POS...4 GEN-POS-PX12SG...3 POSSESSION...2 POSSESSION-ENDINGS...7 VOL-ENDINGS...8 EXI...3 ABESSIVE-SUFFIX...1 LUU-SUFFIX...1 SUBST-COMMON...5 N1-ABBR...3 N-INFL-COMMON...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-SG...5 N-INFL-PL...4 N1...1 N6...2 N-INFL...2 N-INFL-KI...2 N-INFL-NKI...3 N-COMPOUND-PX-COMMON...2 N-INFL-3PX-COMPOUND...2 GER-INFL...3 NP-ORG-COMPOUND...1 ADV-LANG...2 NP-TOP-ASSR...3 NP-TOP...2 NP-TOP-CLUSTER...2 NP-TOP-ABBR...4 NP-COMMON...1 NP-COG-COMMON...2 NP-COG-IN...2 NP-COG-OB...2 NP-COG-MF...1 NP-COG-M...1 NP-COG-F...1 NP-ANT-M...2 NP-ANT-F...2 NP-ANT-MF...2 NP-PAT-VICH...2 NP-ORG...2 NP-ORG-LAT...4 NP-TOP-COMPOUND...2 NAT...5 NUM-COMMON...2 NUM-ROMAN...1 NUM...3 NUM-ITG...3 NP-AL-PL...3 NP-AL...2 ADJ-LEVELS...3 A1...10 A2...7 A3...2 A4...1 A5...4 A6...3 CLIT...2 SUBST...1 ADJ-COMMON...2 DAGI...3 V-ADJ...2 ATTR...2 ADJ...4 KI...2 ADV-KI...1 IRREGULAR-KI...2 ADV-WITH-KI-ABL...3 ADV-WITH-KI...2 ADV-WITH-ABL...2 ADV-WITH-ABL-REG...2 ADV-WITH-IRREGULAR-KI...2 ADV-ABL...1 ADV-ABL-REG...1 ADVL...2 ADV...1 ADVITG...1 POST...1 POST-DECL...2 CA...1 CS...1 CC...1 POSTADV...1 ABBR...1 INTERJ...1 DET-DEM...1 DET-DEM-L...1 DET-IND...1 DET-QNT...1 DET-REF...1 PRON-DEM-PL...2 PRON-DEM-BUL...15 PRON-DEM-L...15 PRON-DEM-AL...14 PRON-DEM-TIGIL...14 PRON-PERS-EN...11 PRON-PERS-IZ...9 PRON-PERS-AL...9 PRON-PERS-PLURALS...9 PRON-ITG...1 PRON-ITG-QANDAY...5 PRON-REF-ADV...2 PRON-REFL...8 PRON-IND...2 PRON-IND-POSS...1 PRON-DEM...2 PRON-QNT...2 PRON-QNT-POSS...1 PRN-NEG...1 PRON-RECIP...1 PRON-COLL...3 CLIT-QST-NO-BI...4 CLIT-QST...2 CLIT-MODASS...2 CLIT-GANA-ETC...1 CLITICS-NO-COP...3 CLITICS-INCL-COP...2 CLIT-COP...1 PRED...3 CLIT-NONPRED...2 V-CLIT-BI...2 V-CLIT-OTHER...7 V-CLIT...2 V-PERS-COP...1 V-PERS-COP-SUF...3 V-PERS-COP-SUF-NOP3...6 V-PERS-PAST...8 V-PERS-COND...8 V-PERS-PRES...10 V-INFL-COMMON...3 V-INFL-COMMON-SECOND...4 V-INFL-NON-FINITE...3 V-INFL-NON-FINITE-IRREG...28 IMP...2 CLIT-CHI...1 V-INFL-NON-FINITE-REG...37 V-INFL-FINITE...3 V-FINITE-REGULAR_NEGATIVE...5 V-FINITE-IRREGULAR_NEGATIVE...14 V-INFL-ASIF...4 V-INFL-TV-SHORT...6 V-INFL-TV...6 V-INFL-TV-NOPASS...1 V-INFL-TV-PASS...2 V-INFL-IV...4 V-INFL-TV-NO-CAUS...2 V-INFL-IV-NO-CAUS...1 V-INFL-TV-IRREG-CAUS...3 V-INFL-IV-IRREG-CAUS...3 VAUX-INFL...1 Miscellaneous...4 Postadverbs...10 Conjunctions...80 Postpositions...57 Determiners...77 Pronouns...65 Numerals...68 Nouns...4852 ProperNouns...6463 AdjectivePrefixes...2 Adjectives...1320 Adverbs...457 Copula...8 Verbs...1328 Abbreviations...133 Interjections...48 Punctuation...22 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A5 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-SUFFIX Morphotaxing... ADJ Morphotaxing... ADJ-COMMON Morphotaxing... ADJ-LEVELS Morphotaxing... ADV Morphotaxing... ADV-ABL Morphotaxing... ADV-ABL-REG Morphotaxing... ADV-KI Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-ABL Morphotaxing... ADV-WITH-ABL-REG Morphotaxing... ADV-WITH-IRREGULAR-KI Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-ABL Morphotaxing... ADVITG Morphotaxing... ADVL Morphotaxing... ATTR Morphotaxing... Abbreviations Morphotaxing... AdjectivePrefixes Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-DEFAULT Morphotaxing... CASES-PX12SG Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-CHI Morphotaxing... CLIT-COP Morphotaxing... CLIT-GANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-NONPRED Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-NO-BI Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DAGI Morphotaxing... DAY Morphotaxing... DET-DEM Morphotaxing... DET-DEM-L Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EXI Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GEN-POS Morphotaxing... GEN-POS-PX12SG Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IMP Morphotaxing... INTERJ Morphotaxing... IRREGULAR-KI Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... LUU-SUFFIX Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL Morphotaxing... N-INFL-3PX-COMPOUND Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N-INFL-KI Morphotaxing... N-INFL-NKI Morphotaxing... N-INFL-PL Morphotaxing... N-INFL-SG Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N6 Morphotaxing... NAT Morphotaxing... NIKI Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-MF Morphotaxing... NP-COG-COMMON Morphotaxing... NP-COG-F Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-CLUSTER Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSION Morphotaxing... POSSESSION-ENDINGS Morphotaxing... POST Morphotaxing... POST-DECL Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRED Morphotaxing... PRN-NEG Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-AL Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-L Morphotaxing... PRON-DEM-PL Morphotaxing... PRON-DEM-TIGIL Morphotaxing... PRON-IND Morphotaxing... PRON-IND-POSS Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-PERS-AL Morphotaxing... PRON-PERS-EN Morphotaxing... PRON-PERS-IZ Morphotaxing... PRON-PERS-PLURALS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-COMMON Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-CLIT Morphotaxing... V-CLIT-BI Morphotaxing... V-CLIT-OTHER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-INFL-ASIF Morphotaxing... V-INFL-COMMON Morphotaxing... V-INFL-COMMON-SECOND Morphotaxing... V-INFL-FINITE Morphotaxing... V-INFL-IV Morphotaxing... V-INFL-IV-IRREG-CAUS Morphotaxing... V-INFL-IV-NO-CAUS Morphotaxing... V-INFL-NON-FINITE Morphotaxing... V-INFL-NON-FINITE-IRREG Morphotaxing... V-INFL-NON-FINITE-REG Morphotaxing... V-INFL-TV Morphotaxing... V-INFL-TV-IRREG-CAUS Morphotaxing... V-INFL-TV-NO-CAUS Morphotaxing... V-INFL-TV-NOPASS Morphotaxing... V-INFL-TV-PASS Morphotaxing... V-INFL-TV-SHORT Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-SUF Morphotaxing... V-PERS-COP-SUF-NOP3 Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PRES Morphotaxing... VAUX-INFL Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-kir.kir.twol -o .deps/kir.twol.hfst | |
Reading input from apertium-kir.kir.twol. | |
Writing output to .deps/kir.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kir.LR.lexc.hfst -2 .deps/kir.twol.hfst | hfst-invert -o .deps/kir.LR.hfst | |
hfst-twolc apertium-kir.kir.twoc -o .deps/kir.twoc.hfst | |
Reading input from apertium-kir.kir.twoc. | |
Writing output to .deps/kir.twoc.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kir.LR.hfst -2 .deps/kir.twoc.hfst | hfst-fst2fst -w -o kir.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<cm>") in | |
transducer in file .deps/kir.LR.hfst which are not found on the | |
input tapes of transducers in file .deps/kir.twoc.hfst. | |
cat apertium-kir.kir.lexc | grep -v 'Dir/LR' > .deps/kir.RL.lexc | |
hfst-lexc -W -v .deps/kir.RL.lexc -o .deps/kir.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kir.RL.lexc, writing to .deps/kir.RL.lexc.hfst | |
Parsing lexc file .deps/kir.RL.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...13 DIGITLEX...10 CASES-DEFAULT...5 CASES...2 CASES-PX12SG...2 NIKI...2 DAY...5 GEN-POS...4 GEN-POS-PX12SG...3 POSSESSION...2 POSSESSION-ENDINGS...7 VOL-ENDINGS...8 EXI...3 ABESSIVE-SUFFIX...1 LUU-SUFFIX...1 SUBST-COMMON...5 N1-ABBR...3 N-INFL-COMMON...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-SG...5 N-INFL-PL...4 N1...1 N6...1 N-INFL...2 N-INFL-KI...2 N-INFL-NKI...2 N-COMPOUND-PX-COMMON...2 N-INFL-3PX-COMPOUND...2 GER-INFL...3 NP-ORG-COMPOUND...1 ADV-LANG...2 NP-TOP-ASSR...2 NP-TOP...2 NP-TOP-CLUSTER...1 NP-TOP-ABBR...2 NP-COMMON...1 NP-COG-COMMON...2 NP-COG-IN...2 NP-COG-OB...2 NP-COG-MF...1 NP-COG-M...1 NP-COG-F...1 NP-ANT-M...2 NP-ANT-F...2 NP-ANT-MF...2 NP-PAT-VICH...2 NP-ORG...2 NP-ORG-LAT...3 NP-TOP-COMPOUND...2 NAT...5 NUM-COMMON...2 NUM-ROMAN...1 NUM...3 NUM-ITG...3 NP-AL-PL...3 NP-AL...2 ADJ-LEVELS...2 A1...7 A2...5 A3...2 A4...1 A5...3 A6...3 CLIT...2 SUBST...1 ADJ-COMMON...2 DAGI...3 V-ADJ...2 ATTR...2 ADJ...4 KI...2 ADV-KI...1 IRREGULAR-KI...2 ADV-WITH-KI-ABL...3 ADV-WITH-KI...2 ADV-WITH-ABL...2 ADV-WITH-ABL-REG...2 ADV-WITH-IRREGULAR-KI...1 ADV-ABL...1 ADV-ABL-REG...1 ADVL...2 ADV...1 ADVITG...1 POST...1 POST-DECL...2 CA...1 CS...1 CC...1 POSTADV...1 ABBR...1 INTERJ...1 DET-DEM...1 DET-DEM-L...1 DET-IND...1 DET-QNT...1 DET-REF...1 PRON-DEM-PL...2 PRON-DEM-BUL...14 PRON-DEM-L...14 PRON-DEM-AL...14 PRON-DEM-TIGIL...13 PRON-PERS-EN...9 PRON-PERS-IZ...9 PRON-PERS-AL...9 PRON-PERS-PLURALS...9 PRON-ITG...1 PRON-ITG-QANDAY...5 PRON-REF-ADV...2 PRON-REFL...8 PRON-IND...2 PRON-IND-POSS...1 PRON-DEM...2 PRON-QNT...2 PRON-QNT-POSS...1 PRN-NEG...1 PRON-RECIP...1 PRON-COLL...3 CLIT-QST-NO-BI...4 CLIT-QST...2 CLIT-MODASS...2 CLIT-GANA-ETC...1 CLITICS-NO-COP...3 CLITICS-INCL-COP...2 CLIT-COP...1 PRED...3 CLIT-NONPRED...2 V-CLIT-BI...2 V-CLIT-OTHER...7 V-CLIT...2 V-PERS-COP...1 V-PERS-COP-SUF...3 V-PERS-COP-SUF-NOP3...6 V-PERS-PAST...8 V-PERS-COND...8 V-PERS-PRES...10 V-INFL-COMMON...2 V-INFL-COMMON-SECOND...4 V-INFL-NON-FINITE...3 V-INFL-NON-FINITE-IRREG...18 IMP...2 CLIT-CHI...1 V-INFL-NON-FINITE-REG...32 V-INFL-FINITE...3 V-FINITE-REGULAR_NEGATIVE...4 V-FINITE-IRREGULAR_NEGATIVE...12 V-INFL-ASIF...4 V-INFL-TV-SHORT...6 V-INFL-TV...6 V-INFL-TV-NOPASS...1 V-INFL-TV-PASS...2 V-INFL-IV...4 V-INFL-TV-NO-CAUS...2 V-INFL-IV-NO-CAUS...1 V-INFL-TV-IRREG-CAUS...3 V-INFL-IV-IRREG-CAUS...3 VAUX-INFL...1 Miscellaneous...4 Postadverbs...9 Conjunctions...82 Postpositions...56 Determiners...68 Pronouns...59 Numerals...68 Nouns...4779 ProperNouns...6449 AdjectivePrefixes...1 Adjectives...1268 Adverbs...444 Copula...11 Verbs...1316 Abbreviations...131 Interjections...45 Punctuation...22 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A5 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-SUFFIX Morphotaxing... ADJ Morphotaxing... ADJ-COMMON Morphotaxing... ADJ-LEVELS Morphotaxing... ADV Morphotaxing... ADV-ABL Morphotaxing... ADV-ABL-REG Morphotaxing... ADV-KI Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-ABL Morphotaxing... ADV-WITH-ABL-REG Morphotaxing... ADV-WITH-IRREGULAR-KI Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-ABL Morphotaxing... ADVITG Morphotaxing... ADVL Morphotaxing... ATTR Morphotaxing... Abbreviations Morphotaxing... AdjectivePrefixes Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-DEFAULT Morphotaxing... CASES-PX12SG Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-CHI Morphotaxing... CLIT-COP Morphotaxing... CLIT-GANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-NONPRED Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-NO-BI Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DAGI Morphotaxing... DAY Morphotaxing... DET-DEM Morphotaxing... DET-DEM-L Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EXI Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GEN-POS Morphotaxing... GEN-POS-PX12SG Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IMP Morphotaxing... INTERJ Morphotaxing... IRREGULAR-KI Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... LUU-SUFFIX Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL Morphotaxing... N-INFL-3PX-COMPOUND Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N-INFL-KI Morphotaxing... N-INFL-NKI Morphotaxing... N-INFL-PL Morphotaxing... N-INFL-SG Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N6 Morphotaxing... NAT Morphotaxing... NIKI Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-MF Morphotaxing... NP-COG-COMMON Morphotaxing... NP-COG-F Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-CLUSTER Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSION Morphotaxing... POSSESSION-ENDINGS Morphotaxing... POST Morphotaxing... POST-DECL Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRED Morphotaxing... PRN-NEG Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-AL Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-L Morphotaxing... PRON-DEM-PL Morphotaxing... PRON-DEM-TIGIL Morphotaxing... PRON-IND Morphotaxing... PRON-IND-POSS Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-PERS-AL Morphotaxing... PRON-PERS-EN Morphotaxing... PRON-PERS-IZ Morphotaxing... PRON-PERS-PLURALS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-COMMON Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-CLIT Morphotaxing... V-CLIT-BI Morphotaxing... V-CLIT-OTHER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-INFL-ASIF Morphotaxing... V-INFL-COMMON Morphotaxing... V-INFL-COMMON-SECOND Morphotaxing... V-INFL-FINITE Morphotaxing... V-INFL-IV Morphotaxing... V-INFL-IV-IRREG-CAUS Morphotaxing... V-INFL-IV-NO-CAUS Morphotaxing... V-INFL-NON-FINITE Morphotaxing... V-INFL-NON-FINITE-IRREG Morphotaxing... V-INFL-NON-FINITE-REG Morphotaxing... V-INFL-TV Morphotaxing... V-INFL-TV-IRREG-CAUS Morphotaxing... V-INFL-TV-NO-CAUS Morphotaxing... V-INFL-TV-NOPASS Morphotaxing... V-INFL-TV-PASS Morphotaxing... V-INFL-TV-SHORT Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-SUF Morphotaxing... V-PERS-COP-SUF-NOP3 Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PRES Morphotaxing... VAUX-INFL Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/kir.RL.lexc.hfst -2 .deps/kir.twol.hfst | hfst-invert -o .deps/kir.RL.hfst | |
hfst-compose-intersect -1 .deps/kir.RL.hfst -2 .deps/kir.twoc.hfst | hfst-invert | hfst-fst2fst -w -o kir.autogen.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<cop>") in | |
transducer in file .deps/kir.RL.hfst which are not found on the | |
input tapes of transducers in file .deps/kir.twoc.hfst. | |
lt-comp lr apertium-kir.post-kir.dix kir.autopgen.bin | |
main@standard 9 92 | |
hfst-fst2txt kir.automorf.hfst | gzip -9 -c -n > kir.automorf.att.gz | |
zcat < kir.automorf.att.gz > .deps/kir.automorf.att | |
lt-comp lr .deps/kir.automorf.att kir.automorf.bin | |
main@standard 27964 61299 | |
final@inconditional 878 2557 | |
hfst-fst2txt kir.autogen.hfst | gzip -9 -c -n > kir.autogen.att.gz | |
zcat < kir.autogen.att.gz > .deps/kir.autogen.att | |
lt-comp lr .deps/kir.autogen.att kir.autogen.bin | |
main@standard 22968 51592 | |
final@inconditional 803 2211 | |
/usr/bin/cg-comp apertium-kir.kir.rlx kir.rlx.bin | |
Sections: 3, Rules: 71, Sets: 102, Tags: 126 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kir“ wird verlassen | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-nursery/apertium-tur-kir“ wird betreten | |
apertium-validate-dictionary apertium-tur-kir.tur-kir.dix | |
lt-comp lr apertium-tur-kir.tur-kir.dix tur-kir.autobil.bin | |
main@standard 20794 28467 | |
apertium-validate-dictionary apertium-tur-kir.tur-kir.dix | |
lt-comp rl apertium-tur-kir.tur-kir.dix kir-tur.autobil.bin | |
main@standard 20793 28465 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print tur-kir.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-kir.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-kir.autobil.att > .deps/tur-kir.autobil.hfst | |
hfst-project -p upper .deps/tur-kir.autobil.hfst > .deps/tur-kir.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-kir.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-kir.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-kir.autobil.prefixes -o .deps/tur-kir.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<sym>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-kir.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-kir.automorf.trimmed -o .deps/tur-kir.automorf.trimmed.att | |
lt-comp lr .deps/tur-kir.automorf.trimmed.att tur-kir.automorf.bin | |
main@standard 12606 25143 | |
final@inconditional 4248 8184 | |
apertium-validate-dictionary ../../apertium-languages/apertium-kir//apertium-kir.post-kir.dix | |
lt-comp lr ../../apertium-languages/apertium-kir//apertium-kir.post-kir.dix tur-kir.autopgen.bin | |
main@standard 9 92 | |
cp ../../apertium-languages/apertium-kir//kir.autogen.bin tur-kir.autogen.bin | |
cp ../../apertium-languages/apertium-kir//kir.autogen.hfst tur-kir.autogen.hfst | |
cp ../../apertium-languages/apertium-tur//tur.autogen.hfst kir-tur.autogen.hfst | |
apertium-validate-transfer apertium-tur-kir.tur-kir.t0x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t0x tur-kir.t0x.bin | |
apertium-validate-transfer apertium-tur-kir.tur-kir.t1x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t1x tur-kir.t1x.bin | |
apertium-validate-transfer apertium-tur-kir.tur-kir.t2x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t2x tur-kir.t2x.bin | |
apertium-validate-transfer apertium-tur-kir.tur-kir.t3x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t3x tur-kir.t3x.bin | |
apertium-validate-interchunk apertium-tur-kir.tur-kir.t4x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t4x tur-kir.t4x.bin | |
apertium-validate-postchunk apertium-tur-kir.tur-kir.t5x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t5x tur-kir.t5x.bin | |
apertium-validate-transfer apertium-tur-kir.tur-kir.t6x | |
apertium-preprocess-transfer apertium-tur-kir.tur-kir.t6x tur-kir.t6x.bin | |
lt-print kir-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kir-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/kir-tur.autobil.att > .deps/kir-tur.autobil.hfst | |
hfst-project -p upper .deps/kir-tur.autobil.hfst > .deps/kir-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kir-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kir-tur.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kir//kir.automorf.att.gz | hfst-txt2fst > .deps/kir.automorf.hfst | |
hfst-compose-intersect -1 .deps/kir.automorf.hfst -2 .deps/kir-tur.autobil.prefixes -o .deps/kir-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<percent>") in | |
transducer in file .deps/kir.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kir-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/kir-tur.automorf.trimmed -o .deps/kir-tur.automorf.trimmed.att | |
lt-comp lr .deps/kir-tur.automorf.trimmed.att kir-tur.automorf.bin | |
main@standard 22111 42691 | |
final@inconditional 827 2300 | |
apertium-validate-dictionary ../../apertium-languages/apertium-tur//apertium-tur.post-tur.dix | |
lt-comp lr ../../apertium-languages/apertium-tur//apertium-tur.post-tur.dix kir-tur.autopgen.bin | |
main@standard 14 218 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin kir-tur.autogen.bin | |
apertium-validate-transfer apertium-tur-kir.kir-tur.t1x | |
apertium-preprocess-transfer apertium-tur-kir.kir-tur.t1x kir-tur.t1x.bin | |
apertium-validate-transfer apertium-tur-kir.kir-tur.t2x | |
apertium-preprocess-transfer apertium-tur-kir.kir-tur.t2x kir-tur.t2x.bin | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-kir.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-kir//apertium-kir.kir.rlx kir-tur.rlx.bin | |
Sections: 3, Rules: 71, Sets: 102, Tags: 126 | |
lrx-comp apertium-tur-kir.tur-kir.lrx tur-kir.autolex.bin | |
538: 8623@9697 | |
lrx-comp apertium-tur-kir.kir-tur.lrx kir-tur.autolex.bin | |
1: 22@23 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
make[1]: Verzeichnis „/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-nursery/apertium-tur-kir“ wird verlassen | |
bible coverage tur -> kir | |
Number of tokenised words in the corpus: 491998 | |
Coverage: 88.27% | |
Top unknown words in the corpus: | |
1433 nın | |
1223 ın | |
966 a | |
659 e | |
505 Yeruşalim | |
476 dan | |
409 na | |
396 ı | |
364 i | |
355 Saul | |
335 la | |
298 nun | |
292 kutsal | |
272 Harun | |
262 yı | |
236 Süleyman | |
228 Babil | |
198 Levililer | |
187 Kâhin | |
186 Yeşu | |
Translation time: 9.00859260559082 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> kir | |
Error: Malformed input stream.Number of tokenised words in the corpus: 17169 | |
Coverage: 79.14% | |
Top unknown words in the corpus: | |
332 Cengiz | |
144 ın | |
124 Temuçin | |
55 a | |
46 i | |
43 ı | |
40 Moğol | |
40 nin | |
34 Camuka | |
34 nın | |
33 Jin | |
33 Tuğrul | |
33 e | |
31 Moğollar | |
29 Cuci | |
28 Kırım | |
27 Harezmşah | |
22 Moğolların | |
22 Cebe | |
22 Hanlığı | |
Translation time: 0.4475407600402832 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-kir.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kir -> tur | |
Number of tokenised words in the corpus: 202951 | |
Coverage: 92.76% | |
Top unknown words in the corpus: | |
946 Кудай | |
597 Кудайдын | |
305 Кудайга | |
98 түбөлүк | |
94 Кудайды | |
90 Кудайдан | |
60 замат | |
58 Ысман | |
57 кээ | |
56 А | |
45 ошого | |
43 кайрылып | |
43 Ыбрайым | |
39 ошону | |
38 Жүйүт | |
38 расмисинен | |
35 туш | |
34 айыгып | |
31 Кээ | |
31 түбөлүккө | |
Translation time: 5.6513659954071045 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kir -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 9371 | |
Coverage: 86.52% | |
Top unknown words in the corpus: | |
24 ж | |
17 А | |
15 С | |
10 К | |
8 б | |
8 Б | |
7 комплекстик | |
7 Н | |
7 Челек | |
6 закон | |
6 Кыргызжер | |
6 Сулайман | |
6 Рабат | |
5 П | |
5 В | |
5 ландшафт | |
5 масштабдагы | |
5 Д | |
5 Памир | |
5 каганаты | |
Translation time: 0.3316919803619385 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kir-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
tur tat | |
Vorherige Position von HEAD war c4e514f minor RL | |
Zu Branch 'master' gewechselt | |
M main.rkt | |
Ihr Branch ist 19 Commits hinter 'origin/master', und kann vorgespult werden. | |
(benutzen Sie "git pull", um Ihren lokalen Branch zu aktualisieren) | |
Aktualisiere fd71641..c4e514f | |
Fast-forward | |
apertium-tur-tat.tat-tur.t1x | 150 +++++++++++++++++++++- | |
apertium-tur-tat.tur-tat.dix | 284 +++++++++++++++++++++++++++++++++++++++-- | |
dev/oguz_2019_tatar_1_eval.txt | 28 ++++ | |
3 files changed, 443 insertions(+), 19 deletions(-) | |
create mode 100644 dev/oguz_2019_tatar_1_eval.txt | |
commit c4e514f7fd1d6ef078a330ace3b3c2dd0ff0357d | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tur-tat.automorf.bin tur-tat.prob tur-tat.rlx.bin tur-tat.autobil.bin tur-tat.autolex.bin tur-tat.autogen.bin tur-tat.autopgen.bin tur-tat.t1x.bin tur-tat.t2x.bin tur-tat.t3x.bin tur-tat.t4x.bin tat-tur.automorf.bin tat-tur.prob tat-tur.rlx.bin tat-tur.autobil.bin tat-tur.autolex.bin tat-tur.autogen.bin tat-tur.autopgen.bin tat-tur.t1x.bin tat-tur.t2x.bin tat-tur.t3x.bin" || rm -f tur-tat.automorf.bin tur-tat.prob tur-tat.rlx.bin tur-tat.autobil.bin tur-tat.autolex.bin tur-tat.autogen.bin tur-tat.autopgen.bin tur-tat.t1x.bin tur-tat.t2x.bin tur-tat.t3x.bin tur-tat.t4x.bin tat-tur.automorf.bin tat-tur.prob tat-tur.rlx.bin tat-tur.autobil.bin tat-tur.autolex.bin tat-tur.autogen.bin tat-tur.autopgen.bin tat-tur.t1x.bin tat-tur.t2x.bin tat-tur.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
apertium-validate-dictionary apertium-tur-tat.tur-tat.dix | |
lt-comp lr apertium-tur-tat.tur-tat.dix tur-tat.autobil.bin | |
main@standard 9854 13808 | |
lt-print tur-tat.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-tat.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-tat.autobil.att > .deps/tur-tat.autobil.hfst | |
hfst-project -p upper .deps/tur-tat.autobil.hfst > .deps/tur-tat.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-tat.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-tat.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-tat.autobil.prefixes -o .deps/tur-tat.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<quot>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-tat.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-tat.automorf.trimmed -o .deps/tur-tat.automorf.trimmed.att | |
lt-comp lr .deps/tur-tat.automorf.trimmed.att tur-tat.automorf.bin | |
main@standard 8697 18304 | |
final@inconditional 2340 4762 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-tat.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-tat.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-tur-tat.tur-tat.lrx tur-tat.autolex.bin | |
2: 26@27 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin tur-tat.autogen.bin | |
cp ../../apertium-languages/apertium-tat//tat.autopgen.bin tur-tat.autopgen.bin | |
apertium-validate-transfer apertium-tur-tat.tur-tat.t1x | |
apertium-preprocess-transfer apertium-tur-tat.tur-tat.t1x tur-tat.t1x.bin | |
Warning (413): assignment to 'sl' side has no effect. | |
apertium-validate-interchunk apertium-tur-tat.tur-tat.t2x | |
apertium-preprocess-transfer apertium-tur-tat.tur-tat.t2x tur-tat.t2x.bin | |
apertium-validate-postchunk apertium-tur-tat.tur-tat.t3x | |
apertium-preprocess-transfer apertium-tur-tat.tur-tat.t3x tur-tat.t3x.bin | |
apertium-validate-transfer apertium-tur-tat.tur-tat.t4x | |
apertium-preprocess-transfer apertium-tur-tat.tur-tat.t4x tur-tat.t4x.bin | |
zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
apertium-validate-dictionary apertium-tur-tat.tur-tat.dix | |
lt-comp rl apertium-tur-tat.tur-tat.dix tat-tur.autobil.bin | |
main@standard 9894 13859 | |
lt-print tat-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-tur.autobil.att > .deps/tat-tur.autobil.hfst | |
hfst-project -p upper .deps/tat-tur.autobil.hfst > .deps/tat-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-tur.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-tur.autobil.prefixes -o .deps/tat-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-tur.automorf.trimmed -o .deps/tat-tur.automorf.trimmed.att | |
lt-comp lr .deps/tat-tur.automorf.trimmed.att tat-tur.automorf.bin | |
main@standard 53123 95274 | |
final@inconditional 33 54 | |
cp ../../apertium-languages/apertium-tat//tat.prob tat-tur.prob | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-tur.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
lrx-comp apertium-tur-tat.tat-tur.lrx tat-tur.autolex.bin | |
4: 93@103 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin tat-tur.autogen.bin | |
cp ../../apertium-languages/apertium-tur//tur.autopgen.bin tat-tur.autopgen.bin | |
apertium-validate-transfer apertium-tur-tat.tat-tur.t1x | |
apertium-preprocess-transfer apertium-tur-tat.tat-tur.t1x tat-tur.t1x.bin | |
apertium-validate-interchunk apertium-tur-tat.tat-tur.t2x | |
apertium-preprocess-transfer apertium-tur-tat.tat-tur.t2x tat-tur.t2x.bin | |
apertium-validate-postchunk apertium-tur-tat.tat-tur.t3x | |
apertium-preprocess-transfer apertium-tur-tat.tat-tur.t3x tat-tur.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/tur.automorf.bin.att .deps/tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
lt-comp lr .deps/tat.automorf.bin.att .deps/tat.automorf.bin | |
main@standard 242055 497437 | |
final@inconditional 805 1769 | |
bible coverage tur -> tat | |
Number of tokenised words in the corpus: 492387 | |
Coverage: 80.90% | |
Top unknown words in the corpus: | |
1482 nın | |
1092 ın | |
914 ki | |
843 a | |
671 dek | |
654 e | |
585 Yahuda | |
528 şöyle | |
505 Yeruşalim | |
503 un | |
492 Böylece | |
487 Egemen | |
409 na | |
358 i | |
355 Saul | |
354 ı | |
345 dan | |
324 la | |
298 nun | |
292 kutsal | |
Translation time: 7.436902046203613 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> tat | |
Error: Malformed input stream.Number of tokenised words in the corpus: 17074 | |
Coverage: 71.57% | |
Top unknown words in the corpus: | |
332 Cengiz | |
143 ın | |
124 Temuçin | |
55 a | |
43 ı | |
41 i | |
40 Moğol | |
40 nin | |
34 Camuka | |
34 nın | |
33 Jin | |
33 Tuğrul | |
31 Moğollar | |
29 e | |
29 Cuci | |
28 Kırım | |
27 Harezmşah | |
22 Moğolların | |
22 Cebe | |
21 ilk | |
Translation time: 0.3606686592102051 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tat -> tur | |
Number of tokenised words in the corpus: 196097 | |
Coverage: 92.21% | |
Top unknown words in the corpus: | |
90 шаһитлек | |
69 руханилар | |
59 һәркем | |
54 һичкем | |
52 фарисейләр | |
48 беркем | |
45 турыда | |
35 һичнәрсә | |
33 һәммә | |
30 кайберләре | |
29 пәйгамбәрлек | |
29 Corinthians | |
28 Matthew | |
28 John | |
28 Acts | |
27 I | |
27 Филип | |
27 куркып | |
24 кайчан | |
24 Luke | |
Translation time: 4.636351823806763 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 50.00% | |
Top unknown words in the corpus: | |
3 Tatnet | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 Tatar | |
1 İnternetı | |
1 Tatarstan | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
Translation time: 0.03349447250366211 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
tur uzb | |
Vorherige Position von HEAD war 6d6725a turar joy | |
Zu Branch 'master' gewechselt | |
Ihr Branch ist 60 Commits hinter 'origin/master', und kann vorgespult werden. | |
(benutzen Sie "git pull", um Ihren lokalen Branch zu aktualisieren) | |
Von github.com:apertium/apertium-tur-uzb | |
6d6725a..e744273 master -> origin/master | |
Aktualisiere 03fd120..e744273 | |
Fast-forward | |
apertium-tur-uzb.tur-uzb.dix | 1886 +++++++++++++++++++++++++++++----------- | |
apertium-tur-uzb.uzb-tur.lrx | 120 ++- | |
apertium-tur-uzb.uzb-tur.rlx | 3 + | |
apertium-tur-uzb.uzb-tur.t1x | 1257 +++++++++++++++++++++++--- | |
dev/oguz_2019_uzbek_1_eval.txt | 28 + | |
dev/transfertest.py | 47 + | |
6 files changed, 2708 insertions(+), 633 deletions(-) | |
create mode 100644 dev/oguz_2019_uzbek_1_eval.txt | |
create mode 100644 dev/transfertest.py | |
commit e74427318d748ba412dcc08519fcfa8b2a768e0c | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for lsx-comp... (cached) /usr/bin/lrx-comp | |
checking for lsx-proc... (cached) /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
Using apertium-uzb from ../../apertium-languages/apertium-uzb/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tur-uzb.automorf.bin tur-uzb.prob tur-uzb.rlx.bin tur-uzb.autobil.bin tur-uzb.autoseq.bin tur-uzb.autolex.bin tur-uzb.autogen.bin tur-uzb.t1x.bin tur-uzb.t2x.bin tur-uzb.t3x.bin uzb-tur.automorf.bin uzb-tur.prob uzb-tur.rlx.bin uzb-tur.autobil.bin uzb-tur.autolex.bin uzb-tur.autogen.bin uzb-tur.t1x.bin uzb-tur.t2x.bin uzb-tur.t3x.bin" || rm -f tur-uzb.automorf.bin tur-uzb.prob tur-uzb.rlx.bin tur-uzb.autobil.bin tur-uzb.autoseq.bin tur-uzb.autolex.bin tur-uzb.autogen.bin tur-uzb.t1x.bin tur-uzb.t2x.bin tur-uzb.t3x.bin uzb-tur.automorf.bin uzb-tur.prob uzb-tur.rlx.bin uzb-tur.autobil.bin uzb-tur.autolex.bin uzb-tur.autogen.bin uzb-tur.t1x.bin uzb-tur.t2x.bin uzb-tur.t3x.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-tur-uzb.tur-uzb.dix | |
lt-comp lr apertium-tur-uzb.tur-uzb.dix tur-uzb.autobil.bin | |
main@standard 5999 8054 | |
unchecked@standard 6153 8055 | |
lt-trim ../../apertium-languages/apertium-tur//tur.automorf.bin tur-uzb.autobil.bin tur-uzb.automorf.bin | |
final@inconditional 635 2021 | |
main@standard 25060 57093 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-uzb.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-uzb.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lsx-comp lr apertium-tur-uzb.tur-uzb.lsx tur-uzb.autoseq.bin | |
main@standard 12 11 | |
lrx-comp apertium-tur-uzb.tur-uzb.lrx tur-uzb.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-uzb//uzb.autogen.bin tur-uzb.autogen.bin | |
apertium-validate-transfer apertium-tur-uzb.tur-uzb.t1x | |
apertium-preprocess-transfer apertium-tur-uzb.tur-uzb.t1x tur-uzb.t1x.bin | |
Warning (66): Paths to rule 2 blocked by rule 1. | |
apertium-validate-interchunk apertium-tur-uzb.tur-uzb.t2x | |
apertium-preprocess-transfer apertium-tur-uzb.tur-uzb.t2x tur-uzb.t2x.bin | |
apertium-validate-postchunk apertium-tur-uzb.tur-uzb.t3x | |
apertium-preprocess-transfer apertium-tur-uzb.tur-uzb.t3x tur-uzb.t3x.bin | |
apertium-validate-dictionary apertium-tur-uzb.tur-uzb.dix | |
lt-comp rl apertium-tur-uzb.tur-uzb.dix uzb-tur.autobil.bin | |
main@standard 5999 8054 | |
unchecked@standard 6153 8055 | |
lt-trim ../../apertium-languages/apertium-uzb//uzb.automorf.bin uzb-tur.autobil.bin uzb-tur.automorf.bin | |
final@inconditional 26 106 | |
main@standard 29874 62253 | |
cp ../../apertium-languages/apertium-uzb//uzb.prob uzb-tur.prob | |
cg-comp ../../apertium-languages/apertium-uzb//apertium-uzb.uzb.rlx uzb-tur.rlx.bin | |
Sections: 0, Rules: 62, Sets: 54, Tags: 104 | |
lrx-comp apertium-tur-uzb.uzb-tur.lrx uzb-tur.autolex.bin | |
17: 316@358 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin uzb-tur.autogen.bin | |
apertium-validate-transfer apertium-tur-uzb.uzb-tur.t1x | |
apertium-preprocess-transfer apertium-tur-uzb.uzb-tur.t1x uzb-tur.t1x.bin | |
apertium-validate-interchunk apertium-tur-uzb.uzb-tur.t2x | |
apertium-preprocess-transfer apertium-tur-uzb.uzb-tur.t2x uzb-tur.t2x.bin | |
apertium-validate-postchunk apertium-tur-uzb.uzb-tur.t3x | |
apertium-preprocess-transfer apertium-tur-uzb.uzb-tur.t3x uzb-tur.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-comp lr .deps/tur.automorf.bin.att .deps/tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
lt-comp lr .deps/uzb.automorf.bin.att .deps/uzb.automorf.bin | |
main@standard 29874 62253 | |
final@inconditional 26 106 | |
bible coverage tur -> uzb | |
Number of tokenised words in the corpus: 468222 | |
Coverage: 80.04% | |
Top unknown words in the corpus: | |
1435 nın | |
1172 ın | |
889 a | |
862 in | |
565 e | |
409 na | |
374 ı | |
355 Saul | |
336 dan | |
329 i | |
298 nun | |
288 karşılık | |
272 Harun | |
270 orada | |
264 yı | |
236 Süleyman | |
232 soyundan | |
228 Babil | |
208 üzere | |
198 öbür | |
Translation time: 8.104565620422363 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> uzb | |
Error: Malformed input stream.Number of tokenised words in the corpus: 16323 | |
Coverage: 71.48% | |
Top unknown words in the corpus: | |
332 Cengiz | |
144 ın | |
124 Temuçin | |
83 in | |
55 a | |
45 i | |
42 ı | |
40 Moğol | |
40 nin | |
34 Camuka | |
34 nın | |
33 Jin | |
33 Tuğrul | |
32 e | |
31 Moğollar | |
29 Cuci | |
27 soyundan | |
27 Harezmşah | |
22 Moğolların | |
22 Cebe | |
Translation time: 0.4024672508239746 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage uzb -> tur | |
Number of tokenised words in the corpus: 200856 | |
Coverage: 84.92% | |
Top unknown words in the corpus: | |
724 g | |
416 bo | |
369 to | |
310 ko | |
270 yo | |
268 li | |
236 qo | |
143 so | |
137 ku | |
128 i | |
121 cho | |
90 mo | |
86 jo | |
80 yu | |
73 sog | |
68 ro | |
67 xo | |
63 Xo | |
61 Qo | |
60 a | |
Translation time: 1.492537498474121 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage uzb -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4172 | |
Coverage: 82.26% | |
Top unknown words in the corpus: | |
32 X | |
22 av | |
12 qalʼa | |
10 ning | |
7 dan | |
5 sugʻorma | |
5 Tuproqqalʼa | |
4 layoqatli | |
4 2ming | |
4 Herirud | |
4 monumental | |
3 MDH | |
3 ravnaq | |
3 reytingida | |
3 GFP | |
3 Tajan | |
3 3ming | |
3 somonli | |
3 xorazmiylar | |
3 Kot | |
Translation time: 0.04625105857849121 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
uig tur | |
Vorherige Position von HEAD war 15a3cda öz fix | |
Zu Branch 'master' gewechselt | |
Ihr Branch ist 56 Commits hinter 'origin/master', und kann vorgespult werden. | |
(benutzen Sie "git pull", um Ihren lokalen Branch zu aktualisieren) | |
Von github.com:apertium/apertium-uig-tur | |
15a3cda..ae57d92 master -> origin/master | |
Aktualisiere 6be949a..ae57d92 | |
Fast-forward | |
apertium-uig-tur.tur-uig.lrx | 76 +++- | |
apertium-uig-tur.tur-uig.t1x | 969 +++++++++++++++++++++++++++++++++------- | |
apertium-uig-tur.uig-tur.dix | 471 ++++++++++++++----- | |
apertium-uig-tur.uig-tur.lrx | 6 + | |
apertium-uig-tur.uig-tur.t1x | 129 +++++- | |
dev/entry.py | 1 + | |
dev/monofy.py | 3 +- | |
dev/oguz_2019_uyghur_1_eval.txt | 28 ++ | |
dev/turmonofy.py | 25 +- | |
9 files changed, 1413 insertions(+), 295 deletions(-) | |
create mode 100644 dev/oguz_2019_uyghur_1_eval.txt | |
commit ae57d926734146b1bd1f76623b00f3df0a54b220 | |
configure.ac:4: installing './install-sh' | |
configure.ac:4: installing './missing' | |
Makefile.am: installing './INSTALL' | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-uig from ../../apertium-languages/apertium-uig/ | |
Using apertium-tur from ../../apertium-languages/apertium-tur/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "uig-tur.automorf.bin uig-tur.prob uig-tur.rlx.bin uig-tur.autobil.bin uig-tur.autolex.bin uig-tur.autogen.bin uig-tur.autogen.hfst uig-tur.autopgen.bin uig-tur.autotrl.bin uig-tur.t1x.bin uig-tur.t2x.bin uig-tur.t3x.bin uig-tur.t4x.bin tur-uig.automorf.bin tur-uig.prob tur-uig.rlx.bin tur-uig.autobil.bin tur-uig.autolex.bin tur-uig.autogen.bin tur-uig.autopgen.bin tur-uig.t1x.bin tur-uig.t2x.bin tur-uig.t3x.bin" || rm -f uig-tur.automorf.bin uig-tur.prob uig-tur.rlx.bin uig-tur.autobil.bin uig-tur.autolex.bin uig-tur.autogen.bin uig-tur.autogen.hfst uig-tur.autopgen.bin uig-tur.autotrl.bin uig-tur.t1x.bin uig-tur.t2x.bin uig-tur.t3x.bin uig-tur.t4x.bin tur-uig.automorf.bin tur-uig.prob tur-uig.rlx.bin tur-uig.autobil.bin tur-uig.autolex.bin tur-uig.autogen.bin tur-uig.autopgen.bin tur-uig.t1x.bin tur-uig.t2x.bin tur-uig.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-uig//uig.automorf.att.gz | hfst-txt2fst > .deps/uig.automorf.hfst | |
apertium-validate-dictionary apertium-uig-tur.uig-tur.dix | |
lt-comp lr apertium-uig-tur.uig-tur.dix uig-tur.autobil.bin | |
main@standard 22989 32863 | |
lt-print uig-tur.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/uig-tur.autobil.att | |
hfst-txt2fst -e ε < .deps/uig-tur.autobil.att > .deps/uig-tur.autobil.hfst | |
hfst-project -p upper .deps/uig-tur.autobil.hfst > .deps/uig-tur.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/uig-tur.autobil.upper -2 .deps/any-symbol.hfst -o .deps/uig-tur.autobil.prefixes | |
hfst-compose-intersect -1 .deps/uig.automorf.hfst -2 .deps/uig-tur.autobil.prefixes -o .deps/uig-tur.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uig.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/uig-tur.autobil.prefixes. | |
hfst-fst2txt -i .deps/uig-tur.automorf.trimmed -o .deps/uig-tur.automorf.trimmed.att | |
lt-comp lr .deps/uig-tur.automorf.trimmed.att uig-tur.automorf.bin | |
main@standard 17428 111358 | |
final@inconditional 9 16 | |
cp ../../apertium-languages/apertium-uig//uig.prob uig-tur.prob | |
cg-comp ../../apertium-languages/apertium-uig//apertium-uig.uig.rlx uig-tur.rlx.bin | |
Sections: 1, Rules: 55, Sets: 81, Tags: 147 | |
lrx-comp apertium-uig-tur.uig-tur.lrx uig-tur.autolex.bin | |
51: 1052@1173 | |
cp ../../apertium-languages/apertium-tur//tur.autogen.bin uig-tur.autogen.bin | |
cp ../../apertium-languages/apertium-tur//tur.autogen.hfst uig-tur.autogen.hfst | |
cp ../../apertium-languages/apertium-tur//tur.autopgen.bin uig-tur.autopgen.bin | |
lt-comp lr apertium-uig-tur.alpha.dix uig-tur.autotrl.bin | |
main@inconditional 2 34 | |
apertium-validate-transfer apertium-uig-tur.uig-tur.t1x | |
apertium-preprocess-transfer apertium-uig-tur.uig-tur.t1x uig-tur.t1x.bin | |
Warning (802): Paths to rule 7 blocked by rule 6. | |
Warning (802): Paths to rule 7 blocked by rule 6. | |
Warning (802): Paths to rule 7 blocked by rule 6. | |
apertium-validate-interchunk apertium-uig-tur.uig-tur.t2x | |
apertium-preprocess-transfer apertium-uig-tur.uig-tur.t2x uig-tur.t2x.bin | |
apertium-validate-postchunk apertium-uig-tur.uig-tur.t3x | |
apertium-preprocess-transfer apertium-uig-tur.uig-tur.t3x uig-tur.t3x.bin | |
apertium-validate-transfer apertium-uig-tur.uig-tur.t4x | |
apertium-preprocess-transfer apertium-uig-tur.uig-tur.t4x uig-tur.t4x.bin | |
/bin/zcat ../../apertium-languages/apertium-tur//tur.automorf.att.gz | hfst-txt2fst > .deps/tur.automorf.hfst | |
apertium-validate-dictionary apertium-uig-tur.uig-tur.dix | |
lt-comp rl apertium-uig-tur.uig-tur.dix tur-uig.autobil.bin | |
main@standard 22937 32689 | |
lt-print tur-uig.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tur-uig.autobil.att | |
hfst-txt2fst -e ε < .deps/tur-uig.autobil.att > .deps/tur-uig.autobil.hfst | |
hfst-project -p upper .deps/tur-uig.autobil.hfst > .deps/tur-uig.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tur-uig.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tur-uig.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tur.automorf.hfst -2 .deps/tur-uig.autobil.prefixes -o .deps/tur-uig.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<quot>") in | |
transducer in file .deps/tur.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tur-uig.autobil.prefixes. | |
hfst-fst2txt -i .deps/tur-uig.automorf.trimmed -o .deps/tur-uig.automorf.trimmed.att | |
lt-comp lr .deps/tur-uig.automorf.trimmed.att tur-uig.automorf.bin | |
main@standard 14564 30734 | |
final@inconditional 3128 5234 | |
cp ../../apertium-languages/apertium-tur//tur.prob tur-uig.prob | |
cg-comp ../../apertium-languages/apertium-tur//apertium-tur.tur.rlx tur-uig.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
lrx-comp apertium-uig-tur.tur-uig.lrx tur-uig.autolex.bin | |
11: 172@192 | |
cp ../../apertium-languages/apertium-uig//uig.autogen.bin tur-uig.autogen.bin | |
cp ../../apertium-languages/apertium-uig//uig.autopgen.bin tur-uig.autopgen.bin | |
apertium-validate-transfer apertium-uig-tur.tur-uig.t1x | |
apertium-preprocess-transfer apertium-uig-tur.tur-uig.t1x tur-uig.t1x.bin | |
apertium-validate-interchunk apertium-uig-tur.tur-uig.t2x | |
apertium-preprocess-transfer apertium-uig-tur.tur-uig.t2x tur-uig.t2x.bin | |
apertium-validate-postchunk apertium-uig-tur.tur-uig.t3x | |
apertium-preprocess-transfer apertium-uig-tur.tur-uig.t3x tur-uig.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
lt-comp lr .deps/uig.automorf.bin.att .deps/uig.automorf.bin | |
main@standard 22643 190970 | |
final@inconditional 308 1646 | |
lt-comp lr .deps/tur.automorf.bin.att .deps/tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
bible coverage uig -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 491008 | |
Coverage: 86.66% | |
Top unknown words in the corpus: | |
2541 ئۇالر | |
1345 ئۇالرنىڭ | |
914 ئۇالرغا | |
894 ئۇالرنى | |
448 ئىسرائىلالر | |
288 ئىشالرنى | |
271 ئېتىقادچىالر | |
255 مۇناجات | |
251 ئىسرائىلالرنىڭ | |
240 ئاڭالپ | |
231 ئىكەنلىكىنى | |
229 يوشۇۋا | |
228 قىلىڭالر | |
225 ئەۋالدلىرى | |
208 باشالپ | |
205 قۇالق | |
199 بوالر | |
185 ئىسرائىلالرنى | |
184 شۇنداقال | |
181 يەھۇدىيالر | |
Translation time: 11.723799467086792 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uig-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage uig -> tur | |
Error: Malformed input stream.Number of tokenised words in the corpus: 174 | |
Coverage: 82.18% | |
Top unknown words in the corpus: | |
3 كومپۇتەر | |
1 ۋىكىپىدىيە | |
1 ۋىكىپېدىيەنىڭ | |
1 نۇسخاسىغا | |
1 نەۋرۇز | |
1 بايرامى | |
1 دەبدەبىلىك | |
1 بیلگیسايار | |
1 مۈھەندیسلیغی | |
1 ھەلقی | |
1 نھايیتی | |
1 ۋەئی | |
1 شلیتیشیمیزگە | |
1 ھیتاي | |
1 كیشیلیریمیزئو | |
1 قۇۋاتقان | |
1 يیتیشیۋاتقان | |
1 مما | |
1 بیزنیڭئو | |
1 مۇمی | |
Translation time: 0.03872323036193848 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uig-tur.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage tur -> uig | |
Number of tokenised words in the corpus: 379936 | |
Coverage: 87.91% | |
Top unknown words in the corpus: | |
1343 nın | |
825 ın | |
634 a | |
505 Yeruşalim | |
487 Egemen | |
407 na | |
314 i | |
291 ı | |
287 dan | |
267 nun | |
238 yı | |
204 sonsuza | |
187 Kâhin | |
179 ndan | |
161 nı | |
159 Irmağı | |
156 le | |
154 Filistliler | |
152 Efrayim | |
151 yanıtladı | |
Translation time: 9.613200426101685 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-uig.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tur -> uig | |
Error: Malformed input stream.Number of tokenised words in the corpus: 15836 | |
Coverage: 84.00% | |
Top unknown words in the corpus: | |
135 ın | |
124 Temuçin | |
41 ı | |
40 Moğol | |
40 nin | |
39 i | |
39 a | |
34 Camuka | |
34 nın | |
33 Jin | |
31 Moğollar | |
29 Cuci | |
27 Harezmşah | |
22 Moğolların | |
22 Cebe | |
17 Mukhulai | |
17 Subutay | |
16 Yesügey | |
14 Börte | |
14 Alaeddin | |
Translation time: 0.4490232467651367 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tur-uig.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
uzb kaa | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit e82f521576625726aa9cbdfe610675575d558439 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-uzb from ../../apertium-languages/apertium-uzb/ | |
Using apertium-kaa from ../../apertium-languages/apertium-kaa/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "uzb-kaa.automorf.bin uzb-kaa.rlx.bin uzb-kaa.autobil.bin uzb-kaa.autolex.bin uzb-kaa.autogen.bin uzb-kaa.autopgen.bin uzb-kaa.t1x.bin uzb-kaa.t2x.bin uzb-kaa.t3x.bin kaa-uzb.automorf.bin kaa-uzb.rlx.bin kaa-uzb.autobil.bin kaa-uzb.autolex.bin kaa-uzb.autogen.bin kaa-uzb.autopgen.bin kaa-uzb.t1x.bin kaa-uzb.t2x.bin kaa-uzb.t3x.bin" || rm -f uzb-kaa.automorf.bin uzb-kaa.rlx.bin uzb-kaa.autobil.bin uzb-kaa.autolex.bin uzb-kaa.autogen.bin uzb-kaa.autopgen.bin uzb-kaa.t1x.bin uzb-kaa.t2x.bin uzb-kaa.t3x.bin kaa-uzb.automorf.bin kaa-uzb.rlx.bin kaa-uzb.autobil.bin kaa-uzb.autolex.bin kaa-uzb.autogen.bin kaa-uzb.autopgen.bin kaa-uzb.t1x.bin kaa-uzb.t2x.bin kaa-uzb.t3x.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-uzb-kaa.uzb-kaa.dix | |
lt-comp lr apertium-uzb-kaa.uzb-kaa.dix uzb-kaa.autobil.bin | |
main@standard 43874 60706 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print uzb-kaa.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/uzb-kaa.autobil.att | |
hfst-txt2fst -e ε < .deps/uzb-kaa.autobil.att > .deps/uzb-kaa.autobil.hfst | |
hfst-project -p upper .deps/uzb-kaa.autobil.hfst > .deps/uzb-kaa.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/uzb-kaa.autobil.upper -2 .deps/any-symbol.hfst -o .deps/uzb-kaa.autobil.prefixes | |
/bin/zcat ../../apertium-languages/apertium-uzb//uzb.automorf.att.gz | hfst-txt2fst > .deps/uzb.automorf.hfst | |
hfst-compose-intersect -1 .deps/uzb.automorf.hfst -2 .deps/uzb-kaa.autobil.prefixes -o .deps/uzb-kaa.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uzb.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/uzb-kaa.autobil.prefixes. | |
hfst-fst2txt -i .deps/uzb-kaa.automorf.trimmed -o .deps/uzb-kaa.automorf.trimmed.att | |
lt-comp lr .deps/uzb-kaa.automorf.trimmed.att uzb-kaa.automorf.bin | |
main@standard 23152 40747 | |
final@inconditional 9 13 | |
cg-comp ../../apertium-languages/apertium-uzb//apertium-uzb.uzb.rlx uzb-kaa.rlx.bin | |
Sections: 0, Rules: 62, Sets: 54, Tags: 104 | |
lrx-comp apertium-uzb-kaa.uzb-kaa.lrx uzb-kaa.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-kaa//kaa.autogen.bin uzb-kaa.autogen.bin | |
cp ../../apertium-languages/apertium-kaa//kaa.autopgen.bin uzb-kaa.autopgen.bin | |
apertium-validate-transfer apertium-uzb-kaa.uzb-kaa.t1x | |
apertium-preprocess-transfer apertium-uzb-kaa.uzb-kaa.t1x uzb-kaa.t1x.bin | |
apertium-validate-interchunk apertium-uzb-kaa.uzb-kaa.t2x | |
apertium-preprocess-transfer apertium-uzb-kaa.uzb-kaa.t2x uzb-kaa.t2x.bin | |
apertium-validate-postchunk apertium-uzb-kaa.uzb-kaa.t3x | |
apertium-preprocess-transfer apertium-uzb-kaa.uzb-kaa.t3x uzb-kaa.t3x.bin | |
apertium-validate-dictionary apertium-uzb-kaa.uzb-kaa.dix | |
lt-comp rl apertium-uzb-kaa.uzb-kaa.dix kaa-uzb.autobil.bin | |
main@standard 43874 60706 | |
lt-print kaa-uzb.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaa-uzb.autobil.att | |
hfst-txt2fst -e ε < .deps/kaa-uzb.autobil.att > .deps/kaa-uzb.autobil.hfst | |
hfst-project -p upper .deps/kaa-uzb.autobil.hfst > .deps/kaa-uzb.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaa-uzb.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaa-uzb.autobil.prefixes | |
/bin/zcat ../../apertium-languages/apertium-kaa//kaa.automorf.att.gz | hfst-txt2fst > .deps/kaa.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaa.automorf.hfst -2 .deps/kaa-uzb.autobil.prefixes -o .deps/kaa-uzb.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<sent>") in | |
transducer in file .deps/kaa.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaa-uzb.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaa-uzb.automorf.trimmed -o .deps/kaa-uzb.automorf.trimmed.att | |
lt-comp lr .deps/kaa-uzb.automorf.trimmed.att kaa-uzb.automorf.bin | |
main@standard 16626 24936 | |
final@inconditional 9 11 | |
cg-comp ../../apertium-languages/apertium-kaa//apertium-kaa.kaa.rlx kaa-uzb.rlx.bin | |
Sections: 1, Rules: 1, Sets: 5, Tags: 23 | |
lrx-comp apertium-uzb-kaa.kaa-uzb.lrx kaa-uzb.autolex.bin | |
1: 28@29 | |
cp ../../apertium-languages/apertium-uzb//uzb.autogen.bin kaa-uzb.autogen.bin | |
cp ../../apertium-languages/apertium-uzb//uzb.autopgen.bin kaa-uzb.autopgen.bin | |
apertium-validate-transfer apertium-uzb-kaa.kaa-uzb.t1x | |
apertium-preprocess-transfer apertium-uzb-kaa.kaa-uzb.t1x kaa-uzb.t1x.bin | |
apertium-validate-interchunk apertium-uzb-kaa.kaa-uzb.t2x | |
apertium-preprocess-transfer apertium-uzb-kaa.kaa-uzb.t2x kaa-uzb.t2x.bin | |
apertium-validate-postchunk apertium-uzb-kaa.kaa-uzb.t3x | |
apertium-preprocess-transfer apertium-uzb-kaa.kaa-uzb.t3x kaa-uzb.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage uzb -> kaa | |
Number of tokenised words in the corpus: 154073 | |
Coverage: 58.69% | |
Top unknown words in the corpus: | |
1911 va | |
1423 Iso | |
868 edi | |
741 Xudo | |
602 o | |
553 Xudoning | |
432 qo | |
424 ko | |
408 bo | |
391 Masih | |
389 sizlar | |
367 Chunki | |
361 Ular | |
356 ularga | |
338 qanday | |
315 ular | |
313 sizlarga | |
308 kim | |
297 yana | |
288 olib | |
Translation time: 1.3271152973175049 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage uzb -> kaa | |
Error: Malformed input stream.Number of tokenised words in the corpus: 3227 | |
Coverage: 57.58% | |
Top unknown words in the corpus: | |
106 va | |
32 X | |
14 mil | |
12 Mil | |
11 yasalgan | |
10 xom | |
10 ning | |
10 da | |
10 4 | |
9 2 | |
9 3 | |
8 boshqa | |
8 sr | |
7 boʻyicha | |
7 1 | |
7 dan | |
7 olgan | |
7 kabi | |
7 xususan | |
7 yillik | |
Translation time: 0.04852890968322754 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./uzb-kaa.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage kaa -> uzb | |
Number of tokenised words in the corpus: 151049 | |
Coverage: 58.67% | |
Top unknown words in the corpus: | |
2075 hám | |
1223 İysa | |
876 edi | |
710 Biraq | |
614 menen | |
520 Muxaddes | |
500 sizler | |
483 Olar | |
476 kim | |
449 olarǵa | |
443 sizlerge | |
428 olar | |
411 al | |
408 ytkeni | |
402 alıp | |
368 Al | |
359 hár | |
353 Masix | |
346 A | |
324 1 | |
Translation time: 1.9928433895111084 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaa -> uzb | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4 | |
Coverage: 100.00% | |
Top unknown words in the corpus: | |
Translation time: 0.010432243347167969 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaa-uzb.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
compilation failed | |
compilation failed | |
covtest failedcovtest failedcompilation failed | |
compilation failed | |
compilation failed | |
covtest failedcovtest failedcovtest failedcovtest failedcompilation failed | |
covtest failedcovtest failedcovtest failedcovtest failedcompilation failed | |
covtest failedcovtest failedcompilation failed | |
covtest failedcovtest failedcovtest failedcovtest failedgit failed | |
git failed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LG=$1 ## abc (or abc-xyz) | |
ANALYSERDIR=$2 ## /path/to/analyser | |
CORPUS=$3 ## /path/to/corpus/corpus.txt.bz2 (or corpus.txt) | |
ANALYSER=$ANALYSERDIR/$LG.automorf.hfst | |
TMPCORPUS=/tmp/$LG.corpus.txt | |
case $CORPUS in | |
*.bz2 ) | |
bzcat $CORPUS > $TMPCORPUS;; | |
*.txt | *.destxt ) | |
cat $CORPUS > $TMPCORPUS;; | |
esac | |
echo "Generating hitparade (might take a bit)!" | |
cat $TMPCORPUS | apertium-destxt | hfst-proc -w $ANALYSER | apertium-retxt | sed 's/\$\s*/\$\n/g' > /tmp/$LG.parade.txt | |
echo "TOP UNKNOWN WORDS:" | |
cat /tmp/$LG.parade.txt | grep '\*' | sort | uniq -c | sort -rn | head -n20 | |
TOTAL=`cat /tmp/$LG.parade.txt | wc -l` | |
KNOWN=`cat /tmp/$LG.parade.txt | grep -v '\*' | wc -l` | |
UNKNOWN=`cat /tmp/$LG.parade.txt | grep '\*' | wc -l` | |
PERCENTAGE=`calc $KNOWN/$TOTAL | sed 's/[\s\t]//g'` | |
echo "coverage: $KNOWN / $TOTAL ($PERCENTAGE)" | |
echo "remaining unknown forms: $UNKNOWN" | |
rm $TMPCORPUS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-nog | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-nog.pc | |
test -z "nog.automorf.hfst nog.autogen.hfst nog.automorf.bin nog.autogen.bin nog.automorf.att.gz nog.autogen.att.gz nog.rlx.bin" || rm -f nog.automorf.hfst nog.autogen.hfst nog.automorf.bin nog.autogen.bin nog.automorf.att.gz nog.autogen.att.gz nog.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-nog.nog.lexc | grep -v 'Dir/RL' > .deps/nog.LR.lexc | |
hfst-lexc .deps/nog.LR.lexc -o .deps/nog.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...15 CLIT...1 CLIT-COP...1 CLIT-QST...1 CLIT-INCL-COP...3 CASES-OBL...5 CASES...2 ATTR-SUBST...3 GENPOSS-ETC...2 CASES-ETC...2 POSS...7 ABESS-INFL...2 ABESS...1 N-INFL-COMMON...3 NP-COMMON...1 SUBST...2 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N3...2 NP-TOP-ACR...3 NP-TOP...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-OVA...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-MF...1 NP-COG-M...1 NP-AL...2 NP-AL-ACR...3 A1...2 A3...2 A4...1 V-PERS-S1-NO3PERSON...4 V-PERS-S1...3 V-PERS-S2...7 V-PERS-AOR...3 V-PERS-VOL...6 V-FIN-REG-NEG...2 V-FIN-IRREG-NEG...4 V-NONFIN-IRREG-NEG...5 V-NONFIN-REG-NEG...13 V-COMMON...6 V-DER...1 V-IV...2 V-TV-NOPASS...2 V-TV-PASS...1 V-TV...3 PRON-MEN...6 PRON-SEN...6 PRON-OL...6 PRON-BIZ...5 PRON-SIZ...5 PRON-OLAR...1 PRON-DEM-BU...9 PRON-DEM-SOL...9 PRON-DEM-MUNAV...5 PRON-ITG-QAJSY...1 PRON-ITG...1 PRON-NEG...1 PRON-QNT-BERI...1 PRON-QNT...1 PRON-REF-PX...6 PRON-REF...1 PRON-RECIP...1 NUM-COMMON...2 NUM-ROMAN...1 NUM-ITG...3 NUM...3 DET-DEM...1 DET-REF...1 DET-QNT...1 DET-ITG...1 CA...1 CC...1 CS...1 KI...1 ADV1...2 ADV2...2 ADV3...1 ADV4...2 ADV5...1 ADV6...3 POST...1 POSTADV...1 INTERJ...1 Miscellaneous...5 Copula...3 Postadverbs...1 Postpositions...19 Conjunctions...16 Pronouns...19 Determiners...11 Numerals...44 Nouns...651 ProperNouns...258 Adjectives...156 Adverbs...44 Verbs...165 Interjections...8 Punctuation...25 DIGITLEX... | |
hfst-twolc apertium-nog.nog.twol -o .deps/nog.twol.hfst | |
Reading input from apertium-nog.nog.twol. | |
Writing output to .deps/nog.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/nog.LR.lexc.hfst -2 .deps/nog.twol.hfst -o .deps/nog.LR.hfst | |
hfst-invert .deps/nog.LR.hfst | hfst-fst2fst -O -o nog.automorf.hfst | |
cat apertium-nog.nog.lexc | grep -v 'Dir/LR' > .deps/nog.RL.lexc | |
hfst-lexc .deps/nog.RL.lexc -o .deps/nog.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...15 CLIT...1 CLIT-COP...1 CLIT-QST...1 CLIT-INCL-COP...3 CASES-OBL...5 CASES...2 ATTR-SUBST...3 GENPOSS-ETC...2 CASES-ETC...2 POSS...7 ABESS-INFL...2 ABESS...1 N-INFL-COMMON...3 NP-COMMON...1 SUBST...2 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N3...2 NP-TOP-ACR...3 NP-TOP...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-OVA...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-MF...1 NP-COG-M...1 NP-AL...2 NP-AL-ACR...3 A1...2 A3...2 A4...1 V-PERS-S1-NO3PERSON...4 V-PERS-S1...3 V-PERS-S2...7 V-PERS-AOR...3 V-PERS-VOL...6 V-FIN-REG-NEG...2 V-FIN-IRREG-NEG...4 V-NONFIN-IRREG-NEG...5 V-NONFIN-REG-NEG...13 V-COMMON...6 V-DER...1 V-IV...2 V-TV-NOPASS...2 V-TV-PASS...1 V-TV...3 PRON-MEN...6 PRON-SEN...6 PRON-OL...6 PRON-BIZ...5 PRON-SIZ...5 PRON-OLAR...1 PRON-DEM-BU...8 PRON-DEM-SOL...8 PRON-DEM-MUNAV...4 PRON-ITG-QAJSY...1 PRON-ITG...1 PRON-NEG...1 PRON-QNT-BERI...1 PRON-QNT...1 PRON-REF-PX...6 PRON-REF...1 PRON-RECIP...1 NUM-COMMON...2 NUM-ROMAN...1 NUM-ITG...3 NUM...3 DET-DEM...1 DET-REF...1 DET-QNT...1 DET-ITG...1 CA...1 CC...1 CS...1 KI...1 ADV1...2 ADV2...2 ADV3...1 ADV4...2 ADV5...1 ADV6...3 POST...1 POSTADV...1 INTERJ...1 Miscellaneous...2 Copula...3 Postadverbs...1 Postpositions...14 Conjunctions...13 Pronouns...19 Determiners...10 Numerals...44 Nouns...648 ProperNouns...254 Adjectives...155 Adverbs...44 Verbs...164 Interjections...8 Punctuation...25 DIGITLEX... | |
hfst-compose-intersect -1 .deps/nog.RL.lexc.hfst -2 .deps/nog.twol.hfst -o .deps/nog.RL.hfst | |
hfst-fst2fst -O .deps/nog.RL.hfst -o nog.autogen.hfst | |
hfst-fst2txt nog.automorf.hfst | gzip -9 -c -n > nog.automorf.att.gz | |
zcat < nog.automorf.att.gz > .deps/nog.automorf.att | |
lt-comp lr .deps/nog.automorf.att nog.automorf.bin | |
main@standard 7144 12276 | |
final@inconditional 14 36 | |
hfst-fst2txt nog.autogen.hfst | gzip -9 -c -n > nog.autogen.att.gz | |
zcat < nog.autogen.att.gz > .deps/nog.autogen.att | |
lt-comp lr .deps/nog.autogen.att nog.autogen.bin | |
main@standard 7112 12214 | |
final@inconditional 14 36 | |
/usr/bin/cg-comp apertium-nog.nog.rlx nog.rlx.bin | |
Sections: 1, Rules: 1, Sets: 5, Tags: 23 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-sah | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-sah.pc | |
test -z "sah.automorf.hfst sah.autogen.hfst sah.automorf.bin sah.autopgen.bin sah.autogen.bin sah.automorf.att.gz sah.autogen.att.gz sah.rlx.bin" || rm -f sah.automorf.hfst sah.autogen.hfst sah.automorf.bin sah.autopgen.bin sah.autogen.bin sah.automorf.att.gz sah.autogen.att.gz sah.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-sah.sah.lexc | grep -v 'Dir/RL' > .deps/sah.LR.lexc | |
hfst-lexc --Werror .deps/sah.LR.lexc -o .deps/sah.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/sah.LR.lexc, writing to .deps/sah.LR.lexc.hfst | |
Parsing lexc file .deps/sah.LR.lexc | |
Root...17 CLIT-EMPH...1 CLITICS-NO-COP...6 CLITICS-INCL-COP...3 COPULA...1 CASES-OBL...7 CASES-POSS-3SP...7 CASES-POSS-12SG...6 CASES-NOM...1 POSS-OBL...8 POSS-PX3PL-OBL-SG...1 POSS-PX3PL-OBL-PL...1 POSS-OBL-PL...2 POSS-OBL-SG...2 POSS-NOM...6 POSS-PX3PL-NOM-SG...1 POSS-PX3PL-NOM-PL...1 POSS-NOM-PL...2 POSS-NOM-SG...2 ATTR-SUBST...5 GENPOSS-ETC...1 CASES-ETC...1 N-INFL-COMMON-SG...3 N-INFL-COMMON-PL...3 CASES...2 GER-SUBST...1 SUBST...2 LII-POSTPOSITION...1 FULL-NOMINAL-INFLECTION...1 N1...3 N-COMPOUND-PX-COMMON...4 N5...3 NP-COMMON...2 NP-ANT-M...1 NP-ANT-F...1 NP-PAT-VICH...2 NP-COG-OBIN-FEM...1 NP-COG-OB...2 NP-COG-IN...3 NP-COG-M...1 NP-COG-MF...1 NP-PAT-M...1 NP-TOP...2 NP-TOP-RUS...1 NP-TOP-ASSR...5 NP-TOP-COMPOUND...2 NP-TOP-ABBR...5 NP-ORG...2 NP-AL...2 A1...2 A2...2 A3...2 A4...1 A9...1 NUM...4 NUM-DIGIT...10 NUM-ORD...2 NUM-COLL...2 NUM-ROMAN...1 PRON-MIN...8 PRON-EN...8 PRON-KINI...8 PRON-BIHIGI...6 PRON-EHIGI...6 PRON-KINILER...5 PRON-DEM-BU-COMMON...14 PRON-DEM-BU...2 PRON-DEM-SUBU...2 PRON-DEM-OL-COMMON...14 PRON-DEM-OL...2 PRON-DEM-SOL...2 PRON-DEM-ITI...15 PRON-ITG-TUOH...7 PRON-NEG-TUOH_DA...7 PRON-ITG...1 PRON-QNT...1 V-PERS-S1...6 V-PERS-S2...6 V-PERS-IFI...6 V-PERS-COND2...6 V-PERS-NEGFUT...6 V-FINITE-REGULAR_NEGATIVE...1 V-FINITE-IRREGULAR_NEGATIVE...17 V-NONFINITE-REGULAR_NEGATIVE...7 V-NONFINITE-IRREGULAR_NEGATIVE...23 V-COMMON...6 V-DER...1 V-PASS...2 V-TV...3 V-IV...2 V-AUX...1 KI...2 ADV-WITH-KI...2 ADV-ITG...1 ADV...1 ADV-DIK...1 POSTADV...1 CC...1 CA...1 CS...1 POST...1 DET-DEM...1 DET-ITG...1 DET-QNT...1 DET-IND...1 INTERJ...1 ABBR...1 ABBR-INIT...26 Miscellaneous...7 Copula...2 Conjunctions...15 Postpositions...42 Pronouns...17 Determiners...16 Numerals...89 Nouns...4237 ProperNouns...2155 Adjectives...1362 Adverbs...335 Verbs...1027 Interjections...7 Abbreviations...156 Punctuation...24 Digits...5 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A9 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ADV Morphotaxing... ADV-DIK Morphotaxing... ADV-ITG Morphotaxing... ADV-WITH-KI Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-NOM Morphotaxing... CASES-OBL Morphotaxing... CASES-POSS-12SG Morphotaxing... CASES-POSS-3SP Morphotaxing... CC Morphotaxing... CLIT-EMPH Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COPULA Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GER-SUBST Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LII-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON-PL Morphotaxing... N-INFL-COMMON-SG Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ORD Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSS-NOM Morphotaxing... POSS-NOM-PL Morphotaxing... POSS-NOM-SG Morphotaxing... POSS-OBL Morphotaxing... POSS-OBL-PL Morphotaxing... POSS-OBL-SG Morphotaxing... POSS-PX3PL-NOM-PL Morphotaxing... POSS-PX3PL-NOM-SG Morphotaxing... POSS-PX3PL-OBL-PL Morphotaxing... POSS-PX3PL-OBL-SG Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRON-BIHIGI Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-BU-COMMON Morphotaxing... PRON-DEM-ITI Morphotaxing... PRON-DEM-OL Morphotaxing... PRON-DEM-OL-COMMON Morphotaxing... PRON-DEM-SOL Morphotaxing... PRON-DEM-SUBU Morphotaxing... PRON-EHIGI Morphotaxing... PRON-EN Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-TUOH Morphotaxing... PRON-KINI Morphotaxing... PRON-KINILER Morphotaxing... PRON-MIN Morphotaxing... PRON-NEG-TUOH_DA Morphotaxing... PRON-QNT Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... V-AUX Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PASS Morphotaxing... V-PERS-COND2 Morphotaxing... V-PERS-IFI Morphotaxing... V-PERS-NEGFUT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-sah.sah.twol -o .deps/sah.twol.hfst | |
Reading input from apertium-sah.sah.twol. | |
Writing output to .deps/sah.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/sah.LR.lexc.hfst -2 .deps/sah.twol.hfst -o .deps/sah.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/sah.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -w -o sah.automorf.hfst | |
cat apertium-sah.sah.lexc | grep -v 'Dir/LR' > .deps/sah.RL.lexc | |
hfst-lexc --Werror .deps/sah.RL.lexc -o .deps/sah.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/sah.RL.lexc, writing to .deps/sah.RL.lexc.hfst | |
Parsing lexc file .deps/sah.RL.lexc | |
Root...17 CLIT-EMPH...1 CLITICS-NO-COP...6 CLITICS-INCL-COP...3 COPULA...1 CASES-OBL...7 CASES-POSS-3SP...7 CASES-POSS-12SG...6 CASES-NOM...1 POSS-OBL...8 POSS-PX3PL-OBL-SG...1 POSS-PX3PL-OBL-PL...1 POSS-OBL-PL...2 POSS-OBL-SG...2 POSS-NOM...6 POSS-PX3PL-NOM-SG...1 POSS-PX3PL-NOM-PL...1 POSS-NOM-PL...2 POSS-NOM-SG...2 ATTR-SUBST...5 GENPOSS-ETC...1 CASES-ETC...1 N-INFL-COMMON-SG...3 N-INFL-COMMON-PL...3 CASES...2 GER-SUBST...1 SUBST...2 LII-POSTPOSITION...1 FULL-NOMINAL-INFLECTION...1 N1...3 N-COMPOUND-PX-COMMON...4 N5...3 NP-COMMON...2 NP-ANT-M...1 NP-ANT-F...1 NP-PAT-VICH...2 NP-COG-OBIN-FEM...1 NP-COG-OB...2 NP-COG-IN...2 NP-COG-M...1 NP-COG-MF...1 NP-PAT-M...1 NP-TOP...2 NP-TOP-RUS...1 NP-TOP-ASSR...3 NP-TOP-COMPOUND...2 NP-TOP-ABBR...3 NP-ORG...2 NP-AL...2 A1...2 A2...2 A3...2 A4...1 A9...1 NUM...4 NUM-DIGIT...6 NUM-ORD...2 NUM-COLL...2 NUM-ROMAN...1 PRON-MIN...8 PRON-EN...8 PRON-KINI...8 PRON-BIHIGI...6 PRON-EHIGI...6 PRON-KINILER...5 PRON-DEM-BU-COMMON...14 PRON-DEM-BU...2 PRON-DEM-SUBU...2 PRON-DEM-OL-COMMON...14 PRON-DEM-OL...2 PRON-DEM-SOL...2 PRON-DEM-ITI...15 PRON-ITG-TUOH...7 PRON-NEG-TUOH_DA...7 PRON-ITG...1 PRON-QNT...1 V-PERS-S1...6 V-PERS-S2...6 V-PERS-IFI...6 V-PERS-COND2...6 V-PERS-NEGFUT...6 V-FINITE-REGULAR_NEGATIVE...1 V-FINITE-IRREGULAR_NEGATIVE...15 V-NONFINITE-REGULAR_NEGATIVE...7 V-NONFINITE-IRREGULAR_NEGATIVE...23 V-COMMON...6 V-DER...1 V-PASS...2 V-TV...3 V-IV...2 V-AUX...1 KI...2 ADV-WITH-KI...2 ADV-ITG...1 ADV...1 ADV-DIK...1 POSTADV...1 CC...1 CA...1 CS...1 POST...1 DET-DEM...1 DET-ITG...1 DET-QNT...1 DET-IND...1 INTERJ...1 ABBR...1 ABBR-INIT...26 Miscellaneous...7 Copula...2 Conjunctions...16 Postpositions...42 Pronouns...17 Determiners...16 Numerals...89 Nouns...4228 ProperNouns...2139 Adjectives...1361 Adverbs...339 Verbs...1028 Interjections...7 Abbreviations...148 Punctuation...24 Digits...5 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A9 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ADV Morphotaxing... ADV-DIK Morphotaxing... ADV-ITG Morphotaxing... ADV-WITH-KI Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-NOM Morphotaxing... CASES-OBL Morphotaxing... CASES-POSS-12SG Morphotaxing... CASES-POSS-3SP Morphotaxing... CC Morphotaxing... CLIT-EMPH Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COPULA Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GER-SUBST Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LII-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON-PL Morphotaxing... N-INFL-COMMON-SG Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ORD Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSS-NOM Morphotaxing... POSS-NOM-PL Morphotaxing... POSS-NOM-SG Morphotaxing... POSS-OBL Morphotaxing... POSS-OBL-PL Morphotaxing... POSS-OBL-SG Morphotaxing... POSS-PX3PL-NOM-PL Morphotaxing... POSS-PX3PL-NOM-SG Morphotaxing... POSS-PX3PL-OBL-PL Morphotaxing... POSS-PX3PL-OBL-SG Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRON-BIHIGI Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-BU-COMMON Morphotaxing... PRON-DEM-ITI Morphotaxing... PRON-DEM-OL Morphotaxing... PRON-DEM-OL-COMMON Morphotaxing... PRON-DEM-SOL Morphotaxing... PRON-DEM-SUBU Morphotaxing... PRON-EHIGI Morphotaxing... PRON-EN Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-TUOH Morphotaxing... PRON-KINI Morphotaxing... PRON-KINILER Morphotaxing... PRON-MIN Morphotaxing... PRON-NEG-TUOH_DA Morphotaxing... PRON-QNT Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... V-AUX Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PASS Morphotaxing... V-PERS-COND2 Morphotaxing... V-PERS-IFI Morphotaxing... V-PERS-NEGFUT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/sah.RL.lexc.hfst -2 .deps/sah.twol.hfst -o .deps/sah.RL.hfst | |
hfst-fst2fst -w .deps/sah.RL.hfst -o sah.autogen.hfst | |
hfst-fst2txt sah.automorf.hfst | gzip -9 -c -n > sah.automorf.att.gz | |
zcat < sah.automorf.att.gz > .deps/sah.automorf.att | |
lt-comp lr .deps/sah.automorf.att sah.automorf.bin | |
main@standard 17256 40256 | |
final@inconditional 543 1625 | |
lt-comp lr apertium-sah.post-sah.dix sah.autopgen.bin | |
main@standard 5 8 | |
hfst-fst2txt sah.autogen.hfst | gzip -9 -c -n > sah.autogen.att.gz | |
zcat < sah.autogen.att.gz > .deps/sah.autogen.att | |
lt-comp lr .deps/sah.autogen.att sah.autogen.bin | |
main@standard 76943 128925 | |
final@inconditional 1352 2436 | |
/usr/bin/cg-comp apertium-sah.sah.rlx sah.rlx.bin | |
Sections: 1, Rules: 2, Sets: 7, Tags: 17 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-chv | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-chv.pc | |
test -z "chv.automorf.hfst chv.automorf.bin chv.autopgen.bin chv.automorf.att.gz chv.autogen.hfst chv.autoseg.hfst chv.autogen.bin chv.autogen.att.gz chv.rlx.bin" || rm -f chv.automorf.hfst chv.automorf.bin chv.autopgen.bin chv.automorf.att.gz chv.autogen.hfst chv.autoseg.hfst chv.autogen.bin chv.autogen.att.gz chv.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-chv.chv.lexc | grep -v 'Dir/RL' > .deps/chv.LR.lexc | |
hfst-lexc -W .deps/chv.LR.lexc -o .deps/chv.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/chv.LR.lexc, writing to .deps/chv.LR.lexc.hfst | |
Parsing lexc file .deps/chv.LR.lexc | |
Root...14 CLIT-GNA...2 CLIT-HA...2 CLIT-EMPH...3 K...12 CLIT-ÇÇĔ...2 CLIT-COP...2 CASE-NONOM...14 CASE...2 PLURAL...2 POSS...6 SUBST-SKER...2 SUBST...1 NOMINAL...1 NP-AL...2 NP-AL-PX...1 NP-AL-LN...4 NP-AL-BÜRO...1 NP-TOP...2 NP-TOP-PX...1 NP-TOP-LN...4 NP-TOP-BERLIN...1 NP-TOP-SK...1 NP-TOP-UDMURTI...7 NP-ANT-F...1 NP-ANT-M...1 NP-ANT-M-IJ...2 NP-COG-MF...1 NP-COG-OV...2 NP-COG-IJ...3 NP-COG-ENKO...1 NP-PAT-VICH...2 NP-PAT-M...1 N...2 N-PL...1 N-COMPOUND-PX...1 N-COMPOUND-PX-PL...1 N-ĔŞ...2 N-IZM...1 N-VLAÇ...6 N-SUPĂN...5 N-BENZIN...1 N-RADIO...2 N-TU...4 N-YEN...5 N-MUZEY...2 N-INFORMACI...7 N-YĔP...2 N-KUKĂL...2 N-ÇAŞĂK...3 POSS-ANNE...6 POSS-ATTE...6 POSS-ATTEANNE...6 N-ANNE...1 N-ATTE...1 N-ATTEANNE...1 IJ...1 DET-QNT...1 DET-IND...1 DET-DEM...1 NUM-ORD...2 NUM-COLL...1 NUM-DIST...1 NUM-ROMAN...1 NUM-PĔRRE...2 NUM-PĔRRE-SHORT...2 NUM...3 NUM-SHORT...1 NUM-OVERSHORT...2 POST...1 CC...1 CS...1 CA...1 ADJ-COMP...1 A1...1 A2...4 ADV1...1 ADV2...3 ADV-ITG...1 ABBR...1 V-PERS-PRES-REG...5 V-PERS-PAST-12...4 V-PERS-PAST-3...2 V-PERS-PAST...2 V-PERS-PLU...2 V-PERS-PREP...2 V-PERS-PREP-NEG...2 V-PERS-DUR...2 V-PERS-FUT...6 V-PERS-COND...6 V-TPRES...5 V-TPAST...6 V-TPLU...2 V-TPIH...2 V-TFUTU...2 V-TCOND...2 V-TOPT...2 V-GPR...14 V-GNA-SA...2 V-GNA...8 V-GER...8 V-PERS-OPT...6 V-NONFIN...11 V-FIN...8 V-COMMON...4 V-ABIL...2 V-ITER...2 V-DER...2 V-IV...2 V-TV...2 V-TD...4 Miscellaneous...9 Postposition...34 Conjunction...41 Adjectives...3877 Adverbs...1919 Nouns...11505 Verbs...8170 Proper...30806 Numerals...88 Pronouns...358 Determiners...5 Abbreviations...5950 Punctuation...24 DIGITLEX...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... ABBR Morphotaxing... ADJ-COMP Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GNA Morphotaxing... CLIT-HA Morphotaxing... CLIT-ÇÇĔ Morphotaxing... CS Morphotaxing... Conjunction Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IJ Morphotaxing... K Morphotaxing... Miscellaneous Morphotaxing... N Morphotaxing... N-ANNE Morphotaxing... N-ATTE Morphotaxing... N-ATTEANNE Morphotaxing... N-BENZIN Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-PL Morphotaxing... N-INFORMACI Morphotaxing... N-IZM Morphotaxing... N-KUKĂL Morphotaxing... N-MUZEY Morphotaxing... N-PL Morphotaxing... N-RADIO Morphotaxing... N-SUPĂN Morphotaxing... N-TU Morphotaxing... N-VLAÇ Morphotaxing... N-YEN Morphotaxing... N-YĔP Morphotaxing... N-ÇAŞĂK Morphotaxing... N-ĔŞ Morphotaxing... NOMINAL Morphotaxing... NP-AL Morphotaxing... NP-AL-BÜRO Morphotaxing... NP-AL-LN Morphotaxing... NP-AL-PX Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-M-IJ Morphotaxing... NP-COG-ENKO Morphotaxing... NP-COG-IJ Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-BERLIN Morphotaxing... NP-TOP-LN Morphotaxing... NP-TOP-PX Morphotaxing... NP-TOP-SK Morphotaxing... NP-TOP-UDMURTI Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIST Morphotaxing... NUM-ORD Morphotaxing... NUM-OVERSHORT Morphotaxing... NUM-PĔRRE Morphotaxing... NUM-PĔRRE-SHORT Morphotaxing... NUM-ROMAN Morphotaxing... NUM-SHORT Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSS Morphotaxing... POSS-ANNE Morphotaxing... POSS-ATTE Morphotaxing... POSS-ATTEANNE Morphotaxing... POST Morphotaxing... Postposition Morphotaxing... Pronouns Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... SUBST-SKER Morphotaxing... V-ABIL Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FIN Morphotaxing... V-GER Morphotaxing... V-GNA Morphotaxing... V-GNA-SA Morphotaxing... V-GPR Morphotaxing... V-ITER Morphotaxing... V-IV Morphotaxing... V-NONFIN Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-DUR Morphotaxing... V-PERS-FUT Morphotaxing... V-PERS-OPT Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PAST-12 Morphotaxing... V-PERS-PAST-3 Morphotaxing... V-PERS-PLU Morphotaxing... V-PERS-PREP Morphotaxing... V-PERS-PREP-NEG Morphotaxing... V-PERS-PRES-REG Morphotaxing... V-TCOND Morphotaxing... V-TD Morphotaxing... V-TFUTU Morphotaxing... V-TOPT Morphotaxing... V-TPAST Morphotaxing... V-TPIH Morphotaxing... V-TPLU Morphotaxing... V-TPRES Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-chv.chv.twol -o .deps/chv.twol.hfst | |
Reading input from apertium-chv.chv.twol. | |
Writing output to .deps/chv.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "Back vowel harmony for unyotised {U}" and "Vowel deletion for possessive SUBCASE: Vx={U}". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. ё:ё э:э {U}:ӳ >:> и:и {ъ}: >:> >:> {н}: {ъ}: й: й: {о}: >:> _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Possessive {и} does not appear after consonants in dative" and "Possessive {и} appears after deleted stem vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {е}:ӳ >:> и:и {й}:ь >:> щ:щ {ː}:щ {в}:в к: {ː}: {в}: {☭}: {A}: >:> _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Palatalisation of {T} after {н} SUBCASE: Cx={T}" and "{T} after liquids and nasals". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. Ӳ:Ӳ {U}:ӳ ӑ:ӑ н:н >:> _ >:> ӗ:ӗ Ӳ:Ӳ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Vowel assimilation before {U} SUBCASE: Vx=и Vy=ӳ" and "Orthographic detail for и with иу to ю". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. _ о: {в}: {☭}: >:> {U}:ӳ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Vowel reduction before {Ĕ} SUBCASE: Vx=и Vy=ӗ" and "Orthographic detail for и with иу to ю". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. _ о: {в}: {☭}: >:> {U}: >:> {Ĕ}:ӗ р:р __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/chv.LR.lexc.hfst -2 .deps/chv.twol.hfst -o .deps/chv.LR.seg.hfst | |
hfst-twolc apertium-chv.chv.mor.twol -o .deps/chv.mor.twol.hfst | |
Reading input from apertium-chv.chv.mor.twol. | |
Writing output to .deps/chv.mor.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/chv.LR.seg.hfst -2 .deps/chv.mor.twol.hfst -o .deps/chv.LR.hfst | |
/bin/mkdir -p .deps | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/chv.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -w -o chv.automorf.hfst | |
hfst-fst2txt chv.automorf.hfst | gzip -9 -c -n > chv.automorf.att.gz | |
zcat < chv.automorf.att.gz > .deps/chv.automorf.att | |
lt-comp lr .deps/chv.automorf.att chv.automorf.bin | |
main@standard 55063 140662 | |
final@inconditional 105 261 | |
lt-comp lr apertium-chv.post-chv.dix chv.autopgen.bin | |
main@standard 9 114 | |
cat apertium-chv.chv.lexc | grep -v 'Dir/LR' > .deps/chv.RL.lexc | |
hfst-lexc -W .deps/chv.RL.lexc -o .deps/chv.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/chv.RL.lexc, writing to .deps/chv.RL.lexc.hfst | |
Parsing lexc file .deps/chv.RL.lexc | |
Root...14 CLIT-GNA...2 CLIT-HA...2 CLIT-EMPH...3 K...12 CLIT-ÇÇĔ...2 CLIT-COP...2 CASE-NONOM...14 CASE...2 PLURAL...2 POSS...6 SUBST-SKER...2 SUBST...1 NOMINAL...1 NP-AL...2 NP-AL-PX...1 NP-AL-LN...4 NP-AL-BÜRO...1 NP-TOP...2 NP-TOP-PX...1 NP-TOP-LN...4 NP-TOP-BERLIN...1 NP-TOP-SK...1 NP-TOP-UDMURTI...1 NP-ANT-F...1 NP-ANT-M...1 NP-ANT-M-IJ...2 NP-COG-MF...1 NP-COG-OV...2 NP-COG-IJ...3 NP-COG-ENKO...1 NP-PAT-VICH...2 NP-PAT-M...1 N...2 N-PL...1 N-COMPOUND-PX...2 N-COMPOUND-PX-PL...1 N-ĔŞ...2 N-IZM...1 N-VLAÇ...5 N-SUPĂN...5 N-BENZIN...1 N-RADIO...2 N-TU...4 N-YEN...1 N-MUZEY...2 N-INFORMACI...1 N-YĔP...1 N-KUKĂL...2 N-ÇAŞĂK...3 POSS-ANNE...6 POSS-ATTE...6 POSS-ATTEANNE...6 N-ANNE...1 N-ATTE...1 N-ATTEANNE...1 IJ...1 DET-QNT...1 DET-IND...1 DET-DEM...1 NUM-ORD...2 NUM-COLL...1 NUM-DIST...1 NUM-ROMAN...1 NUM-PĔRRE...2 NUM-PĔRRE-SHORT...2 NUM...3 NUM-SHORT...1 NUM-OVERSHORT...2 POST...1 CC...1 CS...1 CA...1 ADJ-COMP...2 A1...2 A2...5 ADV1...1 ADV2...3 ADV-ITG...1 ABBR...1 V-PERS-PRES-REG...5 V-PERS-PAST-12...4 V-PERS-PAST-3...2 V-PERS-PAST...2 V-PERS-PLU...2 V-PERS-PREP...2 V-PERS-PREP-NEG...2 V-PERS-DUR...2 V-PERS-FUT...6 V-PERS-COND...6 V-TPRES...4 V-TPAST...6 V-TPLU...2 V-TPIH...2 V-TFUTU...2 V-TCOND...2 V-TOPT...2 V-GPR...13 V-GNA-SA...2 V-GNA...6 V-GER...8 V-PERS-OPT...6 V-NONFIN...11 V-FIN...8 V-COMMON...4 V-ABIL...2 V-ITER...2 V-DER...2 V-IV...2 V-TV...2 V-TD...4 Miscellaneous...9 Postposition...34 Conjunction...41 Adjectives...3877 Adverbs...1919 Nouns...11499 Verbs...8169 Proper...30799 Numerals...88 Pronouns...341 Determiners...5 Abbreviations...5944 Punctuation...24 DIGITLEX...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... ABBR Morphotaxing... ADJ-COMP Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GNA Morphotaxing... CLIT-HA Morphotaxing... CLIT-ÇÇĔ Morphotaxing... CS Morphotaxing... Conjunction Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IJ Morphotaxing... K Morphotaxing... Miscellaneous Morphotaxing... N Morphotaxing... N-ANNE Morphotaxing... N-ATTE Morphotaxing... N-ATTEANNE Morphotaxing... N-BENZIN Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-PL Morphotaxing... N-INFORMACI Morphotaxing... N-IZM Morphotaxing... N-KUKĂL Morphotaxing... N-MUZEY Morphotaxing... N-PL Morphotaxing... N-RADIO Morphotaxing... N-SUPĂN Morphotaxing... N-TU Morphotaxing... N-VLAÇ Morphotaxing... N-YEN Morphotaxing... N-YĔP Morphotaxing... N-ÇAŞĂK Morphotaxing... N-ĔŞ Morphotaxing... NOMINAL Morphotaxing... NP-AL Morphotaxing... NP-AL-BÜRO Morphotaxing... NP-AL-LN Morphotaxing... NP-AL-PX Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-M-IJ Morphotaxing... NP-COG-ENKO Morphotaxing... NP-COG-IJ Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-BERLIN Morphotaxing... NP-TOP-LN Morphotaxing... NP-TOP-PX Morphotaxing... NP-TOP-SK Morphotaxing... NP-TOP-UDMURTI Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIST Morphotaxing... NUM-ORD Morphotaxing... NUM-OVERSHORT Morphotaxing... NUM-PĔRRE Morphotaxing... NUM-PĔRRE-SHORT Morphotaxing... NUM-ROMAN Morphotaxing... NUM-SHORT Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSS Morphotaxing... POSS-ANNE Morphotaxing... POSS-ATTE Morphotaxing... POSS-ATTEANNE Morphotaxing... POST Morphotaxing... Postposition Morphotaxing... Pronouns Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... SUBST-SKER Morphotaxing... V-ABIL Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FIN Morphotaxing... V-GER Morphotaxing... V-GNA Morphotaxing... V-GNA-SA Morphotaxing... V-GPR Morphotaxing... V-ITER Morphotaxing... V-IV Morphotaxing... V-NONFIN Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-DUR Morphotaxing... V-PERS-FUT Morphotaxing... V-PERS-OPT Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PAST-12 Morphotaxing... V-PERS-PAST-3 Morphotaxing... V-PERS-PLU Morphotaxing... V-PERS-PREP Morphotaxing... V-PERS-PREP-NEG Morphotaxing... V-PERS-PRES-REG Morphotaxing... V-TCOND Morphotaxing... V-TD Morphotaxing... V-TFUTU Morphotaxing... V-TOPT Morphotaxing... V-TPAST Morphotaxing... V-TPIH Morphotaxing... V-TPLU Morphotaxing... V-TPRES Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/chv.RL.lexc.hfst -2 .deps/chv.twol.hfst -o .deps/chv.RL.seg.hfst | |
hfst-compose-intersect -1 .deps/chv.RL.seg.hfst -2 .deps/chv.mor.twol.hfst -o .deps/chv.RL.hfst | |
hfst-fst2fst -w .deps/chv.RL.hfst -o chv.autogen.hfst | |
hfst-compose-intersect -1 .deps/chv.LR.hfst -2 .deps/spellrelax.hfst -o .deps/footest.1 | |
hfst-invert .deps/footest.1 -o .deps/footest.2 | |
hfst-compose -F -1 .deps/footest.2 -2 .deps/chv.RL.seg.hfst -o .deps/chv.seg.hfst | |
hfst-minimise .deps/chv.seg.hfst | hfst-fst2fst -w -o chv.autoseg.hfst | |
hfst-fst2txt chv.autogen.hfst | gzip -9 -c -n > chv.autogen.att.gz | |
zcat < chv.autogen.att.gz > .deps/chv.autogen.att | |
lt-comp lr .deps/chv.autogen.att chv.autogen.bin | |
main@standard 55002 126397 | |
final@inconditional 111 323 | |
/usr/bin/cg-comp apertium-chv.chv.rlx chv.rlx.bin | |
Sections: 2, Rules: 6, Sets: 16, Tags: 41 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kum | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-kum.pc | |
test -z "kum.automorf.hfst kum.autogen.hfst kum.automorf.bin kum.autogen.bin kum.automorf.att.gz kum.autogen.att.gz kum.rlx.bin" || rm -f kum.automorf.hfst kum.autogen.hfst kum.automorf.bin kum.autogen.bin kum.automorf.att.gz kum.autogen.att.gz kum.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kum.kum.lexc | grep -v 'Dir/RL' > .deps/kum.LR.lexc | |
hfst-lexc .deps/kum.LR.lexc -o .deps/kum.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...17 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM...36 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT...1 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-OQ...1 CLIT-NOQST...1 CLIT-COP...3 CASES-OBL...5 CASES...2 POSS...6 ATTR-SUBST...3 GENPOSS-ETC...3 CASES-ETC...2 ABESS...1 N-INFL-COMMON...3 NP-COMMON...1 SUBST...2 N1...2 N5...2 NP-TOP-ACR...3 NP-TOP...2 NP-TOP-SK...1 NP-ANT-M...3 NP-ANT-F...3 NP-COG-OVA...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-MF...1 NP-COG-M...1 NP-PAT-VICH...2 NP-AL...2 NP-AL-ACR...3 A1...4 A2...2 A3...2 A4...2 NUM-COMMON...2 NUM-FULL...3 NUM-ITG...3 NUM-ROMAN...1 DET-ITG...1 DET-DEM...1 DET-REF...1 NUM-COLL...2 DET-IND...1 DET-QNT...1 V-PERS-S1-QST-NO3PERSON...8 V-PERS-S1-QST...3 V-PERS-S2...6 V-PERS-COP...3 V-FIN-REG-NEG...4 V-FIN-IRREG-NEG-COMMON...3 V-FIN-IRREG-NEG-AR...5 V-FIN-IRREG-NEG-IR...3 V-NONFIN-IRREG-NEG...5 V-NONFIN-REG-NEG...21 V-COMMON...5 V-COMMON-AR...2 V-COMMON-IR...2 V-DER...1 V-IV...2 V-IV-AR...2 V-TV...3 V-TV-AR...3 V-TV-NOPASS...2 V-TV-PASS...1 PRON-MEN...8 PRON-SEN...8 PRON-OL...9 PRON-BIZ...7 PRON-SIZ...7 PRON-OLAR...1 PRON-DEM-BU...11 PRON-DEM-SO...10 PRON-ITG...1 PRON-NEG...1 PRON-QNT...1 PRON-ITG-QAJSY...1 PRON-REF-ADV...1 PRON-REF-PX...6 PRON-REF...1 PRON-IND...1 KI...1 ADV3...1 ADV4...3 ADV5...1 ADV6...2 ADV7...3 POST...1 CC...1 CS...1 CA...1 POSTADV...1 INTERJ...1 ABBR...1 Miscellaneous...6 Copula...4 Postadverbs...1 Conjunctions...18 Postpositions...14 Pronouns...20 Determiners...11 Numerals...45 Nouns...2619 ProperNouns...1470 Adjectives...237 Adverbs...71 Verbs...423 Interjections...6 Abbreviations...1 Punctuation...24 Digits... | |
hfst-twolc apertium-kum.kum.twol -o .deps/kum.twol.hfst | |
Reading input from apertium-kum.kum.twol. | |
Writing output to .deps/kum.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kum.LR.lexc.hfst -2 .deps/kum.twol.hfst -o .deps/kum.LR.hfst | |
hfst-invert .deps/kum.LR.hfst | hfst-fst2fst -O -o kum.automorf.hfst | |
cat apertium-kum.kum.lexc | grep -v 'Dir/LR' > .deps/kum.RL.lexc | |
hfst-lexc .deps/kum.RL.lexc -o .deps/kum.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...17 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT...1 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-OQ...1 CLIT-NOQST...1 CLIT-COP...3 CASES-OBL...5 CASES...2 POSS...6 ATTR-SUBST...3 GENPOSS-ETC...3 CASES-ETC...2 ABESS...1 N-INFL-COMMON...3 NP-COMMON...1 SUBST...2 N1...2 N5...2 NP-TOP-ACR...3 NP-TOP...2 NP-TOP-SK...1 NP-ANT-M...3 NP-ANT-F...3 NP-COG-OVA...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-MF...1 NP-COG-M...1 NP-PAT-VICH...2 NP-AL...2 NP-AL-ACR...3 A1...4 A2...2 A3...2 A4...2 NUM-COMMON...2 NUM-FULL...3 NUM-ITG...3 NUM-ROMAN...1 DET-ITG...1 DET-DEM...1 DET-REF...1 NUM-COLL...2 DET-IND...1 DET-QNT...1 V-PERS-S1-QST-NO3PERSON...8 V-PERS-S1-QST...3 V-PERS-S2...6 V-PERS-COP...3 V-FIN-REG-NEG...4 V-FIN-IRREG-NEG-COMMON...3 V-FIN-IRREG-NEG-AR...3 V-FIN-IRREG-NEG-IR...3 V-NONFIN-IRREG-NEG...5 V-NONFIN-REG-NEG...21 V-COMMON...5 V-COMMON-AR...2 V-COMMON-IR...2 V-DER...1 V-IV...2 V-IV-AR...2 V-TV...3 V-TV-AR...3 V-TV-NOPASS...2 V-TV-PASS...1 PRON-MEN...8 PRON-SEN...8 PRON-OL...8 PRON-BIZ...7 PRON-SIZ...7 PRON-OLAR...1 PRON-DEM-BU...10 PRON-DEM-SO...10 PRON-ITG...1 PRON-NEG...1 PRON-QNT...1 PRON-ITG-QAJSY...1 PRON-REF-ADV...1 PRON-REF-PX...6 PRON-REF...1 PRON-IND...1 KI...1 ADV3...1 ADV4...3 ADV5...1 ADV6...2 ADV7...3 POST...1 CC...1 CS...1 CA...1 POSTADV...1 INTERJ...1 ABBR...1 Miscellaneous...2 Copula...4 Postadverbs...1 Conjunctions...17 Postpositions...14 Pronouns...20 Determiners...11 Numerals...45 Nouns...2616 ProperNouns...1467 Adjectives...237 Adverbs...70 Verbs...422 Interjections...6 Abbreviations...1 Punctuation...24 Digits... | |
hfst-compose-intersect -1 .deps/kum.RL.lexc.hfst -2 .deps/kum.twol.hfst -o .deps/kum.RL.hfst | |
hfst-fst2fst -O .deps/kum.RL.hfst -o kum.autogen.hfst | |
hfst-fst2txt kum.automorf.hfst | gzip -9 -c -n > kum.automorf.att.gz | |
zcat < kum.automorf.att.gz > .deps/kum.automorf.att | |
lt-comp lr .deps/kum.automorf.att kum.automorf.bin | |
main@standard 18447 32509 | |
final@inconditional 1575 2702 | |
hfst-fst2txt kum.autogen.hfst | gzip -9 -c -n > kum.autogen.att.gz | |
zcat < kum.autogen.att.gz > .deps/kum.autogen.att | |
lt-comp lr .deps/kum.autogen.att kum.autogen.bin | |
main@standard 18410 32383 | |
final@inconditional 1550 2625 | |
/usr/bin/cg-comp apertium-kum.kum.rlx kum.rlx.bin | |
Sections: 1, Rules: 6, Sets: 20, Tags: 32 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kaa | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-kaa.pc | |
test -z "kaa.automorf.hfst kaa.autogen.hfst kaa.automorf.bin .autogen.bin kaa.automorf.att.gz .autogen.att.gz kaa.autopgen.bin kaa.rlx.bin" || rm -f kaa.automorf.hfst kaa.autogen.hfst kaa.automorf.bin .autogen.bin kaa.automorf.att.gz .autogen.att.gz kaa.autopgen.bin kaa.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kaa.kaa.lexc | grep -v 'Dir/RL' > .deps/kaa.LR.lexc | |
hfst-lexc -v .deps/kaa.LR.lexc -o .deps/kaa.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kaa.LR.lexc, writing to .deps/kaa.LR.lexc.hfst | |
Parsing lexc file .deps/kaa.LR.lexc | |
Root...18 V-IV...2 V-IV-COOP...1 V-IV-REFL...1 V-IV-REP...1 V-IV-LESS...1 V-TV...3 V-TV-CAUS...1 V-TV-COOP...1 V-TV-REP...1 VAUX...1 N1...2 N1-NAT...1 N1-VN...1 A1...6 A1-SUP...1 A1-NAT...1 A2...4 A2-SUP...1 A2-NAT...1 ADV...1 ADV-ATTR...1 ADV-WITH-KI...2 POST...1 POST-NOM...1 POST-ABL...1 POSTADV...1 CS...1 CA...1 ADV-ITG...1 CC...1 QST...1 MOD-ASS...1 MOD...1 IJ...1 IJ→IJ...1 INTERJ...1 ABBR...1 IDEO...1 PAREN...1 PHRASE...1 CASE-NONOM...6 CASE-ETC-NONOM...2 FULL-NOMINAL-INFLECTION-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...39 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH...2 CLIT-QST-MA...2 CLIT-QST...3 CLIT-MODASS...2 CLIT-GHANA-ETC...5 COMMON-CLITICS...3 CLIT...1 CLITICS-NO-COP...3 CLIT-COP...1 CLITICS-INCL-COP...2 CASES-OBL...5 CASES-COMMON...4 CASES...4 POSSESSIVES...7 ATTR-SUBST...3 GENPOSS-ETC...4 CASES-ETC...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-COMMON...2 SUBST...2 N1-ABBR...4 N-COMPOUND-PX-COMMON...2 N-COMPOUND-PX...2 N3...2 N5...1 N6...2 ADV-LANG...2 NP-COMMON...1 NP-TOP...2 NP-ANT-F...2 NP-ANT-M...2 NP-COG-MF...2 NP-COG-OV...4 NP-ORG...1 NP-ORG-COMPOUND...1 NP-AL...2 V-ADJ...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 V-PERS-AOR...6 V-PERS-IFI_EVID...3 VOL-ENDINGS...3 V-MAKTA-INFL...2 KI...2 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 V-FINITE-REGULAR_NEGATIVE...7 V-FINITE-IRREGULAR_NEGATIVE...3 V-NONFINITE-REGULAR_NEGATIVE...20 V-NONFINITE-IRREGULAR_NEGATIVE...20 V-COMMON...5 V-DER...1 V-TV-NOPASS...2 V-TV-PASS...1 Vinfl-AUX-IMPF...1 Vinfl-AUX-IMPF-NEG...1 Vinfl-AUX...1 Copula...6 PRON-12SG-CASES...10 PRON-PERS-INFL...1 PersonalPronouns...28 PRON-DEM-INFL...14 PRON-DEM-BUL...16 PRON-DEM-MINA...12 PRON-DEM-ANA...12 DemonstrativePronouns...15 PRON-ITG-INFL...1 PRON-ITG-QAYSI...8 PRON-ITG-QANSHA...1 PRON-ITG-QANDAY...5 InterrogativePronouns...6 PRON-QNT-POSS...1 PRON-QNT...1 PRON-IND...1 PRON-IND-PL...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 PRNNEG...1 PRON-XXX...1 PRON-DEM...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 NUM-COMMON...2 NUM...3 NUM-TWENTY...2 NUM-ITG...3 NUM-ROMAN...1 NUM-COLL...2 Miscellaneous...12 Conjunctions...33 Postpositions...53 Postadverbs...9 Pronouns...28 Determiners...33 Numerals...63 Nouns...2366 ProperNouns...665 Adjectives...829 Adverbs...198 Verbs...1542 Interjections...44 Abbreviations...26 Punctuation...25 Digits...5 Common...Compiling... Warning: Sublexicons defined but not used | |
CASES-OBL NP-ORG-COMPOUND Vinfl-AUX-IMPF-NEG | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-NAT Morphotaxing... A1-SUP Morphotaxing... A2 Morphotaxing... A2-NAT Morphotaxing... A2-SUP Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CASES-OBL Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COMMON-CLITICS Morphotaxing... CS Morphotaxing... Common Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-NONOM Morphotaxing... GENPOSS-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... IDEO Morphotaxing... IJ Morphotaxing... IJ→IJ Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... MOD Morphotaxing... MOD-ASS Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N1-NAT Morphotaxing... N1-VN Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... NUM-TWENTY Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PAREN Morphotaxing... PHRASE Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-NOM Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-12SG-CASES Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-ANA Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-MINA Morphotaxing... PRON-IND Morphotaxing... PRON-IND-PL Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-ITG-QANSHA Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-XXX Morphotaxing... PersonalPronouns Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-LESS Morphotaxing... V-IV-REFL Morphotaxing... V-IV-REP Morphotaxing... V-MAKTA-INFL Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-IFI_EVID Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-COOP Morphotaxing... V-TV-NOPASS Morphotaxing... V-TV-PASS Morphotaxing... V-TV-REP Morphotaxing... VAUX Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs Morphotaxing... Vinfl-AUX Morphotaxing... Vinfl-AUX-IMPF Morphotaxing... Vinfl-AUX-IMPF-NEG | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-kaa.kaa.twol -o .deps/kaa.twol.hfst | |
Reading input from apertium-kaa.kaa.twol. | |
Writing output to .deps/kaa.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kaa.LR.lexc.hfst -2 .deps/kaa.twol.hfst -o .deps/kaa.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kaa.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o kaa.automorf.hfst | |
cat apertium-kaa.kaa.lexc | grep -v 'Dir/LR' > .deps/kaa.RL.lexc | |
hfst-lexc -v .deps/kaa.RL.lexc -o .deps/kaa.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kaa.RL.lexc, writing to .deps/kaa.RL.lexc.hfst | |
Parsing lexc file .deps/kaa.RL.lexc | |
Root...18 V-IV...2 V-IV-COOP...1 V-IV-REFL...1 V-IV-REP...1 V-IV-LESS...1 V-TV...3 V-TV-CAUS...1 V-TV-COOP...1 V-TV-REP...1 VAUX...1 N1...2 N1-NAT...1 N1-VN...1 A1...6 A1-SUP...1 A1-NAT...1 A2...4 A2-SUP...1 A2-NAT...1 ADV...1 ADV-ATTR...1 ADV-WITH-KI...2 POST...1 POST-NOM...1 POST-ABL...1 POSTADV...1 CS...1 CA...1 ADV-ITG...1 CC...1 QST...1 MOD-ASS...1 MOD...1 IJ...1 IJ→IJ...1 INTERJ...1 ABBR...1 IDEO...1 PAREN...1 PHRASE...1 CASE-NONOM...6 CASE-ETC-NONOM...2 FULL-NOMINAL-INFLECTION-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH...2 CLIT-QST-MA...1 CLIT-QST...3 CLIT-MODASS...2 CLIT-GHANA-ETC...5 COMMON-CLITICS...3 CLIT...1 CLITICS-NO-COP...3 CLIT-COP...1 CLITICS-INCL-COP...2 CASES-OBL...5 CASES-COMMON...4 CASES...4 POSSESSIVES...7 ATTR-SUBST...3 GENPOSS-ETC...4 CASES-ETC...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-COMMON...2 SUBST...2 N1-ABBR...3 N-COMPOUND-PX-COMMON...2 N-COMPOUND-PX...2 N3...2 N5...1 N6...1 ADV-LANG...2 NP-COMMON...1 NP-TOP...2 NP-ANT-F...2 NP-ANT-M...2 NP-COG-MF...2 NP-COG-OV...4 NP-ORG...1 NP-ORG-COMPOUND...1 NP-AL...2 V-ADJ...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 V-PERS-AOR...3 V-PERS-IFI_EVID...3 VOL-ENDINGS...3 V-MAKTA-INFL...2 KI...2 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 V-FINITE-REGULAR_NEGATIVE...7 V-FINITE-IRREGULAR_NEGATIVE...3 V-NONFINITE-REGULAR_NEGATIVE...19 V-NONFINITE-IRREGULAR_NEGATIVE...18 V-COMMON...5 V-DER...1 V-TV-NOPASS...2 V-TV-PASS...1 Vinfl-AUX-IMPF...1 Vinfl-AUX-IMPF-NEG...1 Vinfl-AUX...1 Copula...6 PRON-12SG-CASES...10 PRON-PERS-INFL...1 PersonalPronouns...25 PRON-DEM-INFL...12 PRON-DEM-BUL...13 PRON-DEM-MINA...12 PRON-DEM-ANA...12 DemonstrativePronouns...15 PRON-ITG-INFL...1 PRON-ITG-QAYSI...8 PRON-ITG-QANSHA...1 PRON-ITG-QANDAY...5 InterrogativePronouns...6 PRON-QNT-POSS...1 PRON-QNT...1 PRON-IND...1 PRON-IND-PL...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 PRNNEG...1 PRON-XXX...1 PRON-DEM...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 NUM-COMMON...2 NUM...3 NUM-TWENTY...2 NUM-ITG...3 NUM-ROMAN...1 NUM-COLL...2 Miscellaneous...5 Conjunctions...30 Postpositions...49 Postadverbs...5 Pronouns...28 Determiners...33 Numerals...63 Nouns...2365 ProperNouns...660 Adjectives...829 Adverbs...196 Verbs...1540 Interjections...44 Abbreviations...24 Punctuation...25 Digits...5 Common...Compiling... Warning: Sublexicons defined but not used | |
CASES-OBL NP-ORG-COMPOUND Vinfl-AUX-IMPF-NEG | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-NAT Morphotaxing... A1-SUP Morphotaxing... A2 Morphotaxing... A2-NAT Morphotaxing... A2-SUP Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CASES-OBL Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COMMON-CLITICS Morphotaxing... CS Morphotaxing... Common Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-NONOM Morphotaxing... GENPOSS-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... IDEO Morphotaxing... IJ Morphotaxing... IJ→IJ Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... MOD Morphotaxing... MOD-ASS Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N1-NAT Morphotaxing... N1-VN Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... NUM-TWENTY Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PAREN Morphotaxing... PHRASE Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-NOM Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-12SG-CASES Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-ANA Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-MINA Morphotaxing... PRON-IND Morphotaxing... PRON-IND-PL Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-ITG-QANSHA Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-XXX Morphotaxing... PersonalPronouns Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-LESS Morphotaxing... V-IV-REFL Morphotaxing... V-IV-REP Morphotaxing... V-MAKTA-INFL Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-IFI_EVID Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-COOP Morphotaxing... V-TV-NOPASS Morphotaxing... V-TV-PASS Morphotaxing... V-TV-REP Morphotaxing... VAUX Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs Morphotaxing... Vinfl-AUX Morphotaxing... Vinfl-AUX-IMPF Morphotaxing... Vinfl-AUX-IMPF-NEG | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/kaa.RL.lexc.hfst -2 .deps/kaa.twol.hfst -o .deps/kaa.RL.hfst | |
hfst-fst2fst -O .deps/kaa.RL.hfst -o kaa.autogen.hfst | |
hfst-fst2txt kaa.automorf.hfst | gzip -9 -c -n > kaa.automorf.att.gz | |
zcat < kaa.automorf.att.gz > .deps/kaa.automorf.att | |
lt-comp lr .deps/kaa.automorf.att kaa.automorf.bin | |
main@standard 22375 47983 | |
final@inconditional 443 1599 | |
hfst-fst2txt kaa.autogen.hfst | gzip -9 -c -n > kaa.autogen.att.gz | |
zcat < kaa.autogen.att.gz > .deps/kaa.autogen.att | |
lt-comp lr .deps/kaa.autogen.att kaa.autogen.bin | |
main@standard 29537 59015 | |
final@inconditional 1016 2071 | |
lt-comp lr apertium-kaa.post-kaa.dix kaa.autopgen.bin | |
main@standard 9 114 | |
/usr/bin/cg-comp apertium-kaa.kaa.rlx kaa.rlx.bin | |
Sections: 1, Rules: 1, Sets: 5, Tags: 23 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tuk | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-tuk.pc | |
test -z "tuk.automorf.hfst tuk.autogen.hfst tuk.automorf.bin tuk.autogen.bin tuk.automorf.att.gz tuk.autogen.att.gz tuk.rlx.bin" || rm -f tuk.automorf.hfst tuk.autogen.hfst tuk.automorf.bin tuk.autogen.bin tuk.automorf.att.gz tuk.autogen.att.gz tuk.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-tuk.tuk.lexc | grep -v 'Dir/RL' > .deps/tuk.LR.lexc | |
hfst-lexc .deps/tuk.LR.lexc -o .deps/tuk.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...15 CLIT...4 CLIT-COP...3 V-PERS-G1...6 V-PERS-G2-NOSG3...5 V-PERS-G2...2 V-PERS-G3...2 V-PERS-G4...6 V-PERS-G5...6 DAGI-1...2 DAGI-2...2 DAGI-3...2 DAGI-4...2 CASE...7 CASE-POS...7 POSS-DAGI...2 POSS...6 SUBST...3 N1...4 N2...4 NP-COG-OV...2 NP-COG-MF...1 NP-ANT-M...1 NP-ANT-F...1 NP-TOP...1 NP-AL...1 A1...4 A3-A...5 A3-E...5 A2...1 DIGITLEX...1 NUM...4 QST...1 ADV...1 ADV-ITG...1 POSTADV...1 POST...1 MOD...1 MOD-EKEN...3 PRON-MEN...6 PRON-SEN...6 PRON-OL...7 PRON-BIZ...6 PRON-SIZ...6 PRON-OLAR...6 PRON-DEM-ŞU...1 PRON-DEM-BU...7 PRON-DEM-ŞOL...7 PRON-ITG...1 PRON-REF...1 PRON-IND...1 PRON-ADV...1 DET-IND...1 DET-DEM...1 DET-QNT...1 ABBR...1 INTERJ...1 CC...1 CS...1 V-NONFIN-COMMON...6 V-NONFIN-NEG...8 V-NONFIN...5 V-FIN-COMMON...10 V-FIN-NEG...3 V-NEG...3 V-COMMON...2 V-IV...3 V-TV...4 V-IV-NOCAUS...1 V-TV-NOCAUS...2 V-IV-CAUS...2 V-TV-CAUS...2 VAUX-IMPF...1 Modals...7 Conjunctions...9 Postpositions...12 Postadverbs...1 Pronouns...18 Determiners...17 Numerals...24 Nouns...1881 ProperNouns...123 Adjectives...638 Adverbs...98 Verbs...145 Interjections...3 Abbreviations...6 Punctuation... | |
hfst-twolc apertium-tuk.tuk.twol -o .deps/tuk.twol.hfst | |
Reading input from apertium-tuk.tuk.twol. | |
Writing output to .deps/tuk.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tuk.LR.lexc.hfst -2 .deps/tuk.twol.hfst -o .deps/tuk.LR.hfst | |
hfst-invert .deps/tuk.LR.hfst | hfst-fst2fst -O -o tuk.automorf.hfst | |
cat apertium-tuk.tuk.lexc | grep -v 'Dir/LR' > .deps/tuk.RL.lexc | |
hfst-lexc .deps/tuk.RL.lexc -o .deps/tuk.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...15 CLIT...4 CLIT-COP...3 V-PERS-G1...6 V-PERS-G2-NOSG3...5 V-PERS-G2...2 V-PERS-G3...2 V-PERS-G4...6 V-PERS-G5...6 DAGI-1...2 DAGI-2...2 DAGI-3...2 DAGI-4...2 CASE...7 CASE-POS...7 POSS-DAGI...2 POSS...6 SUBST...3 N1...4 N2...4 NP-COG-OV...2 NP-COG-MF...1 NP-ANT-M...1 NP-ANT-F...1 NP-TOP...1 NP-AL...1 A1...4 A3-A...5 A3-E...5 A2...1 DIGITLEX...1 NUM...4 QST...1 ADV...1 ADV-ITG...1 POSTADV...1 POST...1 MOD...1 MOD-EKEN...1 PRON-MEN...6 PRON-SEN...6 PRON-OL...6 PRON-BIZ...6 PRON-SIZ...6 PRON-OLAR...6 PRON-DEM-ŞU...1 PRON-DEM-BU...7 PRON-DEM-ŞOL...7 PRON-ITG...1 PRON-REF...1 PRON-IND...1 PRON-ADV...1 DET-IND...1 DET-DEM...1 DET-QNT...1 ABBR...1 INTERJ...1 CC...1 CS...1 V-NONFIN-COMMON...6 V-NONFIN-NEG...8 V-NONFIN...5 V-FIN-COMMON...10 V-FIN-NEG...3 V-NEG...3 V-COMMON...2 V-IV...3 V-TV...4 V-IV-NOCAUS...1 V-TV-NOCAUS...2 V-IV-CAUS...2 V-TV-CAUS...2 VAUX-IMPF...1 Modals...5 Conjunctions...7 Postpositions...12 Postadverbs...1 Pronouns...18 Determiners...17 Numerals...24 Nouns...1881 ProperNouns...122 Adjectives...638 Adverbs...98 Verbs...145 Interjections...3 Abbreviations...6 Punctuation... | |
hfst-compose-intersect -1 .deps/tuk.RL.lexc.hfst -2 .deps/tuk.twol.hfst -o .deps/tuk.RL.hfst | |
hfst-fst2fst -O .deps/tuk.RL.hfst -o tuk.autogen.hfst | |
hfst-fst2txt tuk.automorf.hfst | gzip -9 -c -n > tuk.automorf.att.gz | |
zcat < tuk.automorf.att.gz > .deps/tuk.automorf.att | |
lt-comp lr .deps/tuk.automorf.att tuk.automorf.bin | |
main@standard 12745 20397 | |
final@inconditional 14 34 | |
hfst-fst2txt tuk.autogen.hfst | gzip -9 -c -n > tuk.autogen.att.gz | |
zcat < tuk.autogen.att.gz > .deps/tuk.autogen.att | |
lt-comp lr .deps/tuk.autogen.att tuk.autogen.bin | |
main@standard 12870 20567 | |
final@inconditional 14 34 | |
/usr/bin/cg-comp apertium-tuk.tuk.rlx tuk.rlx.bin | |
Sections: 1, Rules: 5, Sets: 8, Tags: 23 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-bak | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-bak.pc | |
test -z "bak.automorf.hfst bak.autogen.hfst bak.automorf.bin bak.autogen.bin bak.automorf.att.gz bak.autogen.att.gz bak.rlx.bin" || rm -f bak.automorf.hfst bak.autogen.hfst bak.automorf.bin bak.autogen.bin bak.automorf.att.gz bak.autogen.att.gz bak.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-bak.bak.lexc | grep -v 'Dir/RL' > .deps/bak.LR.lexc | |
hfst-lexc --Werror .deps/bak.LR.lexc -o .deps/bak.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...53 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-MODASS...3 CLIT-MODIND...2 CLIT-GHANA...1 CLIT-DA-CNJ...1 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...4 CLITICS-INCL-COP...2 CLITICS-AFTER-IMP-SG...3 CLITICS-AFTER-IMP-PL...3 CASES-COMMON...3 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 CASES-POSSESSIVES...10 CASES-POSSESSIVES-PX1-2-SG...5 CASES-POSSESSIVES-PX3-SG...5 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A2...4 A3...2 A4...1 V-ADJ...2 V-PERS-S1-NO1SG...7 V-PERS-S1...2 V-PERS-S1-COP...8 V-PERS-S2...8 V-PERS-PRESENT...3 V-PERS-VOLITIONAL...8 GER-CASE-NO_COPULA...4 GER-ATTR-SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSS-REAL-COMMON...6 GER_FUT3-POSS-REAL...2 GER-POSS-REAL...2 GER-INFL...5 V-FUT...15 V-FINITE-REGULAR_NEGATIVE...4 V-NONFINITE-IRREGULAR_NEGATIVE...20 V-NONFINITE-REGULAR_NEGATIVE...20 V-COMMON...5 V-COMMON-PASSIVE...2 V-DER...2 V-IV...4 V-TV...4 VAUX...2 COP-I...6 PRON-P12SG-CASES...10 PRON-PERS-INFL...1 PRON-PERS...19 PRON-DEM-INFL...12 PRON-DEM-BUL-ŠUL...13 PRON-DEM-UL...13 DemonstrativePronouns...5 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG-QAYHI...7 PRON-ITG-NINDI...8 InterrogativePronouns...6 PRON-QNT-POSS...1 PRON-QNT...1 PRNNEG...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1...2 N1-RUS...1 N-COMPOUND-PX...3 N3...4 ADV-LANG...2 NP-COMMON...3 NP-TOP...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-M...2 NP-COG-F...2 NP-COG-MF...2 NP-COG-OBIN-FEM...2 NP-COG-OB...5 NP-PAT-VICH...2 NP-ORG...1 NP-AL...1 NUM...5 NUM-ITG...5 NUM-COLL...2 NUM-ITG-COLL...2 NUM-ROMAN...1 POST...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...2 ADV-WITH-KI-BIRE...2 ADV-ITG...1 CC...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD-IND...1 EMPH...1 INTERJ...1 IDEO...1 ABBR...2 ModalParticles...19 Copula...1 Conjunctions...46 Postpositions...40 Postadverbs...14 Pronouns...30 Determiners...24 Numerals...49 Nouns...13860 ProperNouns...35794 Adjectives...2717 Adverbs...278 Verbs...2729 Interjections...104 Ideophones...600 Abbreviations...98 Punctuation...24 PUNCT...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser... | |
hfst-twolc apertium-bak.bak.twol -o .deps/bak.twol.hfst | |
Reading input from apertium-bak.bak.twol. | |
Writing output to .deps/bak.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ {A}:ә Һ:Һ {n}:н {ь}: Һ:Һ о:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ {е}:е Һ:Һ {n}:н {ь}: Һ:Һ {I}:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ {е}:е Һ:Һ {n}:н {ь}: Һ:Һ {E}:ә Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ {I}:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ {E}:ә Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ {ger}:е Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ {I}:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ {E}:ә Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ {ger}:е Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ө:ө Һ:Һ {n}:н {ь}: Һ:Һ о:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ө:ө Һ:Һ {n}:н {ь}: Һ:Һ ә:ә Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ө:ө Һ:Һ {n}:н {ь}: Һ:Һ {I}:е Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ө:ө Һ:Һ {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ө:ө Һ:Һ {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ {I}:о Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ {E}:ә Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ {е}:е Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ э:э Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ и:и Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө" and "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ ү:ү Һ:Һ {n}:н {ь}: Һ:Һ {I}:ө Һ:Һ {n}:н {ь}: Һ:Һ _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=о Vy=о" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: о:о {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ә Vy=е" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: ә:ә {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=е Vy=е" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: {I}:е {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=э Vy=е" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: э:э {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=и Vy=е" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: и:и {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ө Vy=ө" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: у:у {ь}: {I}:ө {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "I Vowel Harmony SUBCASE: PreviousVow=ү Vy=е" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {n}:н {ь}: Һ:Һ я:я {ь}: {U}:ү {ь}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Deletion of accusative {N} after {n}" and "Forward voicing assimilation SUBCASE: Cx={N} Cy=т". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. Һ:Һ {n}: >: _ {I}: __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Deletion of dative {G} after px1sg, px2sg" and "Back assimilation of G". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {I}: ң:ң >: {A}:я Һ:Һ {I}: ң:ң >: _ {A}:йә __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "A Vowel Harmony" and "Convert {A} to йә after FrontVow and й or {j}". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. ү:ү {j}: й:й _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/bak.LR.lexc.hfst -2 .deps/bak.twol.hfst -o .deps/bak.LR.hfst | |
hfst-invert .deps/bak.LR.hfst | hfst-fst2fst -O -o bak.automorf.hfst | |
cat apertium-bak.bak.lexc | grep -v 'Dir/LR' > .deps/bak.RL.lexc | |
hfst-lexc --Werror .deps/bak.RL.lexc -o .deps/bak.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-MODASS...3 CLIT-MODIND...2 CLIT-GHANA...1 CLIT-DA-CNJ...1 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...4 CLITICS-INCL-COP...2 CLITICS-AFTER-IMP-SG...3 CLITICS-AFTER-IMP-PL...3 CASES-COMMON...3 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 CASES-POSSESSIVES...10 CASES-POSSESSIVES-PX1-2-SG...5 CASES-POSSESSIVES-PX3-SG...5 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A2...4 A3...2 A4...1 V-ADJ...2 V-PERS-S1-NO1SG...7 V-PERS-S1...2 V-PERS-S1-COP...8 V-PERS-S2...8 V-PERS-PRESENT...2 V-PERS-VOLITIONAL...8 GER-CASE-NO_COPULA...4 GER-ATTR-SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSS-REAL-COMMON...6 GER_FUT3-POSS-REAL...2 GER-POSS-REAL...2 GER-INFL...5 V-FUT...13 V-FINITE-REGULAR_NEGATIVE...4 V-NONFINITE-IRREGULAR_NEGATIVE...13 V-NONFINITE-REGULAR_NEGATIVE...20 V-COMMON...5 V-COMMON-PASSIVE...2 V-DER...2 V-IV...4 V-TV...4 VAUX...2 COP-I...6 PRON-P12SG-CASES...10 PRON-PERS-INFL...1 PRON-PERS...19 PRON-DEM-INFL...12 PRON-DEM-BUL-ŠUL...13 PRON-DEM-UL...13 DemonstrativePronouns...5 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG-QAYHI...7 PRON-ITG-NINDI...4 InterrogativePronouns...6 PRON-QNT-POSS...1 PRON-QNT...1 PRNNEG...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1...2 N1-RUS...1 N-COMPOUND-PX...3 N3...4 ADV-LANG...2 NP-COMMON...3 NP-TOP...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-M...2 NP-COG-F...2 NP-COG-MF...2 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-PAT-VICH...2 NP-ORG...1 NP-AL...1 NUM...5 NUM-ITG...5 NUM-COLL...2 NUM-ITG-COLL...2 NUM-ROMAN...1 POST...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...2 ADV-WITH-KI-BIRE...2 ADV-ITG...1 CC...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD-IND...1 EMPH...1 INTERJ...1 IDEO...1 ABBR...2 ModalParticles...10 Copula...1 Conjunctions...39 Postpositions...40 Postadverbs...3 Pronouns...30 Determiners...24 Numerals...46 Nouns...13853 ProperNouns...35793 Adjectives...2717 Adverbs...278 Verbs...2729 Interjections...104 Ideophones...600 Abbreviations...91 Punctuation...24 PUNCT...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser... | |
hfst-compose-intersect -1 .deps/bak.RL.lexc.hfst -2 .deps/bak.twol.hfst -o .deps/bak.RL.hfst | |
hfst-fst2fst -O .deps/bak.RL.hfst -o bak.autogen.hfst | |
hfst-fst2txt bak.automorf.hfst | gzip -9 -c -n > bak.automorf.att.gz | |
zcat < bak.automorf.att.gz > .deps/bak.automorf.att | |
lt-comp lr .deps/bak.automorf.att bak.automorf.bin | |
main@standard 78147 146596 | |
final@inconditional 870 1834 | |
hfst-fst2txt bak.autogen.hfst | gzip -9 -c -n > bak.autogen.att.gz | |
zcat < bak.autogen.att.gz > .deps/bak.autogen.att | |
lt-comp lr .deps/bak.autogen.att bak.autogen.bin | |
main@standard 77675 145337 | |
final@inconditional 463 1066 | |
/usr/bin/cg-comp apertium-bak.bak.rlx bak.rlx.bin | |
Sections: 1, Rules: 5, Sets: 25, Tags: 44 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kaz | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-kaz.pc | |
test -z "kaz.automorf.hfst kaz.automorf.bin kaz.automorf.att.gz kaz.autogen.hfst kaz.autogen.bin kaz.autogen.att.gz kaz.autopgen.bin kaz.rlx.bin" || rm -f kaz.automorf.hfst kaz.automorf.bin kaz.automorf.att.gz kaz.autogen.hfst kaz.autogen.bin kaz.autogen.att.gz kaz.autopgen.bin kaz.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kaz.kaz.lexc | grep -v -e 'Dir/RL' > .deps/kaz.LR.lexc | |
hfst-lexc --Werror .deps/kaz.LR.lexc -o .deps/kaz.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kaz.LR.lexc, writing to .deps/kaz.LR.lexc.hfst | |
Parsing lexc file .deps/kaz.LR.lexc | |
Root...8 CASE-NONOM...7 CASE-ETC-NONOM...2 FULL-NOMINAL-INFLECTION-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...38 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH...2 CLIT-QST-MA...1 CLIT-QST...1 CLIT-MODEMO...2 CLIT-MODASS...3 CLIT-GHANA-ETC...5 CLIT-COP...2 CLITICS-NO-COP...5 CLITICS-NO-COP-NO-QST...3 CLITICS-INCL-COP...2 CASES-COMMON...5 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...9 A2...6 A3...2 A4...1 A6...3 V-ADJ...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 V-PERS-AOR...8 V-PERS-IFI_EVID...3 VOL-ENDINGS...9 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ETC...1 GER-GENERAL-POSSESSIVE-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 V-FINITE-IRREGULAR_NEGATIVE...9 V-FINITE-REGULAR_NEGATIVE...9 V-NONFINITE-IRREGULAR_NEGATIVE...21 V-NONFINITE-REGULAR_NEGATIVE...25 V-COMMON...7 V-DER...1 V-TV-NOPASS...2 V-TV-PASS...1 V-TV...3 V-TV-REFL...1 V-TV-CAUS...1 V-IV...2 V-IV-COOP...1 V-IV-REFL...1 Vinfl-AUX-IMPF...2 Vinfl-AUX-IMPF-NEG...2 Vinfl-AUX...1 Copula...6 PRON-P12SG-CASES...12 PRON-P3SG-CASES...13 PRON-PERS-INFL...1 PRON-PERS...15 PRON-DEM-INFL...13 PRON-DEM-BUL...29 PRON-DEM-MINA...13 PRON-DEM-ALGI...9 PRON-DEM-MINAU...12 PRON-DEM-ANA...14 DemonstrativePronouns...21 PRON-ITG-INFL...1 PRON-ITG-QAYSI-CASES...8 PRON-ITG-QAYSI...2 PRON-ITG-QANSHA...1 PRON-ITG-QANDAY...5 InterrogativePronouns...7 PRON-QNT-POSS...1 PRON-QNT...1 PRON-IND...1 PRON-IND-PL...1 PRNNEG...2 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1-ABBR...4 N1...2 N1-PL...1 N1-VN...1 N1-NAT...1 N1-ADR...1 N1-Ә...3 N-COMPOUND-PX-COMMON...2 N-COMPOUND-PX...2 N-COMPOUND-PX-PL...1 N3...2 N5...1 N6...2 N-INFL-NKI...3 ADV-LANG...2 NP-COMMON...1 NP-TOP-RUS...2 NP-TOP...2 NP-TOP-ASSR...3 NP-TOP-COMPOUND...2 NP-TOP-ABBR...4 NP-ANT-M...2 NP-ANT-F...2 NP-COG-M...2 NP-COG-MF...2 NP-COG-OBIN-FEM...2 NP-COG-OB...5 NP-COG-IN...3 NP-PAT-VICH...2 NP-ORG...3 NP-ORG-LAT...4 NP-ORG-COMPOUND...1 NP-ORG-ABBR...4 NP-AL...1 NP-AL-ABBR...4 NUM-COMMON...2 NUM...3 NUM-TWENTY...3 NUM-ITG...3 NUM-COLL...2 NUM-ROMAN...1 LTR...1 POST...1 POST-NOM...1 POST-NOM-GEN...1 POST-DAT...1 POST-ABL...1 POST-INS...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...3 ADV-WITH-KI-I...2 ADV-ITG...1 CC...1 CC-SOYED...1 CC-PROTIV...1 CC-RAZDEL...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD...1 INTERJ...1 IDEO...1 ABBR...1 PAREN...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...26 Common...27108 Hardcoded...28 Abbreviations...313 Punctuation...22 Proper...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-I Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CC-PROTIV Morphotaxing... CC-RAZDEL Morphotaxing... CC-SOYED Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODEMO Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CLITICS-NO-COP-NO-QST Morphotaxing... CS Morphotaxing... Common Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-NONOM Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... Hardcoded Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD Morphotaxing... MOD-ASS Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-COMPOUND-PX-PL Morphotaxing... N-INFL-NKI Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N1-ADR Morphotaxing... N1-NAT Morphotaxing... N1-PL Morphotaxing... N1-VN Morphotaxing... N1-Ә Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-ABBR Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... NUM-TWENTY Morphotaxing... PAREN Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-DAT Morphotaxing... POST-INS Morphotaxing... POST-NOM Morphotaxing... POST-NOM-GEN Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-ALGI Morphotaxing... PRON-DEM-ANA Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-MINA Morphotaxing... PRON-DEM-MINAU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-PL Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-ITG-QANSHA Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-ITG-QAYSI-CASES Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-P3SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-REFL Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-IFI_EVID Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-NOPASS Morphotaxing... V-TV-PASS Morphotaxing... V-TV-REFL Morphotaxing... VOL-ENDINGS Morphotaxing... Vinfl-AUX Morphotaxing... Vinfl-AUX-IMPF Morphotaxing... Vinfl-AUX-IMPF-NEG | |
Inserting regular expressions... | |
Writing... done | |
cat apertium-kaz.kaz.lexc | grep -v -e 'Err/Orth' > .deps/kaz.EL.lexc | |
hfst-lexc --Werror .deps/kaz.EL.lexc -o .deps/kaz.EL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kaz.EL.lexc, writing to .deps/kaz.EL.lexc.hfst | |
Parsing lexc file .deps/kaz.EL.lexc | |
Root...8 CASE-NONOM...7 CASE-ETC-NONOM...2 FULL-NOMINAL-INFLECTION-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...38 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH...2 CLIT-QST-MA...1 CLIT-QST...1 CLIT-MODEMO...2 CLIT-MODASS...3 CLIT-GHANA-ETC...5 CLIT-COP...2 CLITICS-NO-COP...5 CLITICS-NO-COP-NO-QST...3 CLITICS-INCL-COP...2 CASES-COMMON...5 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...9 A2...6 A3...2 A4...1 A6...3 V-ADJ...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 V-PERS-AOR...8 V-PERS-IFI_EVID...3 VOL-ENDINGS...9 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ETC...1 GER-GENERAL-POSSESSIVE-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 V-FINITE-IRREGULAR_NEGATIVE...9 V-FINITE-REGULAR_NEGATIVE...9 V-NONFINITE-IRREGULAR_NEGATIVE...21 V-NONFINITE-REGULAR_NEGATIVE...25 V-COMMON...7 V-DER...1 V-TV-NOPASS...2 V-TV-PASS...1 V-TV...3 V-TV-REFL...1 V-TV-CAUS...1 V-IV...2 V-IV-COOP...1 V-IV-REFL...1 Vinfl-AUX-IMPF...2 Vinfl-AUX-IMPF-NEG...2 Vinfl-AUX...1 Copula...6 PRON-P12SG-CASES...12 PRON-P3SG-CASES...13 PRON-PERS-INFL...1 PRON-PERS...15 PRON-DEM-INFL...13 PRON-DEM-BUL...29 PRON-DEM-MINA...13 PRON-DEM-ALGI...9 PRON-DEM-MINAU...12 PRON-DEM-ANA...14 DemonstrativePronouns...21 PRON-ITG-INFL...1 PRON-ITG-QAYSI-CASES...8 PRON-ITG-QAYSI...2 PRON-ITG-QANSHA...1 PRON-ITG-QANDAY...5 InterrogativePronouns...7 PRON-QNT-POSS...1 PRON-QNT...1 PRON-IND...1 PRON-IND-PL...1 PRNNEG...2 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1-ABBR...4 N1...2 N1-PL...1 N1-VN...1 N1-NAT...1 N1-ADR...1 N1-Ә...3 N-COMPOUND-PX-COMMON...2 N-COMPOUND-PX...2 N-COMPOUND-PX-PL...1 N3...2 N5...1 N6...2 N-INFL-NKI...3 ADV-LANG...2 NP-COMMON...1 NP-TOP-RUS...2 NP-TOP...2 NP-TOP-ASSR...3 NP-TOP-COMPOUND...2 NP-TOP-ABBR...4 NP-ANT-M...2 NP-ANT-F...2 NP-COG-M...2 NP-COG-MF...2 NP-COG-OBIN-FEM...2 NP-COG-OB...5 NP-COG-IN...3 NP-PAT-VICH...2 NP-ORG...3 NP-ORG-LAT...4 NP-ORG-COMPOUND...1 NP-ORG-ABBR...4 NP-AL...1 NP-AL-ABBR...4 NUM-COMMON...2 NUM...3 NUM-TWENTY...3 NUM-ITG...3 NUM-COLL...2 NUM-ROMAN...1 LTR...1 POST...1 POST-NOM...1 POST-NOM-GEN...1 POST-DAT...1 POST-ABL...1 POST-INS...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...3 ADV-WITH-KI-I...2 ADV-ITG...1 CC...1 CC-SOYED...1 CC-PROTIV...1 CC-RAZDEL...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD...1 INTERJ...1 IDEO...1 ABBR...1 PAREN...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...26 Common...27111 Hardcoded...28 Abbreviations...313 Punctuation...22 Proper...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-I Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CC-PROTIV Morphotaxing... CC-RAZDEL Morphotaxing... CC-SOYED Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODEMO Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CLITICS-NO-COP-NO-QST Morphotaxing... CS Morphotaxing... Common Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-NONOM Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... Hardcoded Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD Morphotaxing... MOD-ASS Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-COMPOUND-PX-PL Morphotaxing... N-INFL-NKI Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N1-ADR Morphotaxing... N1-NAT Morphotaxing... N1-PL Morphotaxing... N1-VN Morphotaxing... N1-Ә Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-ABBR Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... NUM-TWENTY Morphotaxing... PAREN Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-DAT Morphotaxing... POST-INS Morphotaxing... POST-NOM Morphotaxing... POST-NOM-GEN Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-ALGI Morphotaxing... PRON-DEM-ANA Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-MINA Morphotaxing... PRON-DEM-MINAU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-PL Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-ITG-QANSHA Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-ITG-QAYSI-CASES Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-P3SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-REFL Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-IFI_EVID Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-NOPASS Morphotaxing... V-TV-PASS Morphotaxing... V-TV-REFL Morphotaxing... VOL-ENDINGS Morphotaxing... Vinfl-AUX Morphotaxing... Vinfl-AUX-IMPF Morphotaxing... Vinfl-AUX-IMPF-NEG | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-kaz.kaz.twol -o .deps/kaz.twol.hfst | |
Reading input from apertium-kaz.kaz.twol. | |
Writing output to .deps/kaz.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "I Vowel Harmony" and "Deletion of {I} after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. ө:ө һ:һ ұ:ұ {з}: ы: {o}: {э}: ы: {і}: {o}: {э}: ы: {і}: {o}: ь: {☭}: >: {S}: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kaz.EL.lexc.hfst -2 .deps/kaz.twol.hfst | hfst-minimise -o .deps/kaz.LR.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<prn>") in | |
transducer in file .deps/kaz.EL.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz.twol.hfst. | |
hfst-twolc apertium-kaz.err.twol -o .deps/kaz.err.hfst | |
Reading input from apertium-kaz.err.twol. | |
Writing output to .deps/kaz.err.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kaz.LR.lexc.hfst -2 .deps/kaz.err.hfst | hfst-minimise -o .deps/kaz.LR.err.hfst.tmp | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{ь}") in | |
transducer in file .deps/kaz.LR.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz.err.hfst. | |
hfst-project -p output .deps/kaz.LR.hfst | hfst-minimise -o .deps/kaz.LR.corr.hfst.tmp | |
hfst-invert .deps/kaz.LR.err.hfst.tmp | hfst-compose -1 .deps/kaz.LR.corr.hfst.tmp -2 - | hfst-invert -o .deps/kaz.LR.err.hfst.tmp2 | |
hfst-subtract -1 .deps/kaz.LR.err.hfst.tmp -2 .deps/kaz.LR.err.hfst.tmp2 -o .deps/kaz.LR.err.hfst.tmp3 | |
echo "<err_orth>:0" | hfst-strings2fst -e 0 -S | hfst-concatenate -1 .deps/kaz.LR.err.hfst.tmp3 -2 - -o .deps/kaz.LR.err.hfst | |
hfst-union -1 .deps/kaz.LR.hfst -2 .deps/kaz.LR.err.hfst | hfst-invert | hfst-fst2fst -w -o kaz.automorf.hfst | |
hfst-fst2txt kaz.automorf.hfst | gzip -9 -c -n > kaz.automorf.att.gz | |
zcat < kaz.automorf.att.gz > .deps/kaz.automorf.att | |
lt-comp lr .deps/kaz.automorf.att kaz.automorf.bin | |
main@standard 380438 893117 | |
final@inconditional 2645 7326 | |
cat apertium-kaz.kaz.lexc | grep -v -e 'Dir/LR' -e 'Err/Orth' > .deps/kaz.RL.lexc | |
hfst-lexc --Werror .deps/kaz.RL.lexc -o .deps/kaz.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kaz.RL.lexc, writing to .deps/kaz.RL.lexc.hfst | |
Parsing lexc file .deps/kaz.RL.lexc | |
Root...8 CASE-NONOM...6 CASE-ETC-NONOM...2 FULL-NOMINAL-INFLECTION-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...18 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH...2 CLIT-QST-MA...1 CLIT-QST...1 CLIT-MODEMO...2 CLIT-MODASS...3 CLIT-GHANA-ETC...5 CLIT-COP...2 CLITICS-NO-COP...5 CLITICS-NO-COP-NO-QST...3 CLITICS-INCL-COP...2 CASES-COMMON...4 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A2...4 A3...2 A4...1 A6...3 V-ADJ...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 V-PERS-AOR...5 V-PERS-IFI_EVID...3 VOL-ENDINGS...8 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ETC...1 GER-GENERAL-POSSESSIVE-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 V-FINITE-IRREGULAR_NEGATIVE...8 V-FINITE-REGULAR_NEGATIVE...6 V-NONFINITE-IRREGULAR_NEGATIVE...17 V-NONFINITE-REGULAR_NEGATIVE...24 V-COMMON...6 V-DER...1 V-TV-NOPASS...2 V-TV-PASS...1 V-TV...3 V-TV-REFL...1 V-TV-CAUS...1 V-IV...2 V-IV-COOP...1 V-IV-REFL...1 Vinfl-AUX-IMPF...2 Vinfl-AUX-IMPF-NEG...2 Vinfl-AUX...1 Copula...6 PRON-P12SG-CASES...11 PRON-P3SG-CASES...11 PRON-PERS-INFL...1 PRON-PERS...13 PRON-DEM-INFL...12 PRON-DEM-BUL...18 PRON-DEM-MINA...12 PRON-DEM-ALGI...9 PRON-DEM-MINAU...10 PRON-DEM-ANA...12 DemonstrativePronouns...18 PRON-ITG-INFL...1 PRON-ITG-QAYSI-CASES...7 PRON-ITG-QAYSI...2 PRON-ITG-QANSHA...1 PRON-ITG-QANDAY...5 InterrogativePronouns...7 PRON-QNT-POSS...1 PRON-QNT...1 PRON-IND...1 PRON-IND-PL...1 PRNNEG...2 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1-ABBR...3 N1...2 N1-PL...1 N1-VN...1 N1-NAT...1 N1-ADR...1 N1-Ә...1 N-COMPOUND-PX-COMMON...2 N-COMPOUND-PX...2 N-COMPOUND-PX-PL...1 N3...2 N5...1 N6...1 N-INFL-NKI...2 ADV-LANG...2 NP-COMMON...1 NP-TOP-RUS...2 NP-TOP...2 NP-TOP-ASSR...2 NP-TOP-COMPOUND...2 NP-TOP-ABBR...3 NP-ANT-M...2 NP-ANT-F...2 NP-COG-M...2 NP-COG-MF...2 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-COG-IN...3 NP-PAT-VICH...2 NP-ORG...3 NP-ORG-LAT...3 NP-ORG-COMPOUND...1 NP-ORG-ABBR...3 NP-AL...1 NP-AL-ABBR...3 NUM-COMMON...2 NUM...3 NUM-TWENTY...3 NUM-ITG...3 NUM-COLL...2 NUM-ROMAN...1 LTR...1 POST...1 POST-NOM...1 POST-NOM-GEN...1 POST-DAT...1 POST-ABL...1 POST-INS...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...3 ADV-WITH-KI-I...2 ADV-ITG...1 CC...1 CC-SOYED...1 CC-PROTIV...1 CC-RAZDEL...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD...1 INTERJ...1 IDEO...1 ABBR...1 PAREN...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...26 Common...27010 Hardcoded...27 Abbreviations...305 Punctuation...22 Proper...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-I Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CC-PROTIV Morphotaxing... CC-RAZDEL Morphotaxing... CC-SOYED Morphotaxing... CLIT-COP Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODEMO Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CLITICS-NO-COP-NO-QST Morphotaxing... CS Morphotaxing... Common Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-NONOM Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... Hardcoded Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD Morphotaxing... MOD-ASS Morphotaxing... N-COMPOUND-PX Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-COMPOUND-PX-PL Morphotaxing... N-INFL-NKI Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N1-ADR Morphotaxing... N1-NAT Morphotaxing... N1-PL Morphotaxing... N1-VN Morphotaxing... N1-Ә Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-ABBR Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... NUM-TWENTY Morphotaxing... PAREN Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-DAT Morphotaxing... POST-INS Morphotaxing... POST-NOM Morphotaxing... POST-NOM-GEN Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-ALGI Morphotaxing... PRON-DEM-ANA Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-MINA Morphotaxing... PRON-DEM-MINAU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-PL Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-ITG-QANSHA Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-ITG-QAYSI-CASES Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-P3SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-REFL Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-IFI_EVID Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-NOPASS Morphotaxing... V-TV-PASS Morphotaxing... V-TV-REFL Morphotaxing... VOL-ENDINGS Morphotaxing... Vinfl-AUX Morphotaxing... Vinfl-AUX-IMPF Morphotaxing... Vinfl-AUX-IMPF-NEG | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/kaz.RL.lexc.hfst -2 .deps/kaz.twol.hfst -o .deps/kaz.RL.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<prn>") in | |
transducer in file .deps/kaz.RL.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz.twol.hfst. | |
hfst-fst2fst -w .deps/kaz.RL.hfst -o kaz.autogen.hfst | |
hfst-fst2txt kaz.autogen.hfst | gzip -9 -c -n > kaz.autogen.att.gz | |
zcat < kaz.autogen.att.gz > .deps/kaz.autogen.att | |
lt-comp lr .deps/kaz.autogen.att kaz.autogen.bin | |
main@standard 92252 168910 | |
final@inconditional 1403 2674 | |
lt-comp lr apertium-kaz.post-kaz.dix kaz.autopgen.bin | |
main@standard 10 149 | |
/usr/bin/cg-comp apertium-kaz.kaz.rlx kaz.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tat | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-tat.pc | |
test -z "tat.automorf.hfst tat.automorf.bin tat.automorf.att.gz tat.autogen.hfst tat.autogen.bin tat.autogen.att.gz tat.autopgen.bin tat.rlx.bin" || rm -f tat.automorf.hfst tat.automorf.bin tat.automorf.att.gz tat.autogen.hfst tat.autogen.bin tat.autogen.att.gz tat.autopgen.bin tat.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-tat.tat.lexc | grep -v -e 'Dir/RL' > .deps/tat.LR.lexc | |
hfst-lexc --Werror .deps/tat.LR.lexc -o .deps/tat.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tat.LR.lexc, writing to .deps/tat.LR.lexc.hfst | |
Parsing lexc file .deps/tat.LR.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...53 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-MODASS...2 CLIT-MODIND...2 CLIT-GHANA...1 CLIT-DA-CNJ...1 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...4 CLITICS-INCL-COP...2 CLITICS-AFTER-IMP-SG...3 CLITICS-AFTER-IMP-PL...3 CASES-COMMON...3 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...2 LI-POSTPOSITION...2 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A1-RUS...1 A2...4 A2-RUS...1 A3...2 A3-RUS...1 A4...1 A4-RUS...1 V-ADJ...2 V-PERS-S1-NO1PERSON...6 V-PERS-S1...3 V-PERS-S1-COP...8 V-PERS-S2...8 V-PERS-PRESENT...4 V-PERS-VOLITIONAL...8 GER-CASE-NO_COPULA...4 GER-ATTR-SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSS-REAL-COMMON...6 GER_FUT3-POSS-REAL...2 GER-POSS-REAL...2 GER-INFL...5 V-FUT-IR...16 V-FUT-AR...16 V-FINITE-REGULAR_NEGATIVE...4 V-NONFINITE-IRREGULAR_NEGATIVE...21 V-NONFINITE-REGULAR_NEGATIVE...20 V-COMMON...5 V-COMMON-PASSIVE...2 V-DER...2 V-IV-IR...3 V-TV-NOPASS-IR...3 V-TV-PASS-IR...3 V-TV-IR...4 V-IV-AR...4 V-TV-AR...5 VAUX-IR...2 VAUX-AR...2 COP-I...6 PRON-P12SG-CASES...7 PRON-PERS-INFL...1 PRON-PERS...33 PRON-DEM-INFL...12 PRON-DEM-BU...19 PRON-DEM-ŠUL...22 PRON-DEM-UL...16 PRON-DEM-TEGE...13 DemonstrativePronouns...8 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG-QAYSI...7 PRON-ITG-NINDI...5 InterrogativePronouns...8 PRON-QNT-POSS...1 PRON-QNT...1 PRNNEG...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1...2 N1-RUS...1 N-COMPOUND-PX...3 N3...4 ADV-LANG...2 NP-COMMON...3 NP-TOP...2 NP-TOP-RUS...1 NP-ANT-M...2 NP-ANT-M-RUS...1 NP-ANT-F...2 NP-ANT-F-RUS...1 NP-COG-M...2 NP-COG-MF...2 NP-COG-MF-RUS...1 NP-COG-OBIN-FEM...2 NP-COG-OB...5 NP-PAT-VICH...2 NP-ORG...1 NP-ORG-RUS...1 NP-AL...1 NP-AL-RUS...1 NUM...5 NUM-ITG...5 NUM-COLL...2 NUM-ITG-COLL...2 NUM-ROMAN...1 POST...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...2 ADV-WITH-KI-BIRE...2 ADV-ITG...1 CC...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD-IND...1 EMPH...1 INTERJ...1 IDEO...1 ABBR...2 LTR...1 ModalParticles...20 Copula...1 Conjunctions...66 Postpositions...57 Postadverbs...10 Pronouns...36 Determiners...40 Numerals...76 Nouns...27193 ProperNouns...25569 Adjectives...2784 Adverbs...367 Verbs...2057 Interjections...130 Ideophones...621 Abbreviations...472 Punctuation...53 PUNCT...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-RUS Morphotaxing... A2 Morphotaxing... A2-RUS Morphotaxing... A3 Morphotaxing... A3-RUS Morphotaxing... A4 Morphotaxing... A4-RUS Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-BIRE Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA-CNJ Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-EMPH-SANA Morphotaxing... CLIT-GHANA Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODIND Morphotaxing... CLIT-QST Morphotaxing... CLITICS-AFTER-IMP-PL Morphotaxing... CLITICS-AFTER-IMP-SG Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COP-I Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EMPH Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR-SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSS-REAL Morphotaxing... GER-POSS-REAL-COMMON Morphotaxing... GER_FUT3-POSS-REAL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... Ideophones Morphotaxing... Interjections Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD-ASS Morphotaxing... MOD-IND Morphotaxing... ModalParticles Morphotaxing... N-COMPOUND-PX Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N1-RUS Morphotaxing... N3 Morphotaxing... NP-AL Morphotaxing... NP-AL-RUS Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-F-RUS Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-M-RUS Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-MF-RUS Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-RUS Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ITG-COLL Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-TEGE Morphotaxing... PRON-DEM-UL Morphotaxing... PRON-DEM-ŠUL Morphotaxing... PRON-IND Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NINDI Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PUNCT Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-COMMON-PASSIVE Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-IR Morphotaxing... V-IV-AR Morphotaxing... V-IV-IR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-PRESENT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-PERS-VOLITIONAL Morphotaxing... V-TV-AR Morphotaxing... V-TV-IR Morphotaxing... V-TV-NOPASS-IR Morphotaxing... V-TV-PASS-IR Morphotaxing... VAUX-AR Morphotaxing... VAUX-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
cat apertium-tat.tat.lexc | grep -v -e 'Err/Orth' > .deps/tat.EL.lexc | |
hfst-lexc --Werror .deps/tat.EL.lexc -o .deps/tat.EL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tat.EL.lexc, writing to .deps/tat.EL.lexc.hfst | |
Parsing lexc file .deps/tat.EL.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...53 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-MODASS...2 CLIT-MODIND...2 CLIT-GHANA...1 CLIT-DA-CNJ...1 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...4 CLITICS-INCL-COP...2 CLITICS-AFTER-IMP-SG...3 CLITICS-AFTER-IMP-PL...3 CASES-COMMON...3 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...2 LI-POSTPOSITION...2 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A1-RUS...1 A2...4 A2-RUS...1 A3...2 A3-RUS...1 A4...1 A4-RUS...1 V-ADJ...2 V-PERS-S1-NO1PERSON...6 V-PERS-S1...3 V-PERS-S1-COP...8 V-PERS-S2...8 V-PERS-PRESENT...4 V-PERS-VOLITIONAL...8 GER-CASE-NO_COPULA...4 GER-ATTR-SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSS-REAL-COMMON...6 GER_FUT3-POSS-REAL...2 GER-POSS-REAL...2 GER-INFL...5 V-FUT-IR...16 V-FUT-AR...16 V-FINITE-REGULAR_NEGATIVE...4 V-NONFINITE-IRREGULAR_NEGATIVE...21 V-NONFINITE-REGULAR_NEGATIVE...20 V-COMMON...5 V-COMMON-PASSIVE...2 V-DER...2 V-IV-IR...6 V-TV-NOPASS-IR...3 V-TV-PASS-IR...3 V-TV-IR...4 V-IV-AR...7 V-TV-AR...5 VAUX-IR...2 VAUX-AR...2 COP-I...6 PRON-P12SG-CASES...7 PRON-PERS-INFL...1 PRON-PERS...33 PRON-DEM-INFL...12 PRON-DEM-BU...19 PRON-DEM-ŠUL...22 PRON-DEM-UL...15 PRON-DEM-TEGE...13 DemonstrativePronouns...8 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG-QAYSI...7 PRON-ITG-NINDI...5 InterrogativePronouns...8 PRON-QNT-POSS...1 PRON-QNT...1 PRNNEG...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1...2 N1-RUS...1 N-COMPOUND-PX...3 N3...4 ADV-LANG...2 NP-COMMON...3 NP-TOP...2 NP-TOP-RUS...1 NP-ANT-M...2 NP-ANT-M-RUS...1 NP-ANT-F...2 NP-ANT-F-RUS...1 NP-COG-M...2 NP-COG-MF...2 NP-COG-MF-RUS...1 NP-COG-OBIN-FEM...2 NP-COG-OB...5 NP-PAT-VICH...2 NP-ORG...1 NP-ORG-RUS...1 NP-AL...1 NP-AL-RUS...1 NUM...5 NUM-ITG...5 NUM-COLL...2 NUM-ITG-COLL...2 NUM-ROMAN...1 POST...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...2 ADV-WITH-KI-BIRE...2 ADV-ITG...1 CC...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD-IND...1 EMPH...1 INTERJ...1 IDEO...1 ABBR...2 LTR...1 ModalParticles...24 Copula...1 Conjunctions...67 Postpositions...56 Postadverbs...13 Pronouns...36 Determiners...40 Numerals...76 Nouns...27184 ProperNouns...25568 Adjectives...2778 Adverbs...365 Verbs...2054 Interjections...130 Ideophones...621 Abbreviations...472 Punctuation...53 PUNCT...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-RUS Morphotaxing... A2 Morphotaxing... A2-RUS Morphotaxing... A3 Morphotaxing... A3-RUS Morphotaxing... A4 Morphotaxing... A4-RUS Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-BIRE Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA-CNJ Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-EMPH-SANA Morphotaxing... CLIT-GHANA Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODIND Morphotaxing... CLIT-QST Morphotaxing... CLITICS-AFTER-IMP-PL Morphotaxing... CLITICS-AFTER-IMP-SG Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COP-I Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EMPH Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR-SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSS-REAL Morphotaxing... GER-POSS-REAL-COMMON Morphotaxing... GER_FUT3-POSS-REAL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... Ideophones Morphotaxing... Interjections Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD-ASS Morphotaxing... MOD-IND Morphotaxing... ModalParticles Morphotaxing... N-COMPOUND-PX Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N1-RUS Morphotaxing... N3 Morphotaxing... NP-AL Morphotaxing... NP-AL-RUS Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-F-RUS Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-M-RUS Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-MF-RUS Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-RUS Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ITG-COLL Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-TEGE Morphotaxing... PRON-DEM-UL Morphotaxing... PRON-DEM-ŠUL Morphotaxing... PRON-IND Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NINDI Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PUNCT Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-COMMON-PASSIVE Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-IR Morphotaxing... V-IV-AR Morphotaxing... V-IV-IR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-PRESENT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-PERS-VOLITIONAL Morphotaxing... V-TV-AR Morphotaxing... V-TV-IR Morphotaxing... V-TV-NOPASS-IR Morphotaxing... V-TV-PASS-IR Morphotaxing... VAUX-AR Morphotaxing... VAUX-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-tat.tat.twol -o .deps/tat.twol.hfst | |
Reading input from apertium-tat.tat.twol. | |
Writing output to .deps/tat.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tat.EL.lexc.hfst -2 .deps/tat.twol.hfst | hfst-minimise -o .deps/tat.LR.hfst | |
hfst-twolc apertium-tat.err.twol -o .deps/tat.err.hfst | |
Reading input from apertium-tat.err.twol. | |
Writing output to .deps/tat.err.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tat.LR.lexc.hfst -2 .deps/tat.err.hfst | hfst-minimise -o .deps/tat.LR.err.hfst.tmp | |
hfst-project -p output .deps/tat.LR.hfst | hfst-minimise -o .deps/tat.LR.corr.hfst.tmp | |
hfst-invert .deps/tat.LR.err.hfst.tmp | hfst-compose -1 .deps/tat.LR.corr.hfst.tmp -2 - | hfst-invert -o .deps/tat.LR.err.hfst.tmp2 | |
hfst-subtract -1 .deps/tat.LR.err.hfst.tmp -2 .deps/tat.LR.err.hfst.tmp2 -o .deps/tat.LR.err.hfst.tmp3 | |
echo "<err_orth>:0" | hfst-strings2fst -e 0 -S | hfst-concatenate -1 .deps/tat.LR.err.hfst.tmp3 -2 - -o .deps/tat.LR.err.hfst | |
hfst-union -1 .deps/tat.LR.hfst -2 .deps/tat.LR.err.hfst | hfst-invert | hfst-fst2fst -w -o tat.automorf.hfst | |
hfst-fst2txt tat.automorf.hfst | gzip -9 -c -n > tat.automorf.att.gz | |
zcat < tat.automorf.att.gz > .deps/tat.automorf.att | |
lt-comp lr .deps/tat.automorf.att tat.automorf.bin | |
main@standard 242055 497437 | |
final@inconditional 805 1769 | |
cat apertium-tat.tat.lexc | grep -v -e 'Dir/LR' -e 'Err/Orth' > .deps/tat.RL.lexc | |
hfst-lexc --Werror .deps/tat.RL.lexc -o .deps/tat.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tat.RL.lexc, writing to .deps/tat.RL.lexc.hfst | |
Parsing lexc file .deps/tat.RL.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-SANA...2 CLIT-EMPH-CHI...2 CLIT-EMPH...2 CLIT-QST...3 CLIT-MODASS...2 CLIT-MODIND...2 CLIT-GHANA...1 CLIT-DA-CNJ...1 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...4 CLITICS-INCL-COP...2 CLITICS-AFTER-IMP-SG...3 CLITICS-AFTER-IMP-PL...3 CASES-COMMON...3 CASES...4 ATTR-SUBST...6 GENERAL-POSSESSIVE-ETC...8 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...2 LI-POSTPOSITION...2 PLURAL...3 FULL-NOMINAL-INFLECTION...5 A1...6 A1-RUS...1 A2...4 A2-RUS...1 A3...2 A3-RUS...1 A4...1 A4-RUS...1 V-ADJ...2 V-PERS-S1-NO1PERSON...6 V-PERS-S1...3 V-PERS-S1-COP...8 V-PERS-S2...8 V-PERS-PRESENT...3 V-PERS-VOLITIONAL...8 GER-CASE-NO_COPULA...4 GER-ATTR-SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENPOSS-ETC...3 GER-CASE-ETC...2 GER-POSS-REAL-COMMON...6 GER_FUT3-POSS-REAL...2 GER-POSS-REAL...2 GER-INFL...5 V-FUT-IR...14 V-FUT-AR...14 V-FINITE-REGULAR_NEGATIVE...4 V-NONFINITE-IRREGULAR_NEGATIVE...14 V-NONFINITE-REGULAR_NEGATIVE...20 V-COMMON...5 V-COMMON-PASSIVE...2 V-DER...2 V-IV-IR...6 V-TV-NOPASS-IR...3 V-TV-PASS-IR...3 V-TV-IR...4 V-IV-AR...6 V-TV-AR...4 VAUX-IR...2 VAUX-AR...2 COP-I...6 PRON-P12SG-CASES...7 PRON-PERS-INFL...1 PRON-PERS...26 PRON-DEM-INFL...12 PRON-DEM-BU...17 PRON-DEM-ŠUL...18 PRON-DEM-UL...14 PRON-DEM-TEGE...13 DemonstrativePronouns...8 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG-QAYSI...7 PRON-ITG-NINDI...5 InterrogativePronouns...8 PRON-QNT-POSS...1 PRON-QNT...1 PRNNEG...1 PRON-RECIP...1 PRON-REF-ADV...2 PRON-REF...8 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 N1...2 N1-RUS...1 N-COMPOUND-PX...3 N3...4 ADV-LANG...2 NP-COMMON...3 NP-TOP...2 NP-TOP-RUS...1 NP-ANT-M...2 NP-ANT-M-RUS...1 NP-ANT-F...2 NP-ANT-F-RUS...1 NP-COG-M...2 NP-COG-MF...2 NP-COG-MF-RUS...1 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-PAT-VICH...2 NP-ORG...1 NP-ORG-RUS...1 NP-AL...1 NP-AL-RUS...1 NUM...5 NUM-ITG...5 NUM-COLL...2 NUM-ITG-COLL...2 NUM-ROMAN...1 POST...1 POSTADV...1 KI...2 ADV...1 ADV-WITH-KI...2 ADV-WITH-KI-BIRE...2 ADV-ITG...1 CC...1 CS...1 CA...1 QST...1 MOD-ASS...1 MOD-IND...1 EMPH...1 INTERJ...1 IDEO...1 ABBR...2 LTR...1 ModalParticles...14 Copula...1 Conjunctions...59 Postpositions...55 Postadverbs...3 Pronouns...36 Determiners...40 Numerals...69 Nouns...27006 ProperNouns...25548 Adjectives...2775 Adverbs...360 Verbs...2047 Interjections...130 Ideophones...621 Abbreviations...464 Punctuation...53 PUNCT...1 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-RUS Morphotaxing... A2 Morphotaxing... A2-RUS Morphotaxing... A3 Morphotaxing... A3-RUS Morphotaxing... A4 Morphotaxing... A4-RUS Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-BIRE Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA-CNJ Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-EMPH-SANA Morphotaxing... CLIT-GHANA Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-MODIND Morphotaxing... CLIT-QST Morphotaxing... CLITICS-AFTER-IMP-PL Morphotaxing... CLITICS-AFTER-IMP-SG Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... COP-I Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DemonstrativePronouns Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EMPH Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR-SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSS-REAL Morphotaxing... GER-POSS-REAL-COMMON Morphotaxing... GER_FUT3-POSS-REAL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IDEO Morphotaxing... INTERJ Morphotaxing... Ideophones Morphotaxing... Interjections Morphotaxing... InterrogativePronouns Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... LTR Morphotaxing... MOD-ASS Morphotaxing... MOD-IND Morphotaxing... ModalParticles Morphotaxing... N-COMPOUND-PX Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N1-RUS Morphotaxing... N3 Morphotaxing... NP-AL Morphotaxing... NP-AL-RUS Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-F-RUS Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-M-RUS Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-MF-RUS Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-RUS Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ITG-COLL Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRNNEG Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-INFL Morphotaxing... PRON-DEM-TEGE Morphotaxing... PRON-DEM-UL Morphotaxing... PRON-DEM-ŠUL Morphotaxing... PRON-IND Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NINDI Morphotaxing... PRON-ITG-QAYSI Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-INFL Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PUNCT Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-COMMON Morphotaxing... V-COMMON-PASSIVE Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-IR Morphotaxing... V-IV-AR Morphotaxing... V-IV-IR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-PRESENT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-PERS-VOLITIONAL Morphotaxing... V-TV-AR Morphotaxing... V-TV-IR Morphotaxing... V-TV-NOPASS-IR Morphotaxing... V-TV-PASS-IR Morphotaxing... VAUX-AR Morphotaxing... VAUX-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/tat.RL.lexc.hfst -2 .deps/tat.twol.hfst -o .deps/tat.RL.hfst | |
hfst-fst2fst -w .deps/tat.RL.hfst -o tat.autogen.hfst | |
hfst-fst2txt tat.autogen.hfst | gzip -9 -c -n > tat.autogen.att.gz | |
zcat < tat.autogen.att.gz > .deps/tat.autogen.att | |
lt-comp lr .deps/tat.autogen.att tat.autogen.bin | |
main@standard 139913 256437 | |
final@inconditional 1005 1904 | |
lt-comp lr apertium-tat.post-tat.dix tat.autopgen.bin | |
main@standard 9 114 | |
/usr/bin/cg-comp apertium-tat.tat.rlx tat.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-gag | |
Bereits auf 'master' | |
M INSTALL | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-gag.pc | |
test -z "gag.automorf.hfst gag.automorf.bin gag.automorf.att.gz gag.autogen.hfst gag.autogen.bin gag.autogen.att.gz gag.autopgen.bin gag.rlx.bin" || rm -f gag.automorf.hfst gag.automorf.bin gag.automorf.att.gz gag.autogen.hfst gag.autogen.bin gag.autogen.att.gz gag.autopgen.bin gag.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-gag.gag.lexc | grep -v -e 'Dir/RL' > .deps/gag.LR.lexc | |
hfst-lexc --Werror .deps/gag.LR.lexc -o .deps/gag.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/gag.LR.lexc, writing to .deps/gag.LR.lexc.hfst | |
Parsing lexc file .deps/gag.LR.lexc | |
Root...16 V-PERS-S1...8 V-PERS-S2...6 V-PERS-FUT...6 V-PERS-AOR...8 V-PERS-POSS...6 V-PERS-POSS-FUT...6 V-IMPER...7 GER-N-INFL-COMMON...2 GER-SUBST...2 V-GER...4 V-GPR-SUBST...2 V-GPR...6 V-GNA...12 V-NONFINITE...3 V-FINITE-IRREG-NEG...1 V-FINITE-REGULAR_NEG...4 V-COMMON...17 V-ABIL...3 V-DER...4 V-IV...1 V-TV...1 PLURAL...2 ADV3...1 ADV4...2 ADV-ITG...1 PRON-ADV...1 CS...1 CC...1 CA...1 COPULA-GENERAL...2 COPULA-PERS-AOR...6 COPULA-PERS-PAST...6 COPULA-PERS-NFH...6 CLITIC-COPULA...5 CASES...11 POSSESSIVES...6 LI-POSTPOSITION...1 FULL-NOMINAL-INFLECTION...3 SUBST-ATTR...3 PRON-PERS-BÄN...18 PRON-PERS-SÄN...18 PRON-PERS-O...11 PRON-PERS-BIZ...12 PRON-PERS-SIZ...10 PRON-PERS-ONNAR...9 SUBST...4 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N3...1 N5...2 NP-TOP...2 NP-ORG...2 NP-TOP-RUS...2 NP-AL...2 NUM-DIST...1 NUM...4 NUM-ROMAN...1 PRON-REF...2 DET-QNT...1 DET-IND...1 DET-REF...1 DET-DEM...1 A1...2 A2...3 NP-ANT-M...1 NP-ANT-F...1 NP-COG-MF...1 NP-PAT-VICH...3 NP-COG-OV...2 NP-COG-SKIJ...3 NP-COG-OGLU...2 PRON-DEM-O...7 PRON-DEM-SU...5 PRON-DEM-BU...8 PRON-IND...1 PRON-INTERR...1 PRON-QNT...1 ABBR...1 ABBR-INIT...39 POST...1 INTERJ...1 BARB...1 Miscellaneous...12 Conjunctions...22 Postpositions...17 Pronouns...31 Determiners...22 Numerals...54 Nouns...1908 ProperNouns...2195 Cognomena...1254 Adjectives...347 Adverbs...101 Verbs...408 Abbreviations...122 Interjections...1 Punctuation...21 DIGITLEX...7 Barbarisms...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ADV-ITG Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... Barbarisms Morphotaxing... CA Morphotaxing... CASES Morphotaxing... CC Morphotaxing... CLITIC-COPULA Morphotaxing... COPULA-GENERAL Morphotaxing... COPULA-PERS-AOR Morphotaxing... COPULA-PERS-NFH Morphotaxing... COPULA-PERS-PAST Morphotaxing... CS Morphotaxing... Cognomena Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LI-POSTPOSITION Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OGLU Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-ORG Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NUM Morphotaxing... NUM-DIST Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BÄN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-ONNAR Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SÄN Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... SUBST-ATTR Morphotaxing... V-ABIL Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREG-NEG Morphotaxing... V-FINITE-REGULAR_NEG Morphotaxing... V-GER Morphotaxing... V-GNA Morphotaxing... V-GPR Morphotaxing... V-GPR-SUBST Morphotaxing... V-IMPER Morphotaxing... V-IV Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-FUT Morphotaxing... V-PERS-POSS Morphotaxing... V-PERS-POSS-FUT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
cat apertium-gag.gag.lexc | grep -v -e 'Err/Orth' > .deps/gag.EL.lexc | |
hfst-lexc --Werror .deps/gag.EL.lexc -o .deps/gag.EL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/gag.EL.lexc, writing to .deps/gag.EL.lexc.hfst | |
Parsing lexc file .deps/gag.EL.lexc | |
Root...16 V-PERS-S1...8 V-PERS-S2...6 V-PERS-FUT...6 V-PERS-AOR...8 V-PERS-POSS...6 V-PERS-POSS-FUT...6 V-IMPER...7 GER-N-INFL-COMMON...2 GER-SUBST...2 V-GER...4 V-GPR-SUBST...2 V-GPR...6 V-GNA...11 V-NONFINITE...3 V-FINITE-IRREG-NEG...1 V-FINITE-REGULAR_NEG...4 V-COMMON...14 V-ABIL...3 V-DER...4 V-IV...1 V-TV...1 PLURAL...2 ADV3...1 ADV4...2 ADV-ITG...1 PRON-ADV...1 CS...1 CC...1 CA...1 COPULA-GENERAL...2 COPULA-PERS-AOR...6 COPULA-PERS-PAST...6 COPULA-PERS-NFH...6 CLITIC-COPULA...5 CASES...11 POSSESSIVES...6 LI-POSTPOSITION...1 FULL-NOMINAL-INFLECTION...3 SUBST-ATTR...3 PRON-PERS-BÄN...10 PRON-PERS-SÄN...10 PRON-PERS-O...10 PRON-PERS-BIZ...11 PRON-PERS-SIZ...9 PRON-PERS-ONNAR...9 SUBST...4 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N3...1 N5...2 NP-TOP...1 NP-ORG...2 NP-TOP-RUS...1 NP-AL...1 NUM-DIST...1 NUM...4 NUM-ROMAN...1 PRON-REF...2 DET-QNT...1 DET-IND...1 DET-REF...1 DET-DEM...1 A1...2 A2...3 NP-ANT-M...1 NP-ANT-F...1 NP-COG-MF...1 NP-PAT-VICH...3 NP-COG-OV...2 NP-COG-SKIJ...3 NP-COG-OGLU...2 PRON-DEM-O...7 PRON-DEM-SU...5 PRON-DEM-BU...8 PRON-IND...1 PRON-INTERR...1 PRON-QNT...1 ABBR...1 ABBR-INIT...39 POST...1 INTERJ...1 BARB...1 Miscellaneous...12 Conjunctions...22 Postpositions...17 Pronouns...28 Determiners...22 Numerals...54 Nouns...1845 ProperNouns...2171 Cognomena...1253 Adjectives...339 Adverbs...99 Verbs...395 Abbreviations...122 Interjections...1 Punctuation...21 DIGITLEX...6 Barbarisms...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ADV-ITG Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... Barbarisms Morphotaxing... CA Morphotaxing... CASES Morphotaxing... CC Morphotaxing... CLITIC-COPULA Morphotaxing... COPULA-GENERAL Morphotaxing... COPULA-PERS-AOR Morphotaxing... COPULA-PERS-NFH Morphotaxing... COPULA-PERS-PAST Morphotaxing... CS Morphotaxing... Cognomena Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LI-POSTPOSITION Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OGLU Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-ORG Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NUM Morphotaxing... NUM-DIST Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BÄN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-ONNAR Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SÄN Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... SUBST-ATTR Morphotaxing... V-ABIL Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREG-NEG Morphotaxing... V-FINITE-REGULAR_NEG Morphotaxing... V-GER Morphotaxing... V-GNA Morphotaxing... V-GPR Morphotaxing... V-GPR-SUBST Morphotaxing... V-IMPER Morphotaxing... V-IV Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-FUT Morphotaxing... V-PERS-POSS Morphotaxing... V-PERS-POSS-FUT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-gag.gag.twol -o .deps/gag.twol.hfst | |
Reading input from apertium-gag.gag.twol. | |
Writing output to .deps/gag.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/gag.EL.lexc.hfst -2 .deps/gag.twol.hfst | hfst-minimise -o .deps/gag.LR.hfst | |
hfst-twolc apertium-gag.err.twol -o .deps/gag.err.hfst | |
Reading input from apertium-gag.err.twol. | |
Writing output to .deps/gag.err.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/gag.LR.lexc.hfst -2 .deps/gag.err.hfst | hfst-minimise -o .deps/gag.LR.err.hfst.tmp | |
hfst-project -p output .deps/gag.LR.hfst | hfst-minimise -o .deps/gag.LR.corr.hfst.tmp | |
hfst-invert .deps/gag.LR.err.hfst.tmp | hfst-compose -1 .deps/gag.LR.corr.hfst.tmp -2 - | hfst-invert -o .deps/gag.LR.err.hfst.tmp2 | |
hfst-subtract -1 .deps/gag.LR.err.hfst.tmp -2 .deps/gag.LR.err.hfst.tmp2 -o .deps/gag.LR.err.hfst.tmp3 | |
echo "<err_orth>:0" | hfst-strings2fst -e 0 -S | hfst-concatenate -1 .deps/gag.LR.err.hfst.tmp3 -2 - -o .deps/gag.LR.err.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-union -1 .deps/gag.LR.hfst -2 .deps/gag.LR.err.hfst | hfst-compose-intersect -1 - -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -w -o gag.automorf.hfst | |
hfst-fst2txt gag.automorf.hfst | gzip -9 -c -n > gag.automorf.att.gz | |
zcat < gag.automorf.att.gz > .deps/gag.automorf.att | |
lt-comp lr .deps/gag.automorf.att gag.automorf.bin | |
main@standard 24637 79991 | |
final@inconditional 18 39 | |
cat apertium-gag.gag.lexc | grep -v -e 'Dir/LR' -e 'Err/Orth' > .deps/gag.RL.lexc | |
hfst-lexc --Werror .deps/gag.RL.lexc -o .deps/gag.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/gag.RL.lexc, writing to .deps/gag.RL.lexc.hfst | |
Parsing lexc file .deps/gag.RL.lexc | |
Root...16 V-PERS-S1...8 V-PERS-S2...6 V-PERS-FUT...6 V-PERS-AOR...8 V-PERS-POSS...6 V-PERS-POSS-FUT...6 V-IMPER...6 GER-N-INFL-COMMON...2 GER-SUBST...2 V-GER...4 V-GPR-SUBST...2 V-GPR...6 V-GNA...11 V-NONFINITE...3 V-FINITE-IRREG-NEG...1 V-FINITE-REGULAR_NEG...4 V-COMMON...14 V-ABIL...3 V-DER...4 V-IV...1 V-TV...1 PLURAL...2 ADV3...1 ADV4...2 ADV-ITG...1 PRON-ADV...1 CS...1 CC...1 CA...1 COPULA-GENERAL...2 COPULA-PERS-AOR...6 COPULA-PERS-PAST...6 COPULA-PERS-NFH...6 CLITIC-COPULA...5 CASES...10 POSSESSIVES...6 LI-POSTPOSITION...1 FULL-NOMINAL-INFLECTION...3 SUBST-ATTR...3 PRON-PERS-BÄN...9 PRON-PERS-SÄN...9 PRON-PERS-O...9 PRON-PERS-BIZ...9 PRON-PERS-SIZ...9 PRON-PERS-ONNAR...9 SUBST...4 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N3...1 N5...2 NP-TOP...1 NP-ORG...2 NP-TOP-RUS...1 NP-AL...1 NUM-DIST...1 NUM...4 NUM-ROMAN...1 PRON-REF...2 DET-QNT...1 DET-IND...1 DET-REF...1 DET-DEM...1 A1...2 A2...3 NP-ANT-M...1 NP-ANT-F...1 NP-COG-MF...1 NP-PAT-VICH...3 NP-COG-OV...2 NP-COG-SKIJ...2 NP-COG-OGLU...1 PRON-DEM-O...7 PRON-DEM-SU...5 PRON-DEM-BU...8 PRON-IND...1 PRON-INTERR...1 PRON-QNT...1 ABBR...1 ABBR-INIT...39 POST...1 INTERJ...1 BARB...1 Miscellaneous...12 Conjunctions...22 Postpositions...17 Pronouns...28 Determiners...22 Numerals...54 Nouns...1844 ProperNouns...2167 Cognomena...1253 Adjectives...339 Adverbs...99 Verbs...395 Abbreviations...120 Interjections...1 Punctuation...21 DIGITLEX...6 Barbarisms...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ADV-ITG Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... Barbarisms Morphotaxing... CA Morphotaxing... CASES Morphotaxing... CC Morphotaxing... CLITIC-COPULA Morphotaxing... COPULA-GENERAL Morphotaxing... COPULA-PERS-AOR Morphotaxing... COPULA-PERS-NFH Morphotaxing... COPULA-PERS-PAST Morphotaxing... CS Morphotaxing... Cognomena Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LI-POSTPOSITION Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OGLU Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-ORG Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-RUS Morphotaxing... NUM Morphotaxing... NUM-DIST Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BÄN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-ONNAR Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SÄN Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST Morphotaxing... SUBST-ATTR Morphotaxing... V-ABIL Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREG-NEG Morphotaxing... V-FINITE-REGULAR_NEG Morphotaxing... V-GER Morphotaxing... V-GNA Morphotaxing... V-GPR Morphotaxing... V-GPR-SUBST Morphotaxing... V-IMPER Morphotaxing... V-IV Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-FUT Morphotaxing... V-PERS-POSS Morphotaxing... V-PERS-POSS-FUT Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/gag.RL.lexc.hfst -2 .deps/gag.twol.hfst -o .deps/gag.RL.hfst | |
hfst-fst2fst -w .deps/gag.RL.hfst -o gag.autogen.hfst | |
hfst-fst2txt gag.autogen.hfst | gzip -9 -c -n > gag.autogen.att.gz | |
zcat < gag.autogen.att.gz > .deps/gag.autogen.att | |
lt-comp lr .deps/gag.autogen.att gag.autogen.bin | |
main@standard 20916 36369 | |
final@inconditional 18 36 | |
lt-comp lr apertium-gag.post-gag.dix gag.autopgen.bin | |
main@standard 5 8 | |
/usr/bin/cg-comp apertium-gag.gag.rlx gag.rlx.bin | |
Sections: 1, Rules: 2, Sets: 3, Tags: 13 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-uzb | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-uzb.pc | |
test -z "uzb.automorf.hfst uzb.autogen.hfst uzb.automorf.bin uzb.autogen.bin uzb.automorf.att.gz uzb.autogen.att.gz uzb_guesser.automorf.bin uzb_guesser.automorf.hfst uzb.autopgen.bin uzb.rlx.bin" || rm -f uzb.automorf.hfst uzb.autogen.hfst uzb.automorf.bin uzb.autogen.bin uzb.automorf.att.gz uzb.autogen.att.gz uzb_guesser.automorf.bin uzb_guesser.automorf.hfst uzb.autopgen.bin uzb.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-uzb.uzb.lexc | grep -v 'Dir/RL' > .deps/uzb.LR.lexc | |
hfst-lexc .deps/uzb.LR.lexc -o .deps/uzb.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/uzb.LR.lexc, writing to .deps/uzb.LR.lexc.hfst | |
Parsing lexc file .deps/uzb.LR.lexc | |
Root...5 NP-TOP...1 NP-ANT-M...2 NP-ANT-F...2 NP-COG-MF...1 V...1 V-IV...1 V-IV-COOP...1 V-IV-REFL...1 V-IV-LESS...1 V-IV-REFL-LESS...1 V-TV...1 V-TV-CAUS...1 V-TV-COOP...1 N1...2 N1-NAT...1 N1→V...1 N1--V...1 N1-PL...1 N1-VN...1 N1--N1...1 N1-REMOVE...1 N1-ADR...1 N-COMPOUND-PX...3 A1...3 A1-SUP...1 A1-NAT...1 A1→V...1 A2...2 A2-SUP...1 A2--V...1 ADV...1 ADV-ATTR...2 POST...1 POST-NOM...1 POST-NOM-GEN...1 POST-GEN...1 POST-DAT...1 POST-ABL...1 POST-INS...1 PREP...1 IJ...1 IJ→IJ...1 IJ←IJ...1 IDEO...1 TIT...1 ABBR...1 CA...1 CS...1 CC...1 CC-SOYED...1 CC-RAZDEL...1 CC-PROTIV...1 QST...1 POSTADV...1 PAREN...1 PHRASE...1 PRON-DEM-BU...9 VERB-IV...6 VERB-IV-FULL...11 VERB-TD...2 VERB-TV...6 VERB-TV-FULL...10 VERB-COPULA...9 KAN...2 NON-FINITE...10 PRES-COND...1 GERUND...3 IMPERATIVE...11 INDEF-PAST...2 PAST...2 EVIDENTIAL-PAST...1 PERMISSIVE...1 PRES-CONT...7 AORIST...2 FUT...3 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 PERS...7 PERS2...9 PERS3...6 ADV1...3 ADV2...2 ADV3...1 ADV-ITG...1 DET-IND...1 DET-DEM...1 DET-QNT...1 PRON-QNT...1 DET-ITG...1 PRON-REF...1 PRON-ADV...2 MIST...1 CLITICS...6 CLIT-QST-MA...1 CLIT-QST...2 CLIT-MODASS...2 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...3 CLITICS-NO-COP-NO-QST...2 CLITICS-INCL-COP...2 CASES-COMMON...3 CASES...4 ATTR-SUBST...5 GENERAL-POSSESSIVE-ETC...4 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 NP-COMMON...1 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENERAL-POSSESSIVE-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 Copula...6 NUM...3 NP-ORG...3 NP-AL...3 SUBST...3 N-INFL-COMMON...4 POSS-REAL...6 POSS-REAL-NONOM...6 CASE-ETC...3 CASE...6 CASE-NONOM...5 GENPOSS-ETC...1 SUB-COP...1 DIGITLEX...10 LOOP...12 POWERS...2 NUM-DIGIT...3 LASTDIGIT...9 LASTDIGIT-REST...9 PRON-ITG-INFL...1 PRON-NEG...1 PRON-IND...1 PRON-COLL...1 PRON-DEM...1 Digits...6 Common...35394 Hardcoded...48 Punctuation...23 Proper...Compiling... Warning: Sublexicon is mentioned but not defined. (A1→A1) | |
Warning: Sublexicons defined but not used | |
CLITICS-NO-COP-NO-QST Copula GER-ABE-ATTR/ADVL/SUBST GER-INFL V | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-NAT Morphotaxing... A1-SUP Morphotaxing... A1→V Morphotaxing... A2 Morphotaxing... A2--V Morphotaxing... A2-SUP Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... AORIST Morphotaxing... ATTR-SUBST Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CC-PROTIV Morphotaxing... CC-RAZDEL Morphotaxing... CC-SOYED Morphotaxing... CLIT-COP Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CLITICS-NO-COP-NO-QST Morphotaxing... CS Morphotaxing... Common Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Digits Morphotaxing... EVIDENTIAL-PAST Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FUT Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GENPOSS-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... GERUND Morphotaxing... Hardcoded Morphotaxing... IDEO Morphotaxing... IJ Morphotaxing... IJ←IJ Morphotaxing... IJ→IJ Morphotaxing... IMPERATIVE Morphotaxing... INDEF-PAST Morphotaxing... KAN Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... MIST Morphotaxing... N-COMPOUND-PX Morphotaxing... N-INFL-COMMON Morphotaxing... N1 Morphotaxing... N1--N1 Morphotaxing... N1--V Morphotaxing... N1-ADR Morphotaxing... N1-NAT Morphotaxing... N1-PL Morphotaxing... N1-REMOVE Morphotaxing... N1-VN Morphotaxing... N1→V Morphotaxing... NON-FINITE Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... PAREN Morphotaxing... PAST Morphotaxing... PERMISSIVE Morphotaxing... PERS Morphotaxing... PERS2 Morphotaxing... PERS3 Morphotaxing... PHRASE Morphotaxing... PLURAL Morphotaxing... POSS-REAL Morphotaxing... POSS-REAL-NONOM Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-DAT Morphotaxing... POST-GEN Morphotaxing... POST-INS Morphotaxing... POST-NOM Morphotaxing... POST-NOM-GEN Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PREP Morphotaxing... PRES-COND Morphotaxing... PRES-CONT Morphotaxing... PRON-ADV Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-NEG Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SUB-COP Morphotaxing... SUBST Morphotaxing... TIT Morphotaxing... V Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-LESS Morphotaxing... V-IV-REFL Morphotaxing... V-IV-REFL-LESS Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-COOP Morphotaxing... VERB-COPULA Morphotaxing... VERB-IV Morphotaxing... VERB-IV-FULL Morphotaxing... VERB-TD Morphotaxing... VERB-TV Morphotaxing... VERB-TV-FULL | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-uzb.uzb.twol -o .deps/uzb.twol.hfst | |
Reading input from apertium-uzb.uzb.twol. | |
Writing output to .deps/uzb.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/uzb.LR.lexc.hfst -2 .deps/uzb.twol.hfst -o .deps/uzb.LR.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uzb.LR.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uzb.twol.hfst. | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/uzb.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o uzb.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uzb.LR.hfst which are not found on the | |
input tapes of transducers in file .deps/spellrelax.hfst. | |
cat apertium-uzb.uzb.lexc | grep -v 'Dir/LR' > .deps/uzb.RL.lexc | |
hfst-lexc .deps/uzb.RL.lexc -o .deps/uzb.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/uzb.RL.lexc, writing to .deps/uzb.RL.lexc.hfst | |
Parsing lexc file .deps/uzb.RL.lexc | |
Root...5 NP-TOP...1 NP-ANT-M...2 NP-ANT-F...2 NP-COG-MF...1 V...1 V-IV...1 V-IV-COOP...1 V-IV-REFL...1 V-IV-LESS...1 V-IV-REFL-LESS...1 V-TV...1 V-TV-CAUS...1 V-TV-COOP...1 N1...2 N1-NAT...1 N1→V...1 N1--V...1 N1-PL...1 N1-VN...1 N1--N1...1 N1-REMOVE...1 N1-ADR...1 N-COMPOUND-PX...3 A1...3 A1-SUP...1 A1-NAT...1 A1→V...1 A2...2 A2-SUP...1 A2--V...1 ADV...1 ADV-ATTR...2 POST...1 POST-NOM...1 POST-NOM-GEN...1 POST-GEN...1 POST-DAT...1 POST-ABL...1 POST-INS...1 PREP...1 IJ...1 IJ→IJ...1 IJ←IJ...1 IDEO...1 TIT...1 ABBR...1 CA...1 CS...1 CC...1 CC-SOYED...1 CC-RAZDEL...1 CC-PROTIV...1 QST...1 POSTADV...1 PAREN...1 PHRASE...1 PRON-DEM-BU...9 VERB-IV...6 VERB-IV-FULL...11 VERB-TD...2 VERB-TV...6 VERB-TV-FULL...10 VERB-COPULA...9 KAN...2 NON-FINITE...9 PRES-COND...1 GERUND...3 IMPERATIVE...6 INDEF-PAST...2 PAST...2 EVIDENTIAL-PAST...1 PERMISSIVE...1 PRES-CONT...3 AORIST...1 FUT...2 V-PERS-S1-NO3PERSON...6 V-PERS-S1...3 V-PERS-S2...8 PERS...6 PERS2...7 PERS3...6 ADV1...3 ADV2...2 ADV3...1 ADV-ITG...1 DET-IND...1 DET-DEM...1 DET-QNT...1 PRON-QNT...1 DET-ITG...1 PRON-REF...1 PRON-ADV...2 MIST...1 CLITICS...6 CLIT-QST-MA...1 CLIT-QST...2 CLIT-MODASS...2 CLIT-GHANA-ETC...5 CLIT-COP...1 CLITICS-NO-COP...3 CLITICS-NO-COP-NO-QST...2 CLITICS-INCL-COP...2 CASES-COMMON...3 CASES...4 ATTR-SUBST...5 GENERAL-POSSESSIVE-ETC...4 CASES-ETC...2 POSSESSIVES...7 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 NP-COMMON...1 GER-CASE-NO_COPULA...4 GER-ATTR/SUBST...1 GER-ABE-ATTR/ADVL/SUBST...1 GER-ABE-ETC...1 GER-GENERAL-POSSESSIVE-ETC...3 GER-CASE-ETC...2 GER-POSSESSIVES...7 GER-INFL...5 Copula...6 NUM...3 NP-ORG...3 NP-AL...3 SUBST...3 N-INFL-COMMON...4 POSS-REAL...6 POSS-REAL-NONOM...6 CASE-ETC...3 CASE...6 CASE-NONOM...5 GENPOSS-ETC...1 SUB-COP...1 DIGITLEX...10 LOOP...12 POWERS...2 NUM-DIGIT...2 LASTDIGIT...9 LASTDIGIT-REST...9 PRON-ITG-INFL...1 PRON-NEG...1 PRON-IND...1 PRON-COLL...1 PRON-DEM...1 Digits...6 Common...35394 Hardcoded...48 Punctuation...23 Proper...Compiling... Warning: Sublexicon is mentioned but not defined. (A1→A1) | |
Warning: Sublexicons defined but not used | |
CLITICS-NO-COP-NO-QST Copula GER-ABE-ATTR/ADVL/SUBST GER-INFL V | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A1-NAT Morphotaxing... A1-SUP Morphotaxing... A1→V Morphotaxing... A2 Morphotaxing... A2--V Morphotaxing... A2-SUP Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... AORIST Morphotaxing... ATTR-SUBST Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CC Morphotaxing... CC-PROTIV Morphotaxing... CC-RAZDEL Morphotaxing... CC-SOYED Morphotaxing... CLIT-COP Morphotaxing... CLIT-GHANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-MA Morphotaxing... CLITICS Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CLITICS-NO-COP-NO-QST Morphotaxing... CS Morphotaxing... Common Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Digits Morphotaxing... EVIDENTIAL-PAST Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FUT Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GENPOSS-ETC Morphotaxing... GER-ABE-ATTR/ADVL/SUBST Morphotaxing... GER-ABE-ETC Morphotaxing... GER-ATTR/SUBST Morphotaxing... GER-CASE-ETC Morphotaxing... GER-CASE-NO_COPULA Morphotaxing... GER-GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GER-POSSESSIVES Morphotaxing... GERUND Morphotaxing... Hardcoded Morphotaxing... IDEO Morphotaxing... IJ Morphotaxing... IJ←IJ Morphotaxing... IJ→IJ Morphotaxing... IMPERATIVE Morphotaxing... INDEF-PAST Morphotaxing... KAN Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... MIST Morphotaxing... N-COMPOUND-PX Morphotaxing... N-INFL-COMMON Morphotaxing... N1 Morphotaxing... N1--N1 Morphotaxing... N1--V Morphotaxing... N1-ADR Morphotaxing... N1-NAT Morphotaxing... N1-PL Morphotaxing... N1-REMOVE Morphotaxing... N1-VN Morphotaxing... N1→V Morphotaxing... NON-FINITE Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... PAREN Morphotaxing... PAST Morphotaxing... PERMISSIVE Morphotaxing... PERS Morphotaxing... PERS2 Morphotaxing... PERS3 Morphotaxing... PHRASE Morphotaxing... PLURAL Morphotaxing... POSS-REAL Morphotaxing... POSS-REAL-NONOM Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POST-ABL Morphotaxing... POST-DAT Morphotaxing... POST-GEN Morphotaxing... POST-INS Morphotaxing... POST-NOM Morphotaxing... POST-NOM-GEN Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PREP Morphotaxing... PRES-COND Morphotaxing... PRES-CONT Morphotaxing... PRON-ADV Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-NEG Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... Proper Morphotaxing... Punctuation Morphotaxing... QST Morphotaxing... Root Morphotaxing... SUB-COP Morphotaxing... SUBST Morphotaxing... TIT Morphotaxing... V Morphotaxing... V-IV Morphotaxing... V-IV-COOP Morphotaxing... V-IV-LESS Morphotaxing... V-IV-REFL Morphotaxing... V-IV-REFL-LESS Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-NO3PERSON Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-CAUS Morphotaxing... V-TV-COOP Morphotaxing... VERB-COPULA Morphotaxing... VERB-IV Morphotaxing... VERB-IV-FULL Morphotaxing... VERB-TD Morphotaxing... VERB-TV Morphotaxing... VERB-TV-FULL | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/uzb.RL.lexc.hfst -2 .deps/uzb.twol.hfst -o .deps/uzb.RL.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uzb.RL.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uzb.twol.hfst. | |
hfst-fst2fst -O .deps/uzb.RL.hfst -o uzb.autogen.hfst | |
hfst-fst2txt uzb.automorf.hfst | gzip -9 -c -n > uzb.automorf.att.gz | |
zcat < uzb.automorf.att.gz > .deps/uzb.automorf.att | |
lt-comp lr .deps/uzb.automorf.att uzb.automorf.bin | |
main@standard 29874 62253 | |
final@inconditional 26 106 | |
hfst-fst2txt uzb.autogen.hfst | gzip -9 -c -n > uzb.autogen.att.gz | |
zcat < uzb.autogen.att.gz > .deps/uzb.autogen.att | |
lt-comp lr .deps/uzb.autogen.att uzb.autogen.bin | |
main@standard 31659 62768 | |
final@inconditional 27 106 | |
hfst-xfst -p -e "source apertium-uzb.uzb.guesser" -e "save stack .deps/uzb.guesser.hfst" -E "hyvästi" | |
Defined | |
'Vow' | |
Defined | |
'Cns' | |
Defined | |
'Syll' | |
Defined | |
'Stem' | |
? bytes. 7 states, 156 arcs, ? paths | |
. | |
hfst-substitute -i .deps/uzb.LR.lexc.hfst -o .deps/uzb_guesser.lexc.hfst -f '{🂡}:{🂡}' -T .deps/uzb.guesser.hfst | |
hfst-compose-intersect -1 .deps/uzb_guesser.lexc.hfst -2 .deps/uzb.twol.hfst -o .deps/uzb_guesser.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{b}") in | |
transducer in file .deps/uzb_guesser.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uzb.twol.hfst. | |
hfst-regexp2fst apertium-uzb.uzb.rest -o .deps/uzb.restrict_guesser.hfst | |
cat .deps/uzb_guesser.hfst | hfst-invert | hfst-compose -1 - -2 .deps/uzb.restrict_guesser.hfst | hfst-invert | hfst-compose-intersect -1 - -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o uzb_guesser.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{b}") in | |
transducer in file <stdin> which are not found on the | |
input tapes of transducers in file .deps/spellrelax.hfst. | |
hfst-fst2txt uzb_guesser.automorf.hfst > .deps/uzb_guesser.autogen.att | |
lt-comp lr .deps/uzb_guesser.autogen.att uzb_guesser.automorf.bin | |
main@standard 33518 422517 | |
final@inconditional 26 106 | |
lt-comp lr apertium-uzb.post-uzb.dix uzb.autopgen.bin | |
main@standard 16 356 | |
/usr/bin/cg-comp apertium-uzb.uzb.rlx uzb.rlx.bin | |
Sections: 0, Rules: 62, Sets: 54, Tags: 104 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-crh | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-crh.pc | |
test -z "crh.automorf.hfst crh.automorf.bin crh.automorf.att.gz crh.autogen.hfst crh.autogen.bin crh.autogen.att.gz crh.autopgen.bin crh.rlx.bin" || rm -f crh.automorf.hfst crh.automorf.bin crh.automorf.att.gz crh.autogen.hfst crh.autogen.bin crh.autogen.att.gz crh.autopgen.bin crh.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-crh.crh.lexc | grep -v -e 'Dir/RL' > .deps/crh.LR.lexc | |
hfst-lexc --Werror .deps/crh.LR.lexc -o .deps/crh.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/crh.LR.lexc, writing to .deps/crh.LR.lexc.hfst | |
Parsing lexc file .deps/crh.LR.lexc | |
Root...17 SQRD...5 NUM-DIGIT...17 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-CHI...2 CLIT-DA...1 CLIT-EMPH...1 CLIT-QST-MI...1 CLIT-COP...5 CLITICS-NO-COP...3 CLITICS-INCL-COP...3 CLITICS-AFTER-IMP...1 CASES-COMMON...4 CASES...8 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...2 GENERAL-POSSESSIVE-ETC-PROP...1 CASES-ETC...2 CASES-ETC-PROP...2 POSSESSIVES...5 POSSESSIVES-PROP...5 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...2 SUBST...3 FULL-NOMINAL-INFLECTION...5 FULL-NOMINAL-INFLECTION-PROP...3 CASE-NONOM...8 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...1 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N5...2 NP-TOP...1 NP-ANT-M...1 NP-ANT-F...1 NP-COG-SKIY...2 NP-COG-IN...2 NP-COG-OV...3 NP-COG-MF...1 NP-COG-ZADE...2 NP-PAT-EVICH...3 NP-AL...1 NP-AL-ABBR...1 A1...1 A2...1 A3...2 A4...2 NUM...4 NUM-COLL...2 NUM-ROMAN...1 PRON-REF-ADV...1 PRON-REF...6 PRON-IND-EP...1 PRON-IND-BUTUN...1 PRON-QNT-BUTUN...1 PRON-QNT-ÇOQU...1 PRON-IND...1 PRON-INTERR...1 PRON-RECIP...1 PRON-DEM-BU...8 PRON-DEM-SU...6 PRON-DEM-O...6 PRON-PERS-MEN...10 PRON-PERS-SEN...8 PRON-PERS-O...9 PRON-PERS-BIZ...8 PRON-PERS-BIZLER...8 PRON-PERS-SIZ...10 PRON-PERS-SIZLER...8 PRON-PERS-OLAR...8 DET-INTERR...1 DET-QNT...1 DET-REF...1 DET-IND...1 DET-DEM...1 V-PERS-S1-COP...3 V-PERS-S1...7 V-PERS-S1-NO1...5 V-PERS-S2...6 V-PERS-AOR...7 V-FINITE-REGULAR_NEGATIVE...14 V-FUT-COMMON...4 V-FUT-IR...5 V-FUT-AR...5 V-NONFINITE...20 V-COMMON...5 V-DER...4 V-IV...3 V-TV...3 V-IV-AR...3 V-TV-AR...3 VAUX...3 ADV...1 ADV-ITG...2 ADV-ATTR...2 ADV-LANG...2 POST...1 CA...1 CS...1 CC...1 ABBR...1 SYM...1 SYM-HASH...1 SYM-HASH-TAG...1 INTERJ...1 ABBR-INIT...30 Miscellaneous...7 Copula...6 Conjunctions...24 Postpositions...24 Pronouns...34 Determiners...20 Numerals...48 Nouns...6334 ProperNouns...4151 Adjectives...1603 Adverbs...137 Verbs...1121 Abbreviations...42 Interjections...5 Symbols...2 Punctuation...26 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CASES-ETC-PROP Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-QST-MI Morphotaxing... CLITICS-AFTER-IMP Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-INTERR Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-PROP Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GENERAL-POSSESSIVE-ETC-PROP Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIY Morphotaxing... NP-COG-ZADE Morphotaxing... NP-PAT-EVICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POSSESSIVES-PROP Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-BUTUN Morphotaxing... PRON-IND-EP Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BIZLER Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SIZLER Morphotaxing... PRON-QNT-BUTUN Morphotaxing... PRON-QNT-ÇOQU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-COMMON Morphotaxing... V-FUT-IR Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... VAUX Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
cat apertium-crh.crh.lexc | grep -v -e 'Err/Orth' > .deps/crh.EL.lexc | |
hfst-lexc --Werror .deps/crh.EL.lexc -o .deps/crh.EL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/crh.EL.lexc, writing to .deps/crh.EL.lexc.hfst | |
Parsing lexc file .deps/crh.EL.lexc | |
Root...17 SQRD...5 NUM-DIGIT...17 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-CHI...2 CLIT-DA...1 CLIT-EMPH...1 CLIT-QST-MI...1 CLIT-COP...5 CLITICS-NO-COP...3 CLITICS-INCL-COP...3 CLITICS-AFTER-IMP...1 CASES-COMMON...3 CASES...7 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...2 GENERAL-POSSESSIVE-ETC-PROP...1 CASES-ETC...2 CASES-ETC-PROP...2 POSSESSIVES...5 POSSESSIVES-PROP...5 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...2 SUBST...3 FULL-NOMINAL-INFLECTION...5 FULL-NOMINAL-INFLECTION-PROP...3 CASE-NONOM...8 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...1 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N5...2 NP-TOP...1 NP-ANT-M...1 NP-ANT-F...1 NP-COG-SKIY...2 NP-COG-IN...2 NP-COG-OV...3 NP-COG-MF...1 NP-COG-ZADE...2 NP-PAT-EVICH...3 NP-AL...1 NP-AL-ABBR...1 A1...1 A2...1 A3...2 A4...2 NUM...4 NUM-COLL...2 NUM-ROMAN...1 PRON-REF-ADV...1 PRON-REF...6 PRON-IND-EP...1 PRON-IND-BUTUN...1 PRON-QNT-BUTUN...1 PRON-QNT-ÇOQU...1 PRON-IND...1 PRON-INTERR...1 PRON-RECIP...1 PRON-DEM-BU...8 PRON-DEM-SU...6 PRON-DEM-O...6 PRON-PERS-MEN...10 PRON-PERS-SEN...8 PRON-PERS-O...9 PRON-PERS-BIZ...8 PRON-PERS-BIZLER...8 PRON-PERS-SIZ...10 PRON-PERS-SIZLER...8 PRON-PERS-OLAR...8 DET-INTERR...1 DET-QNT...1 DET-REF...1 DET-IND...1 DET-DEM...1 V-PERS-S1-COP...3 V-PERS-S1...7 V-PERS-S1-NO1...5 V-PERS-S2...6 V-PERS-AOR...7 V-FINITE-REGULAR_NEGATIVE...14 V-FUT-COMMON...4 V-FUT-IR...4 V-FUT-AR...4 V-NONFINITE...19 V-COMMON...5 V-DER...4 V-IV...3 V-TV...3 V-IV-AR...3 V-TV-AR...3 VAUX...3 ADV...1 ADV-ITG...2 ADV-ATTR...2 ADV-LANG...2 POST...1 CA...1 CS...1 CC...1 ABBR...1 SYM...1 SYM-HASH...1 SYM-HASH-TAG...1 INTERJ...1 ABBR-INIT...30 Miscellaneous...8 Copula...6 Conjunctions...23 Postpositions...23 Pronouns...34 Determiners...20 Numerals...48 Nouns...6322 ProperNouns...4131 Adjectives...1598 Adverbs...135 Verbs...1114 Abbreviations...42 Interjections...5 Symbols...2 Punctuation...26 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CASES-ETC-PROP Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-QST-MI Morphotaxing... CLITICS-AFTER-IMP Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-INTERR Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-PROP Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GENERAL-POSSESSIVE-ETC-PROP Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIY Morphotaxing... NP-COG-ZADE Morphotaxing... NP-PAT-EVICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POSSESSIVES-PROP Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-BUTUN Morphotaxing... PRON-IND-EP Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BIZLER Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SIZLER Morphotaxing... PRON-QNT-BUTUN Morphotaxing... PRON-QNT-ÇOQU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-COMMON Morphotaxing... V-FUT-IR Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... VAUX Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-crh.crh.twol -o .deps/crh.twol.hfst | |
Reading input from apertium-crh.crh.twol. | |
Writing output to .deps/crh.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/crh.EL.lexc.hfst -2 .deps/crh.twol.hfst | hfst-minimise -o .deps/crh.LR.hfst | |
hfst-twolc apertium-crh.err.twol -o .deps/crh.err.hfst | |
Reading input from apertium-crh.err.twol. | |
Writing output to .deps/crh.err.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/crh.LR.lexc.hfst -2 .deps/crh.err.hfst | hfst-minimise -o .deps/crh.LR.err.hfst.tmp | |
hfst-project -p output .deps/crh.LR.hfst | hfst-minimise -o .deps/crh.LR.corr.hfst.tmp | |
hfst-invert .deps/crh.LR.err.hfst.tmp | hfst-compose -1 .deps/crh.LR.corr.hfst.tmp -2 - | hfst-invert -o .deps/crh.LR.err.hfst.tmp2 | |
hfst-subtract -1 .deps/crh.LR.err.hfst.tmp -2 .deps/crh.LR.err.hfst.tmp2 -o .deps/crh.LR.err.hfst.tmp3 | |
echo "<err_orth>:0" | hfst-strings2fst -e 0 -S | hfst-concatenate -1 .deps/crh.LR.err.hfst.tmp3 -2 - -o .deps/crh.LR.err.hfst | |
hfst-union -1 .deps/crh.LR.hfst -2 .deps/crh.LR.err.hfst | hfst-invert | hfst-fst2fst -w -o crh.automorf.hfst | |
hfst-fst2txt crh.automorf.hfst | gzip -9 -c -n > crh.automorf.att.gz | |
zcat < crh.automorf.att.gz > .deps/crh.automorf.att | |
lt-comp lr .deps/crh.automorf.att crh.automorf.bin | |
main@standard 112233 320968 | |
final@inconditional 424 1452 | |
cat apertium-crh.crh.lexc | grep -v -e 'Dir/LR' -e 'Err/Orth' > .deps/crh.RL.lexc | |
hfst-lexc --Werror .deps/crh.RL.lexc -o .deps/crh.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/crh.RL.lexc, writing to .deps/crh.RL.lexc.hfst | |
Parsing lexc file .deps/crh.RL.lexc | |
Root...17 SQRD...3 NUM-DIGIT...14 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-EMPH-CHI...2 CLIT-DA...1 CLIT-EMPH...1 CLIT-QST-MI...1 CLIT-COP...4 CLITICS-NO-COP...3 CLITICS-INCL-COP...3 CLITICS-AFTER-IMP...1 CASES-COMMON...3 CASES...5 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...2 GENERAL-POSSESSIVE-ETC-PROP...1 CASES-ETC...2 CASES-ETC-PROP...2 POSSESSIVES...5 POSSESSIVES-PROP...5 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...2 SUBST...3 FULL-NOMINAL-INFLECTION...5 FULL-NOMINAL-INFLECTION-PROP...3 CASE-NONOM...7 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...1 N-COMPOUND-PX-COMMON...2 N1...2 N2...2 N5...2 NP-TOP...1 NP-ANT-M...1 NP-ANT-F...1 NP-COG-SKIY...2 NP-COG-IN...2 NP-COG-OV...3 NP-COG-MF...1 NP-COG-ZADE...1 NP-PAT-EVICH...2 NP-AL...1 NP-AL-ABBR...1 A1...1 A2...1 A3...2 A4...2 NUM...4 NUM-COLL...2 NUM-ROMAN...1 PRON-REF-ADV...1 PRON-REF...6 PRON-IND-EP...1 PRON-IND-BUTUN...1 PRON-QNT-BUTUN...1 PRON-QNT-ÇOQU...1 PRON-IND...1 PRON-INTERR...1 PRON-RECIP...1 PRON-DEM-BU...7 PRON-DEM-SU...6 PRON-DEM-O...6 PRON-PERS-MEN...9 PRON-PERS-SEN...8 PRON-PERS-O...8 PRON-PERS-BIZ...8 PRON-PERS-BIZLER...8 PRON-PERS-SIZ...9 PRON-PERS-SIZLER...8 PRON-PERS-OLAR...8 DET-INTERR...1 DET-QNT...1 DET-REF...1 DET-IND...1 DET-DEM...1 V-PERS-S1-COP...2 V-PERS-S1...7 V-PERS-S1-NO1...5 V-PERS-S2...6 V-PERS-AOR...7 V-FINITE-REGULAR_NEGATIVE...13 V-FUT-COMMON...4 V-FUT-IR...4 V-FUT-AR...4 V-NONFINITE...18 V-COMMON...5 V-DER...4 V-IV...3 V-TV...3 V-IV-AR...3 V-TV-AR...3 VAUX...3 ADV...1 ADV-ITG...2 ADV-ATTR...2 ADV-LANG...2 POST...1 CA...1 CS...1 CC...1 ABBR...1 SYM...1 SYM-HASH...1 SYM-HASH-TAG...1 INTERJ...1 ABBR-INIT...30 Miscellaneous...2 Copula...6 Conjunctions...23 Postpositions...22 Pronouns...32 Determiners...20 Numerals...48 Nouns...6320 ProperNouns...4130 Adjectives...1598 Adverbs...135 Verbs...1112 Abbreviations...42 Interjections...5 Symbols...2 Punctuation...26 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ATTR Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CASES-ETC-PROP Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-DA Morphotaxing... CLIT-EMPH Morphotaxing... CLIT-EMPH-CHI Morphotaxing... CLIT-QST-MI Morphotaxing... CLITICS-AFTER-IMP Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-INTERR Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... FULL-NOMINAL-INFLECTION-PROP Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GENERAL-POSSESSIVE-ETC-PROP Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIY Morphotaxing... NP-COG-ZADE Morphotaxing... NP-PAT-EVICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POSSESSIVES-PROP Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-O Morphotaxing... PRON-DEM-SU Morphotaxing... PRON-IND Morphotaxing... PRON-IND-BUTUN Morphotaxing... PRON-IND-EP Morphotaxing... PRON-INTERR Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-BIZLER Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-O Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SIZLER Morphotaxing... PRON-QNT-BUTUN Morphotaxing... PRON-QNT-ÇOQU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... V-COMMON Morphotaxing... V-DER Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FUT-AR Morphotaxing... V-FUT-COMMON Morphotaxing... V-FUT-IR Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-AOR Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S1-COP Morphotaxing... V-PERS-S1-NO1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... VAUX Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/crh.RL.lexc.hfst -2 .deps/crh.twol.hfst -o .deps/crh.RL.hfst | |
hfst-fst2fst -w .deps/crh.RL.hfst -o crh.autogen.hfst | |
hfst-fst2txt crh.autogen.hfst | gzip -9 -c -n > crh.autogen.att.gz | |
zcat < crh.autogen.att.gz > .deps/crh.autogen.att | |
lt-comp lr .deps/crh.autogen.att crh.autogen.bin | |
main@standard 27625 47751 | |
final@inconditional 221 587 | |
lt-comp lr apertium-crh.post-crh.dix crh.autopgen.bin | |
main@standard 5 8 | |
/usr/bin/cg-comp apertium-crh.crh.rlx crh.rlx.bin | |
Sections: 3, Rules: 72, Sets: 92, Tags: 96 | |
2 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-kir | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-kir.pc | |
test -z "kir.automorf.hfst kir.autogen.hfst kir.autopgen.bin kir.automorf.bin kir.autogen.bin kir.automorf.att.gz kir.autogen.att.gz kir.rlx.bin" || rm -f kir.automorf.hfst kir.autogen.hfst kir.autopgen.bin kir.automorf.bin kir.autogen.bin kir.automorf.att.gz kir.autogen.att.gz kir.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kir.kir.lexc | grep -v 'Dir/RL' > .deps/kir.LR.lexc | |
hfst-lexc -W -v .deps/kir.LR.lexc -o .deps/kir.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kir.LR.lexc, writing to .deps/kir.LR.lexc.hfst | |
Parsing lexc file .deps/kir.LR.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM-DIGIT...39 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...13 DIGITLEX...10 CASES-DEFAULT...5 CASES...2 CASES-PX12SG...3 NIKI...2 DAY...5 GEN-POS...4 GEN-POS-PX12SG...3 POSSESSION...2 POSSESSION-ENDINGS...7 VOL-ENDINGS...8 EXI...3 ABESSIVE-SUFFIX...1 LUU-SUFFIX...1 SUBST-COMMON...5 N1-ABBR...3 N-INFL-COMMON...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-SG...5 N-INFL-PL...4 N1...1 N6...2 N-INFL...2 N-INFL-KI...2 N-INFL-NKI...3 N-COMPOUND-PX-COMMON...2 N-INFL-3PX-COMPOUND...2 GER-INFL...3 NP-ORG-COMPOUND...1 ADV-LANG...2 NP-TOP-ASSR...3 NP-TOP...2 NP-TOP-CLUSTER...2 NP-TOP-ABBR...4 NP-COMMON...1 NP-COG-COMMON...2 NP-COG-IN...2 NP-COG-OB...2 NP-COG-MF...1 NP-COG-M...1 NP-COG-F...1 NP-ANT-M...2 NP-ANT-F...2 NP-ANT-MF...2 NP-PAT-VICH...2 NP-ORG...2 NP-ORG-LAT...4 NP-TOP-COMPOUND...2 NAT...5 NUM-COMMON...2 NUM-ROMAN...1 NUM...3 NUM-ITG...3 NP-AL-PL...3 NP-AL...2 ADJ-LEVELS...3 A1...10 A2...7 A3...2 A4...1 A5...4 A6...3 CLIT...2 SUBST...1 ADJ-COMMON...2 DAGI...3 V-ADJ...2 ATTR...2 ADJ...4 KI...2 ADV-KI...1 IRREGULAR-KI...2 ADV-WITH-KI-ABL...3 ADV-WITH-KI...2 ADV-WITH-ABL...2 ADV-WITH-ABL-REG...2 ADV-WITH-IRREGULAR-KI...2 ADV-ABL...1 ADV-ABL-REG...1 ADVL...2 ADV...1 ADVITG...1 POST...1 POST-DECL...2 CA...1 CS...1 CC...1 POSTADV...1 ABBR...1 INTERJ...1 DET-DEM...1 DET-DEM-L...1 DET-IND...1 DET-QNT...1 DET-REF...1 PRON-DEM-PL...2 PRON-DEM-BUL...15 PRON-DEM-L...15 PRON-DEM-AL...14 PRON-DEM-TIGIL...14 PRON-PERS-EN...11 PRON-PERS-IZ...9 PRON-PERS-AL...9 PRON-PERS-PLURALS...9 PRON-ITG...1 PRON-ITG-QANDAY...5 PRON-REF-ADV...2 PRON-REFL...8 PRON-IND...2 PRON-IND-POSS...1 PRON-DEM...2 PRON-QNT...2 PRON-QNT-POSS...1 PRN-NEG...1 PRON-RECIP...1 PRON-COLL...3 CLIT-QST-NO-BI...4 CLIT-QST...2 CLIT-MODASS...2 CLIT-GANA-ETC...1 CLITICS-NO-COP...3 CLITICS-INCL-COP...2 CLIT-COP...1 PRED...3 CLIT-NONPRED...2 V-CLIT-BI...2 V-CLIT-OTHER...7 V-CLIT...2 V-PERS-COP...1 V-PERS-COP-SUF...3 V-PERS-COP-SUF-NOP3...6 V-PERS-PAST...8 V-PERS-COND...8 V-PERS-PRES...10 V-INFL-COMMON...3 V-INFL-COMMON-SECOND...4 V-INFL-NON-FINITE...3 V-INFL-NON-FINITE-IRREG...28 IMP...2 CLIT-CHI...1 V-INFL-NON-FINITE-REG...37 V-INFL-FINITE...3 V-FINITE-REGULAR_NEGATIVE...5 V-FINITE-IRREGULAR_NEGATIVE...14 V-INFL-ASIF...4 V-INFL-TV-SHORT...6 V-INFL-TV...6 V-INFL-TV-NOPASS...1 V-INFL-TV-PASS...2 V-INFL-IV...4 V-INFL-TV-NO-CAUS...2 V-INFL-IV-NO-CAUS...1 V-INFL-TV-IRREG-CAUS...3 V-INFL-IV-IRREG-CAUS...3 VAUX-INFL...1 Miscellaneous...4 Postadverbs...10 Conjunctions...80 Postpositions...57 Determiners...77 Pronouns...65 Numerals...68 Nouns...4852 ProperNouns...6463 AdjectivePrefixes...2 Adjectives...1320 Adverbs...457 Copula...8 Verbs...1328 Abbreviations...133 Interjections...48 Punctuation...22 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A5 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-SUFFIX Morphotaxing... ADJ Morphotaxing... ADJ-COMMON Morphotaxing... ADJ-LEVELS Morphotaxing... ADV Morphotaxing... ADV-ABL Morphotaxing... ADV-ABL-REG Morphotaxing... ADV-KI Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-ABL Morphotaxing... ADV-WITH-ABL-REG Morphotaxing... ADV-WITH-IRREGULAR-KI Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-ABL Morphotaxing... ADVITG Morphotaxing... ADVL Morphotaxing... ATTR Morphotaxing... Abbreviations Morphotaxing... AdjectivePrefixes Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-DEFAULT Morphotaxing... CASES-PX12SG Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-CHI Morphotaxing... CLIT-COP Morphotaxing... CLIT-GANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-NONPRED Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-NO-BI Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DAGI Morphotaxing... DAY Morphotaxing... DET-DEM Morphotaxing... DET-DEM-L Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EXI Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GEN-POS Morphotaxing... GEN-POS-PX12SG Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IMP Morphotaxing... INTERJ Morphotaxing... IRREGULAR-KI Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... LUU-SUFFIX Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL Morphotaxing... N-INFL-3PX-COMPOUND Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N-INFL-KI Morphotaxing... N-INFL-NKI Morphotaxing... N-INFL-PL Morphotaxing... N-INFL-SG Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N6 Morphotaxing... NAT Morphotaxing... NIKI Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-MF Morphotaxing... NP-COG-COMMON Morphotaxing... NP-COG-F Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-CLUSTER Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSION Morphotaxing... POSSESSION-ENDINGS Morphotaxing... POST Morphotaxing... POST-DECL Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRED Morphotaxing... PRN-NEG Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-AL Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-L Morphotaxing... PRON-DEM-PL Morphotaxing... PRON-DEM-TIGIL Morphotaxing... PRON-IND Morphotaxing... PRON-IND-POSS Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-PERS-AL Morphotaxing... PRON-PERS-EN Morphotaxing... PRON-PERS-IZ Morphotaxing... PRON-PERS-PLURALS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-COMMON Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-CLIT Morphotaxing... V-CLIT-BI Morphotaxing... V-CLIT-OTHER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-INFL-ASIF Morphotaxing... V-INFL-COMMON Morphotaxing... V-INFL-COMMON-SECOND Morphotaxing... V-INFL-FINITE Morphotaxing... V-INFL-IV Morphotaxing... V-INFL-IV-IRREG-CAUS Morphotaxing... V-INFL-IV-NO-CAUS Morphotaxing... V-INFL-NON-FINITE Morphotaxing... V-INFL-NON-FINITE-IRREG Morphotaxing... V-INFL-NON-FINITE-REG Morphotaxing... V-INFL-TV Morphotaxing... V-INFL-TV-IRREG-CAUS Morphotaxing... V-INFL-TV-NO-CAUS Morphotaxing... V-INFL-TV-NOPASS Morphotaxing... V-INFL-TV-PASS Morphotaxing... V-INFL-TV-SHORT Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-SUF Morphotaxing... V-PERS-COP-SUF-NOP3 Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PRES Morphotaxing... VAUX-INFL Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-kir.kir.twol -o .deps/kir.twol.hfst | |
Reading input from apertium-kir.kir.twol. | |
Writing output to .deps/kir.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kir.LR.lexc.hfst -2 .deps/kir.twol.hfst | hfst-invert -o .deps/kir.LR.hfst | |
hfst-twolc apertium-kir.kir.twoc -o .deps/kir.twoc.hfst | |
Reading input from apertium-kir.kir.twoc. | |
Writing output to .deps/kir.twoc.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kir.LR.hfst -2 .deps/kir.twoc.hfst | hfst-fst2fst -w -o kir.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<cm>") in | |
transducer in file .deps/kir.LR.hfst which are not found on the | |
input tapes of transducers in file .deps/kir.twoc.hfst. | |
cat apertium-kir.kir.lexc | grep -v 'Dir/LR' > .deps/kir.RL.lexc | |
hfst-lexc -W -v .deps/kir.RL.lexc -o .deps/kir.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kir.RL.lexc, writing to .deps/kir.RL.lexc.hfst | |
Parsing lexc file .deps/kir.RL.lexc | |
Root...19 CASE-NONOM...5 CASE-ETC-NONOM...1 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM-DIGIT...19 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...13 DIGITLEX...10 CASES-DEFAULT...5 CASES...2 CASES-PX12SG...2 NIKI...2 DAY...5 GEN-POS...4 GEN-POS-PX12SG...3 POSSESSION...2 POSSESSION-ENDINGS...7 VOL-ENDINGS...8 EXI...3 ABESSIVE-SUFFIX...1 LUU-SUFFIX...1 SUBST-COMMON...5 N1-ABBR...3 N-INFL-COMMON...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N-INFL-SG...5 N-INFL-PL...4 N1...1 N6...1 N-INFL...2 N-INFL-KI...2 N-INFL-NKI...2 N-COMPOUND-PX-COMMON...2 N-INFL-3PX-COMPOUND...2 GER-INFL...3 NP-ORG-COMPOUND...1 ADV-LANG...2 NP-TOP-ASSR...2 NP-TOP...2 NP-TOP-CLUSTER...1 NP-TOP-ABBR...2 NP-COMMON...1 NP-COG-COMMON...2 NP-COG-IN...2 NP-COG-OB...2 NP-COG-MF...1 NP-COG-M...1 NP-COG-F...1 NP-ANT-M...2 NP-ANT-F...2 NP-ANT-MF...2 NP-PAT-VICH...2 NP-ORG...2 NP-ORG-LAT...3 NP-TOP-COMPOUND...2 NAT...5 NUM-COMMON...2 NUM-ROMAN...1 NUM...3 NUM-ITG...3 NP-AL-PL...3 NP-AL...2 ADJ-LEVELS...2 A1...7 A2...5 A3...2 A4...1 A5...3 A6...3 CLIT...2 SUBST...1 ADJ-COMMON...2 DAGI...3 V-ADJ...2 ATTR...2 ADJ...4 KI...2 ADV-KI...1 IRREGULAR-KI...2 ADV-WITH-KI-ABL...3 ADV-WITH-KI...2 ADV-WITH-ABL...2 ADV-WITH-ABL-REG...2 ADV-WITH-IRREGULAR-KI...1 ADV-ABL...1 ADV-ABL-REG...1 ADVL...2 ADV...1 ADVITG...1 POST...1 POST-DECL...2 CA...1 CS...1 CC...1 POSTADV...1 ABBR...1 INTERJ...1 DET-DEM...1 DET-DEM-L...1 DET-IND...1 DET-QNT...1 DET-REF...1 PRON-DEM-PL...2 PRON-DEM-BUL...14 PRON-DEM-L...14 PRON-DEM-AL...14 PRON-DEM-TIGIL...13 PRON-PERS-EN...9 PRON-PERS-IZ...9 PRON-PERS-AL...9 PRON-PERS-PLURALS...9 PRON-ITG...1 PRON-ITG-QANDAY...5 PRON-REF-ADV...2 PRON-REFL...8 PRON-IND...2 PRON-IND-POSS...1 PRON-DEM...2 PRON-QNT...2 PRON-QNT-POSS...1 PRN-NEG...1 PRON-RECIP...1 PRON-COLL...3 CLIT-QST-NO-BI...4 CLIT-QST...2 CLIT-MODASS...2 CLIT-GANA-ETC...1 CLITICS-NO-COP...3 CLITICS-INCL-COP...2 CLIT-COP...1 PRED...3 CLIT-NONPRED...2 V-CLIT-BI...2 V-CLIT-OTHER...7 V-CLIT...2 V-PERS-COP...1 V-PERS-COP-SUF...3 V-PERS-COP-SUF-NOP3...6 V-PERS-PAST...8 V-PERS-COND...8 V-PERS-PRES...10 V-INFL-COMMON...2 V-INFL-COMMON-SECOND...4 V-INFL-NON-FINITE...3 V-INFL-NON-FINITE-IRREG...18 IMP...2 CLIT-CHI...1 V-INFL-NON-FINITE-REG...32 V-INFL-FINITE...3 V-FINITE-REGULAR_NEGATIVE...4 V-FINITE-IRREGULAR_NEGATIVE...12 V-INFL-ASIF...4 V-INFL-TV-SHORT...6 V-INFL-TV...6 V-INFL-TV-NOPASS...1 V-INFL-TV-PASS...2 V-INFL-IV...4 V-INFL-TV-NO-CAUS...2 V-INFL-IV-NO-CAUS...1 V-INFL-TV-IRREG-CAUS...3 V-INFL-IV-IRREG-CAUS...3 VAUX-INFL...1 Miscellaneous...4 Postadverbs...9 Conjunctions...82 Postpositions...56 Determiners...68 Pronouns...59 Numerals...68 Nouns...4779 ProperNouns...6449 AdjectivePrefixes...1 Adjectives...1268 Adverbs...444 Copula...11 Verbs...1316 Abbreviations...131 Interjections...45 Punctuation...22 Digits...5 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... A5 Morphotaxing... A6 Morphotaxing... ABBR Morphotaxing... ABESSIVE-SUFFIX Morphotaxing... ADJ Morphotaxing... ADJ-COMMON Morphotaxing... ADJ-LEVELS Morphotaxing... ADV Morphotaxing... ADV-ABL Morphotaxing... ADV-ABL-REG Morphotaxing... ADV-KI Morphotaxing... ADV-LANG Morphotaxing... ADV-WITH-ABL Morphotaxing... ADV-WITH-ABL-REG Morphotaxing... ADV-WITH-IRREGULAR-KI Morphotaxing... ADV-WITH-KI Morphotaxing... ADV-WITH-KI-ABL Morphotaxing... ADVITG Morphotaxing... ADVL Morphotaxing... ATTR Morphotaxing... Abbreviations Morphotaxing... AdjectivePrefixes Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-DEFAULT Morphotaxing... CASES-PX12SG Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-CHI Morphotaxing... CLIT-COP Morphotaxing... CLIT-GANA-ETC Morphotaxing... CLIT-MODASS Morphotaxing... CLIT-NONPRED Morphotaxing... CLIT-QST Morphotaxing... CLIT-QST-NO-BI Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DAGI Morphotaxing... DAY Morphotaxing... DET-DEM Morphotaxing... DET-DEM-L Morphotaxing... DET-IND Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EXI Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GEN-POS Morphotaxing... GEN-POS-PX12SG Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... IMP Morphotaxing... INTERJ Morphotaxing... IRREGULAR-KI Morphotaxing... Interjections Morphotaxing... KI Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... LUU-SUFFIX Morphotaxing... Miscellaneous Morphotaxing... N-COMPOUND-PX-COMMON Morphotaxing... N-INFL Morphotaxing... N-INFL-3PX-COMPOUND Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N-INFL-KI Morphotaxing... N-INFL-NKI Morphotaxing... N-INFL-PL Morphotaxing... N-INFL-SG Morphotaxing... N1 Morphotaxing... N1-ABBR Morphotaxing... N6 Morphotaxing... NAT Morphotaxing... NIKI Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-ANT-MF Morphotaxing... NP-COG-COMMON Morphotaxing... NP-COG-F Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND Morphotaxing... NP-ORG-LAT Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-ASSR Morphotaxing... NP-TOP-CLUSTER Morphotaxing... NP-TOP-COMPOUND Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ITG Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSION Morphotaxing... POSSESSION-ENDINGS Morphotaxing... POST Morphotaxing... POST-DECL Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PRED Morphotaxing... PRN-NEG Morphotaxing... PRON-COLL Morphotaxing... PRON-DEM Morphotaxing... PRON-DEM-AL Morphotaxing... PRON-DEM-BUL Morphotaxing... PRON-DEM-L Morphotaxing... PRON-DEM-PL Morphotaxing... PRON-DEM-TIGIL Morphotaxing... PRON-IND Morphotaxing... PRON-IND-POSS Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-QANDAY Morphotaxing... PRON-PERS-AL Morphotaxing... PRON-PERS-EN Morphotaxing... PRON-PERS-IZ Morphotaxing... PRON-PERS-PLURALS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-POSS Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-COMMON Morphotaxing... SUBST-NONOM Morphotaxing... V-ADJ Morphotaxing... V-CLIT Morphotaxing... V-CLIT-BI Morphotaxing... V-CLIT-OTHER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-INFL-ASIF Morphotaxing... V-INFL-COMMON Morphotaxing... V-INFL-COMMON-SECOND Morphotaxing... V-INFL-FINITE Morphotaxing... V-INFL-IV Morphotaxing... V-INFL-IV-IRREG-CAUS Morphotaxing... V-INFL-IV-NO-CAUS Morphotaxing... V-INFL-NON-FINITE Morphotaxing... V-INFL-NON-FINITE-IRREG Morphotaxing... V-INFL-NON-FINITE-REG Morphotaxing... V-INFL-TV Morphotaxing... V-INFL-TV-IRREG-CAUS Morphotaxing... V-INFL-TV-NO-CAUS Morphotaxing... V-INFL-TV-NOPASS Morphotaxing... V-INFL-TV-PASS Morphotaxing... V-INFL-TV-SHORT Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-SUF Morphotaxing... V-PERS-COP-SUF-NOP3 Morphotaxing... V-PERS-PAST Morphotaxing... V-PERS-PRES Morphotaxing... VAUX-INFL Morphotaxing... VOL-ENDINGS Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/kir.RL.lexc.hfst -2 .deps/kir.twol.hfst | hfst-invert -o .deps/kir.RL.hfst | |
hfst-compose-intersect -1 .deps/kir.RL.hfst -2 .deps/kir.twoc.hfst | hfst-invert | hfst-fst2fst -w -o kir.autogen.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<cop>") in | |
transducer in file .deps/kir.RL.hfst which are not found on the | |
input tapes of transducers in file .deps/kir.twoc.hfst. | |
lt-comp lr apertium-kir.post-kir.dix kir.autopgen.bin | |
main@standard 9 92 | |
hfst-fst2txt kir.automorf.hfst | gzip -9 -c -n > kir.automorf.att.gz | |
zcat < kir.automorf.att.gz > .deps/kir.automorf.att | |
lt-comp lr .deps/kir.automorf.att kir.automorf.bin | |
main@standard 27964 61299 | |
final@inconditional 878 2557 | |
hfst-fst2txt kir.autogen.hfst | gzip -9 -c -n > kir.autogen.att.gz | |
zcat < kir.autogen.att.gz > .deps/kir.autogen.att | |
lt-comp lr .deps/kir.autogen.att kir.autogen.bin | |
main@standard 22968 51592 | |
final@inconditional 803 2211 | |
/usr/bin/cg-comp apertium-kir.kir.rlx kir.rlx.bin | |
Sections: 3, Rules: 71, Sets: 102, Tags: 126 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tyv | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-tyv.pc | |
test -z "tyv.automorf.hfst tyv.autogen.hfst tyv.automorf.bin tyv.autogen.bin tyv.autopgen.bin tyv.automorf.att.gz tyv.autogen.att.gz tyv.rlx.bin" || rm -f tyv.automorf.hfst tyv.autogen.hfst tyv.automorf.bin tyv.autogen.bin tyv.autopgen.bin tyv.automorf.att.gz tyv.autogen.att.gz tyv.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-tyv.tyv.lexc | grep -v 'Dir/RL' > .deps/tyv.LR.lexc | |
hfst-lexc .deps/tyv.LR.lexc -o .deps/tyv.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tyv.LR.lexc, writing to .deps/tyv.LR.lexc.hfst | |
Parsing lexc file .deps/tyv.LR.lexc | |
Root...17 SQRD...5 NUM-DIGIT...39 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-COP...5 CLIT-IMPER...2 CASES...2 CASES-NOMONLY...1 CASE-NONOM...7 CASES-ETC...2 CASES-ETC-NONOM...2 POSS-REAL...5 POSS-NONOM...5 GENPOSS-ETC...3 N-INFL-COMMON...2 N-INFL-COMMON-NODER...2 SUBST...2 ATTR-SUBST...3 N1...2 N5...2 N6...2 N7...4 NP-COMMON...2 NP-TOP...2 NP-TOP-RUS...2 NP-TOP-ABBR...3 NP-TOP-SK...2 NP-TOP-PX...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-COG-IN...3 NP-COG-SKIJ...2 NP-COG-M...1 NP-COG-OGLU...1 NP-COG-MF...1 NP-PAT-M...2 NP-PAT-VICH...4 NP-AL...1 NP-AL-PX...1 NP-AL-ABBR...2 V-PERS-S1...7 V-PERS-S2...7 V-PERS-COND...6 V-PERS-LIM...6 V-FINITE-IRREGULAR_NEGATIVE-AR...3 V-FINITE-IRREGULAR_NEGATIVE-IR...3 V-FINITE-REGULAR_NEGATIVE...8 V-NONFINITE-REGULAR_NEGATIVE...23 V-NONFINITE-IRREGULAR_NEGATIVE-AR...9 V-NONFINITE-IRREGULAR_NEGATIVE-IR...8 V-COMMON-AR...6 V-COMMON...6 V-DER...5 V-IV...2 V-TV...2 V-TD...1 V-TD-AR...1 V-IV-AR...2 V-TV-AR...2 VAUX-AR...1 VAUX-IR...1 NUM-COMMON...2 NUM...5 NUM-COLL...1 NUM-ROMAN...1 PRON-PERS-MEN...10 PRON-PERS-SEN...10 PRON-PERS-OL...11 PRON-PERS-OL-KIZI...1 PRON-DEM-OL...10 PRON-PERS-BIS...10 PRON-PERS-SILER...9 PRON-PERS-OLAR...9 PRON-DEM-DOO...18 PRON-DEM-BO...8 PRON-REF-ADV...1 PRON-REFL...8 PRON-ITG-TJYY...10 PRON-ITG...1 PRON-DAA-COMMON...6 PRON-NEG-TJYY-DAA...2 PRON-NEG-KYM-DAA...2 PRON-QNT...1 DET-ITG...1 DET-QNT...1 DET-IND...1 DET-DEM...1 DET-DEF...1 A1...2 A4...2 ADV-ITG...1 ADV...1 CC...1 CA...1 POST...1 INTERJ...1 ABBR-SQ...3 ABBR-KG...5 ABBR...1 ABBR-INIT...30 Copula...11 Miscellaneous...20 Conjunctions...18 Postpositions...28 Determiners...26 Pronouns...31 Numerals...63 Nouns...4217 ProperNouns...4192 Adjectives...1603 Adverbs...128 Verbs...1398 Interjections...13 Abbreviations...68 Punctuation...26 Digits...7 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABBR-KG Morphotaxing... ABBR-SQ Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-ETC-NONOM Morphotaxing... CASES-NOMONLY Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-IMPER Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEF Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... GENPOSS-ETC Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NODER Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... N7 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-AL-PX Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COG-OGLU Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-COMMON Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-PX Morphotaxing... NP-TOP-RUS Morphotaxing... NP-TOP-SK Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSS-NONOM Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DAA-COMMON Morphotaxing... PRON-DEM-BO Morphotaxing... PRON-DEM-DOO Morphotaxing... PRON-DEM-OL Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-TJYY Morphotaxing... PRON-NEG-KYM-DAA Morphotaxing... PRON-NEG-TJYY-DAA Morphotaxing... PRON-PERS-BIS Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-OL-KIZI Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SILER Morphotaxing... PRON-QNT Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... V-COMMON Morphotaxing... V-COMMON-AR Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE-AR Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE-IR Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE-IR Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-LIM Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TD Morphotaxing... V-TD-AR Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... VAUX-AR Morphotaxing... VAUX-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-tyv.tyv.twol -o .deps/tyv.twol.hfst | |
Reading input from apertium-tyv.tyv.twol. | |
Writing output to .deps/tyv.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "Intervocalic coronal fricative voicing at a morpheme boundary SUBCASE: Cx=с Cy=з" and "delete с in some clusters". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. р:р {i}:ө _ с: {☭}: >: {y}:ү __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "Intervocalic т voicing at a morpheme boundary" and "ст cluster reduction when following morpheme". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. с:с {I}:ө с: {y}: с: _ ь: {☭}: >: {y}:ү __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tyv.LR.lexc.hfst -2 .deps/tyv.twol.hfst -o .deps/tyv.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tyv.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o tyv.automorf.hfst | |
cat apertium-tyv.tyv.lexc | grep -v 'Dir/LR' > .deps/tyv.RL.lexc | |
hfst-lexc .deps/tyv.RL.lexc -o .deps/tyv.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tyv.RL.lexc, writing to .deps/tyv.RL.lexc.hfst | |
Parsing lexc file .deps/tyv.RL.lexc | |
Root...17 SQRD...3 NUM-DIGIT...16 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT-COP...4 CLIT-IMPER...2 CASES...2 CASES-NOMONLY...1 CASE-NONOM...6 CASES-ETC...2 CASES-ETC-NONOM...2 POSS-REAL...5 POSS-NONOM...5 GENPOSS-ETC...3 N-INFL-COMMON...2 N-INFL-COMMON-NODER...2 SUBST...2 ATTR-SUBST...3 N1...2 N5...2 N6...1 N7...3 NP-COMMON...2 NP-TOP...2 NP-TOP-RUS...2 NP-TOP-ABBR...3 NP-TOP-SK...2 NP-TOP-PX...2 NP-ANT-M...2 NP-ANT-F...2 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-COG-IN...3 NP-COG-SKIJ...2 NP-COG-M...1 NP-COG-OGLU...1 NP-COG-MF...1 NP-PAT-M...2 NP-PAT-VICH...4 NP-AL...1 NP-AL-PX...1 NP-AL-ABBR...2 V-PERS-S1...6 V-PERS-S2...6 V-PERS-COND...6 V-PERS-LIM...6 V-FINITE-IRREGULAR_NEGATIVE-AR...3 V-FINITE-IRREGULAR_NEGATIVE-IR...3 V-FINITE-REGULAR_NEGATIVE...7 V-NONFINITE-REGULAR_NEGATIVE...23 V-NONFINITE-IRREGULAR_NEGATIVE-AR...9 V-NONFINITE-IRREGULAR_NEGATIVE-IR...8 V-COMMON-AR...6 V-COMMON...6 V-DER...5 V-IV...2 V-TV...2 V-TD...1 V-TD-AR...1 V-IV-AR...2 V-TV-AR...2 VAUX-AR...1 VAUX-IR...1 NUM-COMMON...2 NUM...3 NUM-COLL...1 NUM-ROMAN...1 PRON-PERS-MEN...8 PRON-PERS-SEN...8 PRON-PERS-OL...8 PRON-PERS-OL-KIZI...1 PRON-DEM-OL...8 PRON-PERS-BIS...8 PRON-PERS-SILER...8 PRON-PERS-OLAR...8 PRON-DEM-DOO...7 PRON-DEM-BO...8 PRON-REF-ADV...1 PRON-REFL...6 PRON-ITG-TJYY...8 PRON-ITG...1 PRON-DAA-COMMON...6 PRON-NEG-TJYY-DAA...2 PRON-NEG-KYM-DAA...2 PRON-QNT...1 DET-ITG...1 DET-QNT...1 DET-IND...1 DET-DEM...1 DET-DEF...1 A1...2 A4...1 ADV-ITG...1 ADV...1 CC...1 CA...1 POST...1 INTERJ...1 ABBR-SQ...3 ABBR-KG...3 ABBR...1 ABBR-INIT...30 Copula...3 Miscellaneous...16 Conjunctions...18 Postpositions...27 Determiners...26 Pronouns...29 Numerals...62 Nouns...4203 ProperNouns...4183 Adjectives...1602 Adverbs...127 Verbs...1387 Interjections...13 Abbreviations...61 Punctuation...26 Digits...7 NP-UNK...1 GUESS-QUEUE...1 Guesser...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABBR-KG Morphotaxing... ABBR-SQ Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE-NONOM Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-ETC-NONOM Morphotaxing... CASES-NOMONLY Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-IMPER Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEF Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... GENPOSS-ETC Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NODER Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... N7 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-AL-PX Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COG-OGLU Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-COMMON Morphotaxing... NP-PAT-M Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-PX Morphotaxing... NP-TOP-RUS Morphotaxing... NP-TOP-SK Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-COLL Morphotaxing... NUM-COMMON Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSS-NONOM Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DAA-COMMON Morphotaxing... PRON-DEM-BO Morphotaxing... PRON-DEM-DOO Morphotaxing... PRON-DEM-OL Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-TJYY Morphotaxing... PRON-NEG-KYM-DAA Morphotaxing... PRON-NEG-TJYY-DAA Morphotaxing... PRON-PERS-BIS Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-OL-KIZI Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SILER Morphotaxing... PRON-QNT Morphotaxing... PRON-REF-ADV Morphotaxing... PRON-REFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... V-COMMON Morphotaxing... V-COMMON-AR Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE-AR Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE-IR Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE-IR Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-COND Morphotaxing... V-PERS-LIM Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TD Morphotaxing... V-TD-AR Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... VAUX-AR Morphotaxing... VAUX-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/tyv.RL.lexc.hfst -2 .deps/tyv.twol.hfst -o .deps/tyv.RL.hfst | |
hfst-fst2fst -O .deps/tyv.RL.hfst -o tyv.autogen.hfst | |
hfst-fst2txt tyv.automorf.hfst | gzip -9 -c -n > tyv.automorf.att.gz | |
zcat < tyv.automorf.att.gz > .deps/tyv.automorf.att | |
lt-comp lr .deps/tyv.automorf.att tyv.automorf.bin | |
main@standard 16997 36026 | |
final@inconditional 337 961 | |
hfst-fst2txt tyv.autogen.hfst | gzip -9 -c -n > tyv.autogen.att.gz | |
zcat < tyv.autogen.att.gz > .deps/tyv.autogen.att | |
lt-comp lr .deps/tyv.autogen.att tyv.autogen.bin | |
main@standard 62158 106767 | |
final@inconditional 1115 1830 | |
lt-comp lr apertium-tyv.post-tyv.dix tyv.autopgen.bin | |
main@standard 5 8 | |
/usr/bin/cg-comp apertium-tyv.tyv.rlx tyv.rlx.bin | |
Sections: 2, Rules: 34, Sets: 60, Tags: 102 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-uig | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for vislcg3... yes | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-uig.pc | |
test -z "uig.automorf.hfst uig.autogen.hfst uig_guesser.automorf.hfst uig.automorf.bin uig.autogen.bin uig.autopgen.bin uig.automorf.bin uig_guesser.automorf.bin uig.autogen.bin uig.automorf.att.gz uig.autogen.att.gz uig.rlx.bin" || rm -f uig.automorf.hfst uig.autogen.hfst uig_guesser.automorf.hfst uig.automorf.bin uig.autogen.bin uig.autopgen.bin uig.automorf.bin uig_guesser.automorf.bin uig.autogen.bin uig.automorf.att.gz uig.autogen.att.gz uig.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-uig.uig.lexc | grep -v 'Dir/RL' > .deps/uig.LR.lexc | |
hfst-lexc .deps/uig.LR.lexc -o .deps/uig.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/uig.LR.lexc, writing to .deps/uig.LR.lexc.hfst | |
Parsing lexc file .deps/uig.LR.lexc | |
Root...14 CLITICS...8 COMP...1 POST-SUFFIX...2 CASE...17 CASE-2...8 POSSESSION...13 SUBST-2...13 NP-COMMON...1 N-COMMON...3 N1...2 NP-AL...1 NP-COG-MF...1 NP-ANT-M...1 NP-ANT-F...1 NP-TOP...1 NP-ORG...1 NUM...5 PRON-DEM-CASE-PL...6 PRON-DEM-CASE...9 PRON-PERS-AN...7 PRON-PERS-MAN...4 PRON-PERS-SAN...3 PRON-PERS-SIZ...1 PRON-PERS-SILI...1 PRON-PERS-U...6 PRON-PERS-U2...4 PRON-PERS-U3...4 PRON-PERS-BIZ...2 PRON-PERS-SANLAR...1 PRON-PERS-SILAR...1 PRON-PERS-SIZLAR...1 PRON-PERS-ULAR...1 PRON-REFL-INFL...11 PRON-REFL...1 PRON-DEM-COMMON...2 PRON-DEM-BU...1 PRON-DEM-SHU...1 PRON-DEM-U...1 PRON-MISC...1 PRON-PERS...1 PRON-NEG...1 PRON-ADV...1 PRON-ITG...1 DET-MISC...1 PRON-QNT...1 DET-QNT...1 V-IFI-PERS...7 V-AOR-PERS...7 V-AOR-QST-PERS...9 V-COND-PERS...7 V-IFI...1 V-PAST-PERS...8 N-PERS...9 V-COP-PERS...7 PP-PERS...8 V-PAST...6 V-PRC...3 V-GER...16 V-ABIL-COMMON...6 V-ABIL-NEG-POS...1 V-ABIL...2 V-AOR...4 V-COND...1 V-AORP...2 V-AORP-PERS...7 V-PROG...4 V-FUT...2 V-PROG-PERS...7 IMP-PERS...15 V-IMP...1 V-IVER...2 V-NEG...1 V-WHEN...2 V-NEG-COMMON...14 V-COMMON...14 V-AUX...1 V-IV...2 V-TV...2 V-TD...1 DET-ITG...1 DET-DEM...1 CC...1 CS...1 CA...1 SYM...1 POST...1 ADV...3 ADV-ITG...1 INTERJ...1 A1...5 A2...3 A4...3 COP...3 Conjunctions...9 Postpositions...7 Pronouns...34 Determiners...21 Numerals...30 Nouns...1215 Verbs...410 Copula...5 Adjectives...21 Adverbs...23 Interjections...3 Check...23605 Symbols...1 Punctuation...48 DIGITLEX...2 BARB...Compiling... Warning: Sublexicons defined but not used | |
V-AUX | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A4 Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-2 Morphotaxing... CC Morphotaxing... CLITICS Morphotaxing... COMP Morphotaxing... COP Morphotaxing... CS Morphotaxing... Check Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-ITG Morphotaxing... DET-MISC Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... IMP-PERS Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... N-COMMON Morphotaxing... N-PERS Morphotaxing... N1 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSSESSION Morphotaxing... POST Morphotaxing... POST-SUFFIX Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-CASE Morphotaxing... PRON-DEM-CASE-PL Morphotaxing... PRON-DEM-COMMON Morphotaxing... PRON-DEM-SHU Morphotaxing... PRON-DEM-U Morphotaxing... PRON-ITG Morphotaxing... PRON-MISC Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-AN Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-MAN Morphotaxing... PRON-PERS-SAN Morphotaxing... PRON-PERS-SANLAR Morphotaxing... PRON-PERS-SILAR Morphotaxing... PRON-PERS-SILI Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SIZLAR Morphotaxing... PRON-PERS-U Morphotaxing... PRON-PERS-U2 Morphotaxing... PRON-PERS-U3 Morphotaxing... PRON-PERS-ULAR Morphotaxing... PRON-QNT Morphotaxing... PRON-REFL Morphotaxing... PRON-REFL-INFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST-2 Morphotaxing... SYM Morphotaxing... Symbols Morphotaxing... V-ABIL Morphotaxing... V-ABIL-COMMON Morphotaxing... V-ABIL-NEG-POS Morphotaxing... V-AOR Morphotaxing... V-AOR-PERS Morphotaxing... V-AOR-QST-PERS Morphotaxing... V-AORP Morphotaxing... V-AORP-PERS Morphotaxing... V-AUX Morphotaxing... V-COMMON Morphotaxing... V-COND Morphotaxing... V-COND-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-FUT Morphotaxing... V-GER Morphotaxing... V-IFI Morphotaxing... V-IFI-PERS Morphotaxing... V-IMP Morphotaxing... V-IV Morphotaxing... V-IVER Morphotaxing... V-NEG Morphotaxing... V-NEG-COMMON Morphotaxing... V-PAST Morphotaxing... V-PAST-PERS Morphotaxing... V-PRC Morphotaxing... V-PROG Morphotaxing... V-PROG-PERS Morphotaxing... V-TD Morphotaxing... V-TV Morphotaxing... V-WHEN Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-uig.uig.twol -o .deps/uig.twol.hfst | |
Reading input from apertium-uig.uig.twol. | |
Writing output to .deps/uig.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "{A} becomes ە in front vowel contexts" and "{A} deletes after vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. {e}: ۋ:ۋ ې:ې {a}: {e}: >: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
There is a <=-rule conflict between "{G} to گ after front vowel" and "{G} to ق after voiceless consonant". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. ۋ:ۋ ھ:ھ {ğ}: {e}: ۋ:ۋ ھ:ھ {ğ}: {a}: {ğ}: >: ا:ې ۋ:ۋ {e}: {q}: >: _ __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/uig.LR.lexc.hfst -2 .deps/uig.twol.hfst -o .deps/uig.LR.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{乚}") in | |
transducer in file .deps/uig.LR.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uig.twol.hfst. | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-lexc dev/cjk.lexc -o .deps/cjk.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Root...1 CharsLoop...2 Chars... | |
hfst-compose-intersect -1 .deps/uig.LR.hfst -2 .deps/spellrelax.hfst | hfst-substitute -f '{乚}:{乚}' -T .deps/cjk.hfst | hfst-invert | hfst-fst2fst -O -o uig.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{🂡}") in | |
transducer in file .deps/uig.LR.hfst which are not found on the | |
input tapes of transducers in file .deps/spellrelax.hfst. | |
cat apertium-uig.uig.lexc | grep -v 'Dir/LR' > .deps/uig.RL.lexc | |
hfst-lexc .deps/uig.RL.lexc -o .deps/uig.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/uig.RL.lexc, writing to .deps/uig.RL.lexc.hfst | |
Parsing lexc file .deps/uig.RL.lexc | |
Root...14 CLITICS...8 COMP...1 POST-SUFFIX...2 CASE...17 CASE-2...8 POSSESSION...8 SUBST-2...8 NP-COMMON...1 N-COMMON...3 N1...2 NP-AL...1 NP-COG-MF...1 NP-ANT-M...1 NP-ANT-F...1 NP-TOP...1 NP-ORG...1 NUM...4 PRON-DEM-CASE-PL...6 PRON-DEM-CASE...9 PRON-PERS-AN...5 PRON-PERS-MAN...3 PRON-PERS-SAN...3 PRON-PERS-SIZ...1 PRON-PERS-SILI...1 PRON-PERS-U...6 PRON-PERS-U2...4 PRON-PERS-U3...4 PRON-PERS-BIZ...1 PRON-PERS-SANLAR...1 PRON-PERS-SILAR...1 PRON-PERS-SIZLAR...1 PRON-PERS-ULAR...1 PRON-REFL-INFL...10 PRON-REFL...1 PRON-DEM-COMMON...2 PRON-DEM-BU...1 PRON-DEM-SHU...1 PRON-DEM-U...1 PRON-MISC...1 PRON-PERS...1 PRON-NEG...1 PRON-ADV...1 PRON-ITG...1 DET-MISC...1 PRON-QNT...1 DET-QNT...1 V-IFI-PERS...7 V-AOR-PERS...7 V-AOR-QST-PERS...7 V-COND-PERS...6 V-IFI...1 V-PAST-PERS...7 N-PERS...9 V-COP-PERS...7 PP-PERS...8 V-PAST...5 V-PRC...2 V-GER...16 V-ABIL-COMMON...6 V-ABIL-NEG-POS...1 V-ABIL...2 V-AOR...3 V-COND...1 V-AORP...2 V-AORP-PERS...7 V-PROG...2 V-FUT...2 V-PROG-PERS...7 IMP-PERS...7 V-IMP...1 V-IVER...1 V-NEG...1 V-WHEN...2 V-NEG-COMMON...14 V-COMMON...14 V-AUX...1 V-IV...2 V-TV...2 V-TD...1 DET-ITG...1 DET-DEM...1 CC...1 CS...1 CA...1 SYM...1 POST...1 ADV...3 ADV-ITG...1 INTERJ...1 A1...5 A2...3 A4...3 COP...3 Conjunctions...9 Postpositions...7 Pronouns...26 Determiners...21 Numerals...27 Nouns...1200 Verbs...396 Copula...4 Adjectives...21 Adverbs...23 Interjections...3 Check...23542 Symbols...1 Punctuation...48 DIGITLEX...2 BARB...Compiling... Warning: Sublexicons defined but not used | |
PRON-PERS-SANLAR PRON-PERS-SILI V-AUX | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A4 Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-2 Morphotaxing... CC Morphotaxing... CLITICS Morphotaxing... COMP Morphotaxing... COP Morphotaxing... CS Morphotaxing... Check Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-ITG Morphotaxing... DET-MISC Morphotaxing... DET-QNT Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... IMP-PERS Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... N-COMMON Morphotaxing... N-PERS Morphotaxing... N1 Morphotaxing... NP-AL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COMMON Morphotaxing... NP-ORG Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... POSSESSION Morphotaxing... POST Morphotaxing... POST-SUFFIX Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-DEM-CASE Morphotaxing... PRON-DEM-CASE-PL Morphotaxing... PRON-DEM-COMMON Morphotaxing... PRON-DEM-SHU Morphotaxing... PRON-DEM-U Morphotaxing... PRON-ITG Morphotaxing... PRON-MISC Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-PERS-AN Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-MAN Morphotaxing... PRON-PERS-SAN Morphotaxing... PRON-PERS-SANLAR Morphotaxing... PRON-PERS-SILAR Morphotaxing... PRON-PERS-SILI Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-PERS-SIZLAR Morphotaxing... PRON-PERS-U Morphotaxing... PRON-PERS-U2 Morphotaxing... PRON-PERS-U3 Morphotaxing... PRON-PERS-ULAR Morphotaxing... PRON-QNT Morphotaxing... PRON-REFL Morphotaxing... PRON-REFL-INFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST-2 Morphotaxing... SYM Morphotaxing... Symbols Morphotaxing... V-ABIL Morphotaxing... V-ABIL-COMMON Morphotaxing... V-ABIL-NEG-POS Morphotaxing... V-AOR Morphotaxing... V-AOR-PERS Morphotaxing... V-AOR-QST-PERS Morphotaxing... V-AORP Morphotaxing... V-AORP-PERS Morphotaxing... V-AUX Morphotaxing... V-COMMON Morphotaxing... V-COND Morphotaxing... V-COND-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-FUT Morphotaxing... V-GER Morphotaxing... V-IFI Morphotaxing... V-IFI-PERS Morphotaxing... V-IMP Morphotaxing... V-IV Morphotaxing... V-IVER Morphotaxing... V-NEG Morphotaxing... V-NEG-COMMON Morphotaxing... V-PAST Morphotaxing... V-PAST-PERS Morphotaxing... V-PRC Morphotaxing... V-PROG Morphotaxing... V-PROG-PERS Morphotaxing... V-TD Morphotaxing... V-TV Morphotaxing... V-WHEN Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/uig.RL.lexc.hfst -2 .deps/uig.twol.hfst -o .deps/uig.RL.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{乚}") in | |
transducer in file .deps/uig.RL.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uig.twol.hfst. | |
hfst-fst2fst -O .deps/uig.RL.hfst -o uig.autogen.hfst | |
echo "" | hfst-xfst -e "source uig.guesser.hfst" -e "save stack .deps/guesser.hfst" -e "quit" | |
Defined | |
'Vow' | |
Defined | |
'Cns' | |
Defined | |
'Syll' | |
Defined | |
'Stem' | |
? bytes. 4 states, 120 arcs, ? paths | |
. | |
hfst[1]: | |
hfst-substitute -i .deps/uig.LR.lexc.hfst -o .deps/uig_guesser.lexc.hfst -f '{🂡}:{🂡}' -T .deps/guesser.hfst | |
hfst-compose-intersect -1 .deps/uig_guesser.lexc.hfst -2 .deps/uig.twol.hfst -o .deps/uig_guesser.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{乚}") in | |
transducer in file .deps/uig_guesser.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/uig.twol.hfst. | |
hfst-regexp2fst uig.restrict_guesser.hfst -o .deps/restrict_guesser.hfst | |
cat .deps/uig_guesser.hfst | hfst-invert | hfst-compose -1 - -2 .deps/restrict_guesser.hfst | hfst-invert | hfst-compose-intersect -1 - -2 .deps/spellrelax.hfst | hfst-substitute -f '{乚}:{乚}' -T .deps/cjk.hfst | hfst-invert | hfst-fst2fst -O -o uig_guesser.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{乚}") in | |
transducer in file <stdin> which are not found on the | |
input tapes of transducers in file .deps/spellrelax.hfst. | |
hfst-fst2txt uig.automorf.hfst | gzip -9 -c -n > uig.automorf.att.gz | |
zcat < uig.automorf.att.gz > .deps/uig.automorf.att | |
lt-comp lr .deps/uig.automorf.att uig.automorf.bin | |
main@standard 22643 190970 | |
final@inconditional 308 1646 | |
hfst-fst2txt uig.autogen.hfst | gzip -9 -c -n > uig.autogen.att.gz | |
zcat < uig.autogen.att.gz > .deps/uig.autogen.att | |
lt-comp lr .deps/uig.autogen.att uig.autogen.bin | |
main@standard 43990 86600 | |
final@inconditional 3047 5139 | |
lt-comp lr apertium-uig.post-uig.dix uig.autopgen.bin | |
main@standard 14 218 | |
hfst-fst2txt uig_guesser.automorf.hfst > .deps/uig_guesser.autogen.att | |
lt-comp lr .deps/uig_guesser.autogen.att uig_guesser.automorf.bin | |
main@standard 28527 2799027 | |
final@inconditional 308 1646 | |
/usr/bin/cg-comp apertium-uig.uig.rlx uig.rlx.bin | |
Sections: 1, Rules: 55, Sets: 81, Tags: 147 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-incubator/apertium-aze | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-aze.pc | |
test -z "aze.automorf.hfst aze.autogen.hfst aze.automorf.bin aze.autogen.bin aze.autopgen.bin aze.automorf.att.gz aze.autogen.att.gz aze.rlx.bin" || rm -f aze.automorf.hfst aze.autogen.hfst aze.automorf.bin aze.autogen.bin aze.autopgen.bin aze.automorf.att.gz aze.autogen.att.gz aze.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-aze.aze.lexc | grep -v 'Dir/RL' > .deps/aze.LR.lexc | |
hfst-lexc -v .deps/aze.LR.lexc -o .deps/aze.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/aze.LR.lexc, writing to .deps/aze.LR.lexc.hfst | |
Parsing lexc file .deps/aze.LR.lexc | |
Root...14 SQRD...5 NUM-DIGIT...11 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT...2 CLIT-NOPERS2...2 COPULA-LOCATIVE...1 V-PERS-COP...2 V-NOPERS-COP...2 CLIT-GENERAL...2 CLIT-NOPERS...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...3 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 POSS-REAL...6 N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 N1...4 N2...2 N3...1 N4...1 N5...3 N6...3 NP1-TOP...3 NP2-TOP...2 NP3-TOP...2 NP4-TOP...2 NP1-ORG...3 NP2-ORG...2 NP1-ANT-M...3 NP1-ANT-F...3 NP1-COG-MF...3 NP1-AL...3 PRON-PERS...60 PRON-DEM-BU...12 PRON-ITG-NERE...7 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...6 PRON-QNT...1 PRON-NEG...1 PRON-REF-ADV...2 PRON-REF...7 PRON-ADV...1 CA...1 CS...1 CC...1 NUM...4 ADV1...3 ADV2...2 ADV3...1 A1...3 A2...2 A3...2 A4...1 AX...1 PERS-COP-PRES...7 V-PERS-COP-G2-NOSG3-FINAL...6 PERS1-NO3PL...6 PERS1...3 PERS2...7 PERS2-NO3PL...6 PERS3...7 PERS3-PAST...6 PERS4...3 PERS5...7 PERS6...2 KEN...1 REC-DIR-AR...4 REC-T-AR...4 REC-T-IR...4 REF-DIR-AR...4 REF-T-AR...4 REF-T-IR...4 IV-REC-DIR-AR...4 IV-REF-DIR-AR...4 PASS-DIR-AR...16 PASS-T-AR...16 PASS-T-IR...16 REC-DIR-IR...4 REF-DIR-IR...4 IV-REC-DIR-IR...4 IV-REF-DIR-IR...4 PASS-DIR-IR...16 CAUS-DIR-IR...12 CAUS-IR-AR...12 IV-CAUS-DIR-IR...11 CAUS-DIR-AR...12 IV-CAUS-DIR-AR...11 CAUS-T-AR...10 CAUS-T-IR...11 IMPERFECTIVE...2 NEG...1 AOR-AR...4 AOR-IR...4 AOR-IR-CONDITIONAL...4 AOR-AR-CONDITIONAL...4 ABIL-AR...9 ABIL-AR-CONDITIONAL...3 ABIL-IR...10 PRESENT-CONTINUOUS...2 PAST-CONTINUOUS...3 CONDITIONAL-CONTINUOUS...1 EVIDENTIAL-CONTINUOUS...3 FUTURE...1 FUTURE-PERFECT...2 FUTURE-EVIDENTIAL...2 FUTURE-CONDITIONAL...1 PAST...1 PAST-CONDITIONAL...1 EVIDENTIAL-PAST...2 DOUBLE-EVIDENTIAL...2 EVIDENTIAL-PERFECT...1 AORIST-AR-PERFECT...4 AORIST-IR-PERFECT...4 EVIDENTIAL-CONDITIONAL...1 CONDITIONAL...1 CONDITIONAL-PAST...1 CONDITIONAL-EVIDENTIAL...1 NECE...2 JUSSIVE...2 IMPERATIVE...1 EXHORTATIVE...1 GERUND...6 NON-FINITE...4 FINITE-VERBS-AR...21 FINITE-VERBS-IR...21 REGULAR-NEGATIVE...21 V-TV-DIR-IR...34 V-TV-IR-AR...34 V-IV-DIR-IR...33 V-TV-DIR-AR...35 V-TV-T-AR...35 V-IV-T-IR...34 V-TV-T-IR...35 V-IV-DIR-AR...34 V-IV-IR...1 V-TV-IR...1 V-TV-AR...1 V-IV-AR...1 INTERJ...1 POST...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 TIT...1 Postpositions...35 Conjunctions...107 Pronouns...20 Determiners...39 Numerals...20 Titles...2 Nouns...5335 ProperNouns...3411 Adjectives...1654 Adverbs...204 Verbs...721 Interjections...2 Punctuation...22 Digits...Compiling... Warning: Sublexicon is mentioned but not defined. (V-TD-AR) | |
Warning: Sublexicons defined but not used | |
ADV1 ADV2 COPULA-LOCATIVE DET-REF N6 V-IV-T-IR V-TV-IR-AR V-TV-T-AR V-TV-T-IR | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABIL-AR Morphotaxing... ABIL-AR-CONDITIONAL Morphotaxing... ABIL-IR Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... AOR-AR Morphotaxing... AOR-AR-CONDITIONAL Morphotaxing... AOR-IR Morphotaxing... AOR-IR-CONDITIONAL Morphotaxing... AORIST-AR-PERFECT Morphotaxing... AORIST-IR-PERFECT Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... AX Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CAUS-DIR-AR Morphotaxing... CAUS-DIR-IR Morphotaxing... CAUS-IR-AR Morphotaxing... CAUS-T-AR Morphotaxing... CAUS-T-IR Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... CLIT-NOPERS2 Morphotaxing... CONDITIONAL Morphotaxing... CONDITIONAL-CONTINUOUS Morphotaxing... CONDITIONAL-EVIDENTIAL Morphotaxing... CONDITIONAL-PAST Morphotaxing... COPULA-LOCATIVE Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DOUBLE-EVIDENTIAL Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EVIDENTIAL-CONDITIONAL Morphotaxing... EVIDENTIAL-CONTINUOUS Morphotaxing... EVIDENTIAL-PAST Morphotaxing... EVIDENTIAL-PERFECT Morphotaxing... EXHORTATIVE Morphotaxing... FINITE-VERBS-AR Morphotaxing... FINITE-VERBS-IR Morphotaxing... FUTURE Morphotaxing... FUTURE-CONDITIONAL Morphotaxing... FUTURE-EVIDENTIAL Morphotaxing... FUTURE-PERFECT Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GERUND Morphotaxing... IMPERATIVE Morphotaxing... IMPERFECTIVE Morphotaxing... INTERJ Morphotaxing... IV-CAUS-DIR-AR Morphotaxing... IV-CAUS-DIR-IR Morphotaxing... IV-REC-DIR-AR Morphotaxing... IV-REC-DIR-IR Morphotaxing... IV-REF-DIR-AR Morphotaxing... IV-REF-DIR-IR Morphotaxing... Interjections Morphotaxing... JUSSIVE Morphotaxing... KEN Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NECE Morphotaxing... NEG Morphotaxing... NON-FINITE Morphotaxing... NP1-AL Morphotaxing... NP1-ANT-F Morphotaxing... NP1-ANT-M Morphotaxing... NP1-COG-MF Morphotaxing... NP1-ORG Morphotaxing... NP1-TOP Morphotaxing... NP2-ORG Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PASS-DIR-AR Morphotaxing... PASS-DIR-IR Morphotaxing... PASS-T-AR Morphotaxing... PASS-T-IR Morphotaxing... PAST Morphotaxing... PAST-CONDITIONAL Morphotaxing... PAST-CONTINUOUS Morphotaxing... PERS-COP-PRES Morphotaxing... PERS1 Morphotaxing... PERS1-NO3PL Morphotaxing... PERS2 Morphotaxing... PERS2-NO3PL Morphotaxing... PERS3 Morphotaxing... PERS3-PAST Morphotaxing... PERS4 Morphotaxing... PERS5 Morphotaxing... PERS6 Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRESENT-CONTINUOUS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... REC-DIR-AR Morphotaxing... REC-DIR-IR Morphotaxing... REC-T-AR Morphotaxing... REC-T-IR Morphotaxing... REF-DIR-AR Morphotaxing... REF-DIR-IR Morphotaxing... REF-T-AR Morphotaxing... REF-T-IR Morphotaxing... REGULAR-NEGATIVE Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-IV-AR Morphotaxing... V-IV-DIR-AR Morphotaxing... V-IV-DIR-IR Morphotaxing... V-IV-IR Morphotaxing... V-IV-T-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-TV-AR Morphotaxing... V-TV-DIR-AR Morphotaxing... V-TV-DIR-IR Morphotaxing... V-TV-IR Morphotaxing... V-TV-IR-AR Morphotaxing... V-TV-T-AR Morphotaxing... V-TV-T-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-aze.aze.twol -o .deps/aze.twol.hfst | |
Reading input from apertium-aze.aze.twol. | |
Writing output to .deps/aze.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/aze.LR.lexc.hfst -2 .deps/aze.twol.hfst -o .deps/aze.LR.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{fi}") in | |
transducer in file .deps/aze.LR.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/aze.twol.hfst. | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/aze.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o aze.automorf.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{fi}") in | |
transducer in file .deps/aze.LR.hfst which are not found on the | |
input tapes of transducers in file .deps/spellrelax.hfst. | |
cat apertium-aze.aze.lexc | grep -v 'Dir/LR' > .deps/aze.RL.lexc | |
hfst-lexc -v .deps/aze.RL.lexc -o .deps/aze.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/aze.RL.lexc, writing to .deps/aze.RL.lexc.hfst | |
Parsing lexc file .deps/aze.RL.lexc | |
Root...14 SQRD...3 NUM-DIGIT...10 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLIT...2 CLIT-NOPERS2...2 COPULA-LOCATIVE...1 V-PERS-COP...2 V-NOPERS-COP...2 CLIT-GENERAL...2 CLIT-NOPERS...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...3 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 POSS-REAL...6 N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 N1...4 N2...2 N3...1 N4...1 N5...3 N6...3 NP1-TOP...3 NP2-TOP...2 NP3-TOP...2 NP4-TOP...2 NP1-ORG...3 NP2-ORG...2 NP1-ANT-M...3 NP1-ANT-F...3 NP1-COG-MF...3 NP1-AL...3 PRON-PERS...60 PRON-DEM-BU...12 PRON-ITG-NERE...7 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...6 PRON-QNT...1 PRON-NEG...1 PRON-REF-ADV...2 PRON-REF...7 PRON-ADV...1 CA...1 CS...1 CC...1 NUM...4 ADV1...3 ADV2...2 ADV3...1 A1...3 A2...2 A3...2 A4...1 AX...1 PERS-COP-PRES...7 V-PERS-COP-G2-NOSG3-FINAL...6 PERS1-NO3PL...6 PERS1...3 PERS2...7 PERS2-NO3PL...6 PERS3...7 PERS3-PAST...6 PERS4...3 PERS5...7 PERS6...2 KEN...1 REC-DIR-AR...4 REC-T-AR...4 REC-T-IR...4 REF-DIR-AR...4 REF-T-AR...4 REF-T-IR...4 IV-REC-DIR-AR...4 IV-REF-DIR-AR...4 PASS-DIR-AR...16 PASS-T-AR...16 PASS-T-IR...16 REC-DIR-IR...4 REF-DIR-IR...4 IV-REC-DIR-IR...4 IV-REF-DIR-IR...4 PASS-DIR-IR...16 CAUS-DIR-IR...12 CAUS-IR-AR...12 IV-CAUS-DIR-IR...11 CAUS-DIR-AR...12 IV-CAUS-DIR-AR...11 CAUS-T-AR...10 CAUS-T-IR...11 IMPERFECTIVE...2 NEG...1 AOR-AR...4 AOR-IR...4 AOR-IR-CONDITIONAL...4 AOR-AR-CONDITIONAL...4 ABIL-AR...9 ABIL-AR-CONDITIONAL...3 ABIL-IR...10 PRESENT-CONTINUOUS...2 PAST-CONTINUOUS...2 CONDITIONAL-CONTINUOUS...1 EVIDENTIAL-CONTINUOUS...2 FUTURE...1 FUTURE-PERFECT...1 FUTURE-EVIDENTIAL...2 FUTURE-CONDITIONAL...1 PAST...1 PAST-CONDITIONAL...1 EVIDENTIAL-PAST...2 DOUBLE-EVIDENTIAL...2 EVIDENTIAL-PERFECT...1 AORIST-AR-PERFECT...4 AORIST-IR-PERFECT...4 EVIDENTIAL-CONDITIONAL...1 CONDITIONAL...1 CONDITIONAL-PAST...1 CONDITIONAL-EVIDENTIAL...1 NECE...2 JUSSIVE...2 IMPERATIVE...1 EXHORTATIVE...1 GERUND...6 NON-FINITE...4 FINITE-VERBS-AR...21 FINITE-VERBS-IR...21 REGULAR-NEGATIVE...21 V-TV-DIR-IR...34 V-TV-IR-AR...34 V-IV-DIR-IR...33 V-TV-DIR-AR...35 V-TV-T-AR...35 V-IV-T-IR...34 V-TV-T-IR...35 V-IV-DIR-AR...34 V-IV-IR...1 V-TV-IR...1 V-TV-AR...1 V-IV-AR...1 INTERJ...1 POST...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 DET-REF...1 TIT...1 Postpositions...33 Conjunctions...105 Pronouns...18 Determiners...39 Numerals...19 Titles...2 Nouns...5326 ProperNouns...3390 Adjectives...1654 Adverbs...204 Verbs...721 Interjections...2 Punctuation...22 Digits...Compiling... Warning: Sublexicon is mentioned but not defined. (V-TD-AR) | |
Warning: Sublexicons defined but not used | |
ADV1 ADV2 COPULA-LOCATIVE DET-REF N6 V-IV-T-IR V-TV-IR-AR V-TV-T-AR V-TV-T-IR | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABIL-AR Morphotaxing... ABIL-AR-CONDITIONAL Morphotaxing... ABIL-IR Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... AOR-AR Morphotaxing... AOR-AR-CONDITIONAL Morphotaxing... AOR-IR Morphotaxing... AOR-IR-CONDITIONAL Morphotaxing... AORIST-AR-PERFECT Morphotaxing... AORIST-IR-PERFECT Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... AX Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CAUS-DIR-AR Morphotaxing... CAUS-DIR-IR Morphotaxing... CAUS-IR-AR Morphotaxing... CAUS-T-AR Morphotaxing... CAUS-T-IR Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... CLIT-NOPERS2 Morphotaxing... CONDITIONAL Morphotaxing... CONDITIONAL-CONTINUOUS Morphotaxing... CONDITIONAL-EVIDENTIAL Morphotaxing... CONDITIONAL-PAST Morphotaxing... COPULA-LOCATIVE Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... DOUBLE-EVIDENTIAL Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... EVIDENTIAL-CONDITIONAL Morphotaxing... EVIDENTIAL-CONTINUOUS Morphotaxing... EVIDENTIAL-PAST Morphotaxing... EVIDENTIAL-PERFECT Morphotaxing... EXHORTATIVE Morphotaxing... FINITE-VERBS-AR Morphotaxing... FINITE-VERBS-IR Morphotaxing... FUTURE Morphotaxing... FUTURE-CONDITIONAL Morphotaxing... FUTURE-EVIDENTIAL Morphotaxing... FUTURE-PERFECT Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GERUND Morphotaxing... IMPERATIVE Morphotaxing... IMPERFECTIVE Morphotaxing... INTERJ Morphotaxing... IV-CAUS-DIR-AR Morphotaxing... IV-CAUS-DIR-IR Morphotaxing... IV-REC-DIR-AR Morphotaxing... IV-REC-DIR-IR Morphotaxing... IV-REF-DIR-AR Morphotaxing... IV-REF-DIR-IR Morphotaxing... Interjections Morphotaxing... JUSSIVE Morphotaxing... KEN Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LOOP Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NECE Morphotaxing... NEG Morphotaxing... NON-FINITE Morphotaxing... NP1-AL Morphotaxing... NP1-ANT-F Morphotaxing... NP1-ANT-M Morphotaxing... NP1-COG-MF Morphotaxing... NP1-ORG Morphotaxing... NP1-TOP Morphotaxing... NP2-ORG Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PASS-DIR-AR Morphotaxing... PASS-DIR-IR Morphotaxing... PASS-T-AR Morphotaxing... PASS-T-IR Morphotaxing... PAST Morphotaxing... PAST-CONDITIONAL Morphotaxing... PAST-CONTINUOUS Morphotaxing... PERS-COP-PRES Morphotaxing... PERS1 Morphotaxing... PERS1-NO3PL Morphotaxing... PERS2 Morphotaxing... PERS2-NO3PL Morphotaxing... PERS3 Morphotaxing... PERS3-PAST Morphotaxing... PERS4 Morphotaxing... PERS5 Morphotaxing... PERS6 Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRESENT-CONTINUOUS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... REC-DIR-AR Morphotaxing... REC-DIR-IR Morphotaxing... REC-T-AR Morphotaxing... REC-T-IR Morphotaxing... REF-DIR-AR Morphotaxing... REF-DIR-IR Morphotaxing... REF-T-AR Morphotaxing... REF-T-IR Morphotaxing... REGULAR-NEGATIVE Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-IV-AR Morphotaxing... V-IV-DIR-AR Morphotaxing... V-IV-DIR-IR Morphotaxing... V-IV-IR Morphotaxing... V-IV-T-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PERS-COP Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-TV-AR Morphotaxing... V-TV-DIR-AR Morphotaxing... V-TV-DIR-IR Morphotaxing... V-TV-IR Morphotaxing... V-TV-IR-AR Morphotaxing... V-TV-T-AR Morphotaxing... V-TV-T-IR Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/aze.RL.lexc.hfst -2 .deps/aze.twol.hfst -o .deps/aze.RL.hfst | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("{fi}") in | |
transducer in file .deps/aze.RL.lexc.hfst which are not found on the | |
input tapes of transducers in file .deps/aze.twol.hfst. | |
hfst-fst2fst -O .deps/aze.RL.hfst -o aze.autogen.hfst | |
hfst-fst2txt aze.automorf.hfst | gzip -9 -c -n > aze.automorf.att.gz | |
zcat < aze.automorf.att.gz > .deps/aze.automorf.att | |
lt-comp lr .deps/aze.automorf.att aze.automorf.bin | |
main@standard 14718 32375 | |
final@inconditional 533 1570 | |
hfst-fst2txt aze.autogen.hfst | gzip -9 -c -n > aze.autogen.att.gz | |
zcat < aze.autogen.att.gz > .deps/aze.autogen.att | |
lt-comp lr .deps/aze.autogen.att aze.autogen.bin | |
main@standard 31022 57648 | |
final@inconditional 1276 2250 | |
lt-comp lr apertium-aze.post-aze.dix aze.autopgen.bin | |
main@standard 14 218 | |
/usr/bin/cg-comp apertium-aze.aze.rlx aze.rlx.bin | |
Sections: 2, Rules: 14, Sets: 45, Tags: 54 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-incubator/apertium-kjh | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-kjh.pc | |
test -z "kjh.automorf.hfst kjh.autogen.hfst kjh.automorf.bin kjh.autogen.bin kjh.automorf.att.gz kjh.autogen.att.gz kjh.rlx.bin" || rm -f kjh.automorf.hfst kjh.autogen.hfst kjh.automorf.bin kjh.autogen.bin kjh.automorf.att.gz kjh.autogen.att.gz kjh.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-kjh.kjh.lexc | grep -v 'Dir/RL' > .deps/kjh.LR.lexc | |
hfst-lexc -v .deps/kjh.LR.lexc -o .deps/kjh.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kjh.LR.lexc, writing to .deps/kjh.LR.lexc.hfst | |
Parsing lexc file .deps/kjh.LR.lexc | |
Root...8 CLITICS-INCL-COP...1 CLITICS-NO-COP...1 CASES-COMMON...4 CASES...7 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...1 CASES-ETC...2 POSSESSIVES...5 PLURAL...2 FULL-NOMINAL-INFLECTION...3 N1...2 N5...2 NP-COMMON...1 NP-TOP...1 NP-ANT-M...1 NP-ANT-F...1 NP-COG-M...1 NP-COG-OBIN-FEM...2 NP-COG-OB...3 NP-PAT-VICH...2 NUM...2 A1...1 A4...1 A9...1 V-PERS-FUT...6 V-FINITE...4 V-NONFINITE...2 V-COMMON...2 V-IV...1 V-TV...1 PRON-REF-PERS...3 PRON-REF...1 PRON-PERS-12SG...8 PRON-PERS-MIN...1 PRON-PERS-SIN...1 PRON-PERS-OL...8 PRON-DEM-PU...9 PRON-PERS-PL...8 PRON-PERS-PIS...1 PRON-PERS-SIRER...1 PRON-PERS-OLAR...1 DET-DEM...1 Pronouns...8 Determiners...1 Numerals...11 Nouns...546 ProperNouns...119 Adjectives...19 Verbs...8 Punctuation...5 DIGITLEX...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... A9 Morphotaxing... ATTR-SUBST Morphotaxing... Adjectives Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... DET-DEM Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-M Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... PRON-DEM-PU Morphotaxing... PRON-PERS-12SG Morphotaxing... PRON-PERS-MIN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-PIS Morphotaxing... PRON-PERS-PL Morphotaxing... PRON-PERS-SIN Morphotaxing... PRON-PERS-SIRER Morphotaxing... PRON-REF Morphotaxing... PRON-REF-PERS Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... V-COMMON Morphotaxing... V-FINITE Morphotaxing... V-IV Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-FUT Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-kjh.kjh.twol -o .deps/kjh.twol.hfst | |
Reading input from apertium-kjh.kjh.twol. | |
Writing output to .deps/kjh.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/kjh.LR.lexc.hfst -2 .deps/kjh.twol.hfst -o .deps/kjh.LR.hfst | |
hfst-invert .deps/kjh.LR.hfst | hfst-fst2fst -O -o kjh.automorf.hfst | |
cat apertium-kjh.kjh.lexc | grep -v 'Dir/LR' > .deps/kjh.RL.lexc | |
hfst-lexc -v .deps/kjh.RL.lexc -o .deps/kjh.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/kjh.RL.lexc, writing to .deps/kjh.RL.lexc.hfst | |
Parsing lexc file .deps/kjh.RL.lexc | |
Root...8 CLITICS-INCL-COP...1 CLITICS-NO-COP...1 CASES-COMMON...4 CASES...7 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...1 CASES-ETC...2 POSSESSIVES...5 PLURAL...2 FULL-NOMINAL-INFLECTION...3 N1...2 N5...2 NP-COMMON...1 NP-TOP...1 NP-ANT-M...1 NP-ANT-F...1 NP-COG-M...1 NP-COG-OBIN-FEM...2 NP-COG-OB...1 NP-PAT-VICH...2 NUM...2 A1...1 A4...1 A9...1 V-PERS-FUT...6 V-FINITE...4 V-NONFINITE...2 V-COMMON...2 V-IV...1 V-TV...1 PRON-REF-PERS...3 PRON-REF...1 PRON-PERS-12SG...8 PRON-PERS-MIN...1 PRON-PERS-SIN...1 PRON-PERS-OL...8 PRON-DEM-PU...8 PRON-PERS-PL...8 PRON-PERS-PIS...1 PRON-PERS-SIRER...1 PRON-PERS-OLAR...1 DET-DEM...1 Pronouns...8 Determiners...1 Numerals...11 Nouns...546 ProperNouns...119 Adjectives...19 Verbs...8 Punctuation...5 DIGITLEX...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... A9 Morphotaxing... ATTR-SUBST Morphotaxing... Adjectives Morphotaxing... CASES Morphotaxing... CASES-COMMON Morphotaxing... CASES-ETC Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... DET-DEM Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... N1 Morphotaxing... N5 Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-M Morphotaxing... NP-COG-OB Morphotaxing... NP-COG-OBIN-FEM Morphotaxing... NP-COMMON Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... PRON-DEM-PU Morphotaxing... PRON-PERS-12SG Morphotaxing... PRON-PERS-MIN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-OLAR Morphotaxing... PRON-PERS-PIS Morphotaxing... PRON-PERS-PL Morphotaxing... PRON-PERS-SIN Morphotaxing... PRON-PERS-SIRER Morphotaxing... PRON-REF Morphotaxing... PRON-REF-PERS Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... V-COMMON Morphotaxing... V-FINITE Morphotaxing... V-IV Morphotaxing... V-NONFINITE Morphotaxing... V-PERS-FUT Morphotaxing... V-TV Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/kjh.RL.lexc.hfst -2 .deps/kjh.twol.hfst -o .deps/kjh.RL.hfst | |
hfst-fst2fst -O .deps/kjh.RL.hfst -o kjh.autogen.hfst | |
hfst-fst2txt kjh.automorf.hfst | gzip -9 -c -n > kjh.automorf.att.gz | |
zcat < kjh.automorf.att.gz > .deps/kjh.automorf.att | |
lt-comp lr .deps/kjh.automorf.att kjh.automorf.bin | |
main@standard 4133 6585 | |
final@inconditional 7 9 | |
hfst-fst2txt kjh.autogen.hfst | gzip -9 -c -n > kjh.autogen.att.gz | |
zcat < kjh.autogen.att.gz > .deps/kjh.autogen.att | |
lt-comp lr .deps/kjh.autogen.att kjh.autogen.bin | |
main@standard 4088 6515 | |
final@inconditional 7 9 | |
cg-comp apertium-kjh.kjh.rlx kjh.rlx.bin | |
Sections: 1, Rules: 1, Sets: 2, Tags: 12 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-incubator/apertium-krc | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-krc.pc | |
test -z "krc.automorf.hfst krc.automorf.bin krc.automorf.att.gz krc.autogen.hfst krc.autogen.bin krc.autogen.att.gz krc.autopgen.bin krc.rlx.bin" || rm -f krc.automorf.hfst krc.automorf.bin krc.automorf.att.gz krc.autogen.hfst krc.autogen.bin krc.autogen.att.gz krc.autopgen.bin krc.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-krc.krc.lexc | grep -v 'Dir/RL' > .deps/krc.LR.lexc | |
hfst-lexc --Werror .deps/krc.LR.lexc -o .deps/krc.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/krc.LR.lexc, writing to .deps/krc.LR.lexc.hfst | |
Parsing lexc file .deps/krc.LR.lexc | |
Root...17 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...5 NUM...39 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLITICS-NO-COP...2 CLIT-QST...1 CLIT-COP...1 CLITICS-INCL-COP...2 CASES-OBL...6 CASES...2 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...3 CASES-ETC...2 POSSESSIVES...5 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N1...2 N2...2 N3...2 N5...2 N6...3 NP-AL-ABBR...3 NP-AL...1 NP-TOP-ABBR...4 NP-TOP...2 NP-TOP-PL...2 NP-TOP-SK...2 NP-COG...1 NP-PAT-VICH...2 NP-COG-MF...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-SKIJ...2 NP-ANT-M...2 NP-ANT-F...1 A1...1 A2...2 A3...2 A4...4 ADV-ITG...1 ADV...1 ADV-LANG...2 PRON-PERS-MEN...7 PRON-PERS-SEN...6 PRON-PERS-OL...7 PRON-PERS-BIZ...7 PRON-PERS-SIZ...7 PRON-PERS-ALA...6 PRON-DEM-BU...1 PRON-DEM-BIRSI...2 PRON-ITG-NENCHA...2 PRON-ITG...1 PRON-ITG-KIM...7 PRON-QNT...2 PRON-IND...2 PRON-REFL...6 V-PERS-S1...7 V-PERS-S2...6 GER-INFL...1 V-FINITE-REGULAR_NEGATIVE...4 V-FINITE-IRREGULAR_NEGATIVE...2 V-NONFINITE-IRREGULAR_NEGATIVE...3 V-NONFINITE-REGULAR_NEGATIVE...15 V-FORMS-IR...4 V-FORMS-AR...4 V-COMMON...7 V-COMMON-AR...7 V-DER...2 V-IV...2 V-TV...4 V-IV-AR...2 V-TV-AR...4 Vinfl-AUX...1 INTERJ...1 ABBR-INIT...33 ABBR-SENT...1 ABBR-OPT...2 ABBR...1 POST...1 CC...1 DET-REFL...1 DET-ITG...1 DET-IND...1 DET-QNT...1 DET-DEM...1 NUM-FULL...4 NUM-ROMAN...1 Copula...6 Miscellaneous...2 Conjunctions...12 Postpositions...23 Pronouns...20 Determiners...13 Numerals...83 Nouns...3554 ProperNouns...2539 Adjectives...1674 Adverbs...136 Verbs...324 Interjections...5 Abbreviations...126 Punctuation...30 NP-UNK...2 GUESS-QUEUE...1 Guesser...25 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABBR-OPT Morphotaxing... ABBR-SENT Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-OBL Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-QST Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DET-REFL Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-PL Morphotaxing... NP-TOP-SK Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-FULL Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DEM-BIRSI Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-KIM Morphotaxing... PRON-ITG-NENCHA Morphotaxing... PRON-PERS-ALA Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-QNT Morphotaxing... PRON-REFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-COMMON Morphotaxing... V-COMMON-AR Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FORMS-AR Morphotaxing... V-FORMS-IR Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... Verbs Morphotaxing... Vinfl-AUX | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-krc.krc.twol -o .deps/krc.twol.hfst | |
Reading input from apertium-krc.krc.twol. | |
Writing output to .deps/krc.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
There is a <=-rule conflict between "{I} as ю after front rounded vowels" and "{I} as у after back rounded vowels". | |
E.g. in context __HFST_TWOLC_.#.:__HFST_TWOLC_.#. ё:ё я:я э:э ё:ё ь:ь щ:щ ь:ь о:о ь:ь щ:щ ь:ь Ы:Ы ю:ю щ:щ щ:щ {n}:н {н}: {n}: >: {N}:н {ь}: щ:щ {n}:н {n}: >: {N}:н _ ё:ё __HFST_TWOLC_.#.:__HFST_TWOLC_.#. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/krc.LR.lexc.hfst -2 .deps/krc.twol.hfst -o .deps/krc.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/krc.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-minimise | hfst-fst2fst -O -o krc.automorf.hfst | |
hfst-fst2txt krc.automorf.hfst | gzip -9 -c > krc.automorf.att.gz | |
zcat < krc.automorf.att.gz > .deps/krc.automorf.att | |
lt-comp lr .deps/krc.automorf.att krc.automorf.bin | |
main@standard 13028 24206 | |
final@inconditional 375 1168 | |
cat apertium-krc.krc.lexc | grep -v 'Dir/LR' | grep -v 'Use/Sub' > .deps/krc.RL.lexc | |
hfst-lexc --Werror .deps/krc.RL.lexc -o .deps/krc.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/krc.RL.lexc, writing to .deps/krc.RL.lexc.hfst | |
Parsing lexc file .deps/krc.RL.lexc | |
Root...17 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 SUBST-NONOM...2 SQRD...3 NUM...16 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 CLITICS-NO-COP...2 CLIT-QST...1 CLIT-COP...1 CLITICS-INCL-COP...2 CASES-OBL...5 CASES...2 ATTR-SUBST...3 GENERAL-POSSESSIVE-ETC...3 CASES-ETC...2 POSSESSIVES...5 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PLURAL...3 FULL-NOMINAL-INFLECTION...5 N1...2 N2...2 N3...2 N5...2 N6...3 NP-AL-ABBR...2 NP-AL...1 NP-TOP-ABBR...3 NP-TOP...2 NP-TOP-PL...2 NP-TOP-SK...2 NP-COG...1 NP-PAT-VICH...2 NP-COG-MF...1 NP-COG-OV...2 NP-COG-IN...2 NP-COG-SKIJ...2 NP-ANT-M...2 NP-ANT-F...1 A1...1 A2...2 A3...2 A4...4 ADV-ITG...1 ADV...1 ADV-LANG...2 PRON-PERS-MEN...6 PRON-PERS-SEN...6 PRON-PERS-OL...6 PRON-PERS-BIZ...7 PRON-PERS-SIZ...7 PRON-PERS-ALA...6 PRON-DEM-BU...1 PRON-DEM-BIRSI...2 PRON-ITG-NENCHA...2 PRON-ITG...1 PRON-ITG-KIM...7 PRON-QNT...2 PRON-IND...2 PRON-REFL...6 V-PERS-S1...7 V-PERS-S2...6 GER-INFL...1 V-FINITE-REGULAR_NEGATIVE...4 V-FINITE-IRREGULAR_NEGATIVE...2 V-NONFINITE-IRREGULAR_NEGATIVE...2 V-NONFINITE-REGULAR_NEGATIVE...14 V-FORMS-IR...4 V-FORMS-AR...4 V-COMMON...7 V-COMMON-AR...7 V-DER...2 V-IV...2 V-TV...3 V-IV-AR...2 V-TV-AR...3 Vinfl-AUX...1 INTERJ...1 ABBR-INIT...33 ABBR-SENT...1 ABBR-OPT...1 ABBR...1 POST...1 CC...1 DET-REFL...1 DET-ITG...1 DET-IND...1 DET-QNT...1 DET-DEM...1 NUM-FULL...4 NUM-ROMAN...1 Copula...6 Miscellaneous...2 Conjunctions...12 Postpositions...22 Pronouns...18 Determiners...13 Numerals...75 Nouns...3492 ProperNouns...2527 Adjectives...1638 Adverbs...131 Verbs...289 Interjections...4 Abbreviations...113 Punctuation...30 NP-UNK...2 GUESS-QUEUE...1 Guesser...25 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABBR-INIT Morphotaxing... ABBR-OPT Morphotaxing... ABBR-SENT Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADV Morphotaxing... ADV-ITG Morphotaxing... ADV-LANG Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASES Morphotaxing... CASES-ETC Morphotaxing... CASES-OBL Morphotaxing... CC Morphotaxing... CLIT-COP Morphotaxing... CLIT-QST Morphotaxing... CLITICS-INCL-COP Morphotaxing... CLITICS-NO-COP Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-QNT Morphotaxing... DET-REFL Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENERAL-POSSESSIVE-ETC Morphotaxing... GER-INFL Morphotaxing... GUESS-QUEUE Morphotaxing... Guesser Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N5 Morphotaxing... N6 Morphotaxing... NP-AL Morphotaxing... NP-AL-ABBR Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG Morphotaxing... NP-COG-IN Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-SKIJ Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ABBR Morphotaxing... NP-TOP-PL Morphotaxing... NP-TOP-SK Morphotaxing... NP-UNK Morphotaxing... NUM Morphotaxing... NUM-FULL Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... POST Morphotaxing... POWERS Morphotaxing... PRON-DEM-BIRSI Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-KIM Morphotaxing... PRON-ITG-NENCHA Morphotaxing... PRON-PERS-ALA Morphotaxing... PRON-PERS-BIZ Morphotaxing... PRON-PERS-MEN Morphotaxing... PRON-PERS-OL Morphotaxing... PRON-PERS-SEN Morphotaxing... PRON-PERS-SIZ Morphotaxing... PRON-QNT Morphotaxing... PRON-REFL Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST-NONOM Morphotaxing... V-COMMON Morphotaxing... V-COMMON-AR Morphotaxing... V-DER Morphotaxing... V-FINITE-IRREGULAR_NEGATIVE Morphotaxing... V-FINITE-REGULAR_NEGATIVE Morphotaxing... V-FORMS-AR Morphotaxing... V-FORMS-IR Morphotaxing... V-IV Morphotaxing... V-IV-AR Morphotaxing... V-NONFINITE-IRREGULAR_NEGATIVE Morphotaxing... V-NONFINITE-REGULAR_NEGATIVE Morphotaxing... V-PERS-S1 Morphotaxing... V-PERS-S2 Morphotaxing... V-TV Morphotaxing... V-TV-AR Morphotaxing... Verbs Morphotaxing... Vinfl-AUX | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/krc.RL.lexc.hfst -2 .deps/krc.twol.hfst -o .deps/krc.RL.hfst | |
hfst-fst2fst -O .deps/krc.RL.hfst -o krc.autogen.hfst | |
hfst-fst2txt krc.autogen.hfst | gzip -9 -c > krc.autogen.att.gz | |
zcat < krc.autogen.att.gz > .deps/krc.autogen.att | |
lt-comp lr .deps/krc.autogen.att krc.autogen.bin | |
main@standard 22449 37067 | |
final@inconditional 1126 1973 | |
lt-comp lr apertium-krc.post-krc.dix krc.autopgen.bin | |
main@standard 5 8 | |
/usr/bin/cg-comp apertium-krc.krc.rlx krc.rlx.bin | |
Sections: 1, Rules: 2, Sets: 7, Tags: 17 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-incubator/apertium-ota | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-ota.pc | |
test -z "ota.automorf.hfst ota.automorf.bin ota.automorf.att.gz ota.autogen.hfst ota.autogen.bin ota.autogen.att.gz ota.autopgen.bin ota.rlx.bin" || rm -f ota.automorf.hfst ota.automorf.bin ota.automorf.att.gz ota.autogen.hfst ota.autogen.bin ota.autogen.att.gz ota.autopgen.bin ota.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-ota.ota.lexc | grep -v 'Dir/RL' > .deps/ota.LR.lexc | |
hfst-lexc .deps/ota.LR.lexc -o .deps/ota.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/ota.LR.lexc, writing to .deps/ota.LR.lexc.hfst | |
Parsing lexc file .deps/ota.LR.lexc | |
Root...5 CASES...5 POSSESSIVES...1 PLURAL...2 FULL-NOMINAL-INFLECTION...3 N1...1 DET-DEM...1 CC...1 Conjunctions...1 Determiners...1 Nouns...75 DIGIT...1 Digits...Compiling... Warning: Sublexicon is mentioned but not defined. (Punctuation) | |
Morphotaxing... # Morphotaxing... CASES Morphotaxing... CC Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DIGIT Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... N1 Morphotaxing... Nouns Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... Root | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-ota.ota.twol -o .deps/ota.twol.hfst | |
Reading input from apertium-ota.ota.twol. | |
Writing output to .deps/ota.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/ota.LR.lexc.hfst -2 .deps/ota.twol.hfst -o .deps/ota.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/ota.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o ota.automorf.hfst | |
hfst-fst2txt ota.automorf.hfst | gzip -9 -c > ota.automorf.att.gz | |
zcat < ota.automorf.att.gz > .deps/ota.automorf.att | |
lt-comp lr .deps/ota.automorf.att ota.automorf.bin | |
main@standard 151 277 | |
final@inconditional 2 1 | |
cat apertium-ota.ota.lexc | grep -v 'Dir/LR' > .deps/ota.RL.lexc | |
hfst-lexc .deps/ota.RL.lexc -o .deps/ota.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/ota.RL.lexc, writing to .deps/ota.RL.lexc.hfst | |
Parsing lexc file .deps/ota.RL.lexc | |
Root...5 CASES...5 POSSESSIVES...1 PLURAL...2 FULL-NOMINAL-INFLECTION...3 N1...1 DET-DEM...1 CC...1 Conjunctions...1 Determiners...1 Nouns...75 DIGIT...1 Digits...Compiling... Warning: Sublexicon is mentioned but not defined. (Punctuation) | |
Morphotaxing... # Morphotaxing... CASES Morphotaxing... CC Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DIGIT Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... N1 Morphotaxing... Nouns Morphotaxing... PLURAL Morphotaxing... POSSESSIVES Morphotaxing... Root | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/ota.RL.lexc.hfst -2 .deps/ota.twol.hfst -o .deps/ota.RL.hfst | |
hfst-fst2fst -O .deps/ota.RL.hfst -o ota.autogen.hfst | |
hfst-fst2txt ota.autogen.hfst | gzip -9 -c > ota.autogen.att.gz | |
zcat < ota.autogen.att.gz > .deps/ota.autogen.att | |
lt-comp lr .deps/ota.autogen.att ota.autogen.bin | |
main@standard 173 298 | |
final@inconditional 2 1 | |
lt-comp lr apertium-ota.post-ota.dix ota.autopgen.bin | |
main@standard 5 8 | |
/usr/bin/cg-comp apertium-ota.ota.rlx ota.rlx.bin | |
Sections: 1, Rules: 2, Sets: 7, Tags: 17 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
USAGE: apertium-destxt [ -h | -o | -i | -n ] [input_file [output_file]] | |
txt format processor | |
wc: ../../../data4apertium/corpora/bible/ota.txt: Datei oder Verzeichnis nicht gefunden | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-incubator/apertium-alt | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-alt.pc | |
test -z "alt.automorf.hfst alt.automorf.bin alt.automorf.att.gz alt.autogen.hfst alt.autogen.bin alt.autogen.att.gz alt.autopgen.bin alt.prob alt.rlx.bin" || rm -f alt.automorf.hfst alt.automorf.bin alt.automorf.att.gz alt.autogen.hfst alt.autogen.bin alt.autogen.att.gz alt.autopgen.bin alt.prob alt.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-alt.alt.lexc | grep -v 'Dir/RL' > .deps/alt.LR.lexc | |
hfst-lexc .deps/alt.LR.lexc -o .deps/alt.LR.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/alt.LR.lexc, writing to .deps/alt.LR.lexc.hfst | |
Parsing lexc file .deps/alt.LR.lexc | |
Root...13 POST...1 POSTADV...1 NOM-CLITICS...3 PRC-CLITICS...2 ADJ-CLITICS...2 N-Px...4 COPULA...1 NOM-COP-CLITICS...2 N-Case...8 N-INFL...2 N-INFL-RUS...1 A1...2 A4...1 V-Person-NPast...2 V-Person-Fut...2 V-Person-Opt...3 V-Person-Cond...2 V-Person-Ifi...3 V-Person-Imp...2 V-Tense-Irreg...2 V-Tense...4 V-Gpr...1 V-NonFinite...4 V-NonFinite-Irreg...4 V-RegNeg...4 V-Common...3 V-IV...1 V-TV...2 Vaux-Jat-Person...6 Vaux-Jat...1 Vaux...1 N-INFL-COMMON...1 NP-TOP...1 DET-DEM...1 NP-ORG...2 NP-ANT-M...2 NP-ANT-F...2 NP-PAT-VICH...2 NP-COG-MF...2 SUBST-COMMON...1 NUM-COMMON...2 NUM...1 PRON-CASE-COMMON...4 PRON-P3SG-CASES...3 PRON-P12SG-CASES...3 PersonalPronouns...6 PRON-REF-ADV...1 PRON-REF...3 PRON-ITG-INFL...1 CC...1 INTERJ...1 Conjunctions...11 Determiners...1 Postpositions...7 Pronouns...4 NounRoot...67 Copula...2 Auxiliaries...7 VerbRoot...44 Interjections...1 AdjectiveRoot...13 ProperNounRoot...22 Numerals...8 Punctuation...Compiling... Warning: Sublexicon is mentioned but not defined. (PRC-CLITCS) | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... ADJ-CLITICS Morphotaxing... AdjectiveRoot Morphotaxing... Auxiliaries Morphotaxing... CC Morphotaxing... COPULA Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... Determiners Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... N-Case Morphotaxing... N-INFL Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-RUS Morphotaxing... N-Px Morphotaxing... NOM-CLITICS Morphotaxing... NOM-COP-CLITICS Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-ORG Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NounRoot Morphotaxing... Numerals Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... PRC-CLITICS Morphotaxing... PRON-CASE-COMMON Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-P3SG-CASES Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PersonalPronouns Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNounRoot Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST-COMMON Morphotaxing... V-Common Morphotaxing... V-Gpr Morphotaxing... V-IV Morphotaxing... V-NonFinite Morphotaxing... V-NonFinite-Irreg Morphotaxing... V-Person-Cond Morphotaxing... V-Person-Fut Morphotaxing... V-Person-Ifi Morphotaxing... V-Person-Imp Morphotaxing... V-Person-NPast Morphotaxing... V-Person-Opt Morphotaxing... V-RegNeg Morphotaxing... V-TV Morphotaxing... V-Tense Morphotaxing... V-Tense-Irreg Morphotaxing... Vaux Morphotaxing... Vaux-Jat Morphotaxing... Vaux-Jat-Person Morphotaxing... VerbRoot | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-alt.alt.twol -o .deps/alt.twol.hfst | |
Reading input from apertium-alt.alt.twol. | |
Writing output to .deps/alt.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/alt.LR.lexc.hfst -2 .deps/alt.twol.hfst -o .deps/alt.LR.hfst | |
hfst-invert .deps/alt.LR.hfst | hfst-fst2fst -O -o alt.automorf.hfst | |
hfst-fst2txt alt.automorf.hfst | gzip -9 -c -n > alt.automorf.att.gz | |
zcat < alt.automorf.att.gz > .deps/alt.automorf.att | |
lt-comp lr .deps/alt.automorf.att alt.automorf.bin | |
main@standard 2693 4044 | |
final@inconditional 34 55 | |
cat apertium-alt.alt.lexc | grep -v 'Dir/LR' > .deps/alt.RL.lexc | |
hfst-lexc .deps/alt.RL.lexc -o .deps/alt.RL.lexc.hfst -v | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/alt.RL.lexc, writing to .deps/alt.RL.lexc.hfst | |
Parsing lexc file .deps/alt.RL.lexc | |
Root...13 POST...1 POSTADV...1 NOM-CLITICS...3 PRC-CLITICS...2 ADJ-CLITICS...2 N-Px...4 COPULA...1 NOM-COP-CLITICS...2 N-Case...8 N-INFL...2 N-INFL-RUS...1 A1...2 A4...1 V-Person-NPast...2 V-Person-Fut...2 V-Person-Opt...3 V-Person-Cond...2 V-Person-Ifi...3 V-Person-Imp...2 V-Tense-Irreg...2 V-Tense...4 V-Gpr...1 V-NonFinite...4 V-NonFinite-Irreg...4 V-RegNeg...4 V-Common...3 V-IV...1 V-TV...2 Vaux-Jat-Person...6 Vaux-Jat...1 Vaux...1 N-INFL-COMMON...1 NP-TOP...1 DET-DEM...1 NP-ORG...2 NP-ANT-M...2 NP-ANT-F...2 NP-PAT-VICH...2 NP-COG-MF...2 SUBST-COMMON...1 NUM-COMMON...2 NUM...1 PRON-CASE-COMMON...4 PRON-P3SG-CASES...3 PRON-P12SG-CASES...3 PersonalPronouns...6 PRON-REF-ADV...1 PRON-REF...3 PRON-ITG-INFL...1 CC...1 INTERJ...1 Conjunctions...3 Determiners...1 Postpositions...7 Pronouns...4 NounRoot...67 Copula...2 Auxiliaries...7 VerbRoot...44 Interjections...1 AdjectiveRoot...13 ProperNounRoot...22 Numerals...8 Punctuation...Compiling... Warning: Sublexicon is mentioned but not defined. (PRC-CLITCS) | |
Morphotaxing... # Morphotaxing... A1 Morphotaxing... A4 Morphotaxing... ADJ-CLITICS Morphotaxing... AdjectiveRoot Morphotaxing... Auxiliaries Morphotaxing... CC Morphotaxing... COPULA Morphotaxing... Conjunctions Morphotaxing... Copula Morphotaxing... DET-DEM Morphotaxing... Determiners Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... N-Case Morphotaxing... N-INFL Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-RUS Morphotaxing... N-Px Morphotaxing... NOM-CLITICS Morphotaxing... NOM-COP-CLITICS Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-ORG Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NUM Morphotaxing... NUM-COMMON Morphotaxing... NounRoot Morphotaxing... Numerals Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... PRC-CLITICS Morphotaxing... PRON-CASE-COMMON Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-P12SG-CASES Morphotaxing... PRON-P3SG-CASES Morphotaxing... PRON-REF Morphotaxing... PRON-REF-ADV Morphotaxing... PersonalPronouns Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNounRoot Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SUBST-COMMON Morphotaxing... V-Common Morphotaxing... V-Gpr Morphotaxing... V-IV Morphotaxing... V-NonFinite Morphotaxing... V-NonFinite-Irreg Morphotaxing... V-Person-Cond Morphotaxing... V-Person-Fut Morphotaxing... V-Person-Ifi Morphotaxing... V-Person-Imp Morphotaxing... V-Person-NPast Morphotaxing... V-Person-Opt Morphotaxing... V-RegNeg Morphotaxing... V-TV Morphotaxing... V-Tense Morphotaxing... V-Tense-Irreg Morphotaxing... Vaux Morphotaxing... Vaux-Jat Morphotaxing... Vaux-Jat-Person Morphotaxing... VerbRoot | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/alt.RL.lexc.hfst -2 .deps/alt.twol.hfst -o .deps/alt.RL.hfst | |
hfst-fst2fst -O .deps/alt.RL.hfst -o alt.autogen.hfst | |
hfst-fst2txt alt.autogen.hfst | gzip -9 -c -n > alt.autogen.att.gz | |
zcat < alt.autogen.att.gz > .deps/alt.autogen.att | |
lt-comp lr .deps/alt.autogen.att alt.autogen.bin | |
main@standard 2700 4045 | |
final@inconditional 34 54 | |
lt-comp lr apertium-alt.post-alt.dix alt.autopgen.bin | |
main@standard 5 8 | |
apertium-tagger -s 0 -u 2 alt.prob corpus/alt.tagged | |
/usr/bin/cg-comp apertium-alt.alt.rlx alt.rlx.bin | |
Sections: 1, Rules: 2, Sets: 7, Tags: 17 | |
1 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
/home/selimcan/1Working/1Taruen/apertiumpp/apertium-all/apertium-languages/apertium-tur | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for pkg-config... /usr/bin/pkg-config | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating apertium-tur.pc | |
test -z "tur.automorf.hfst tur.autogen.hfst tur.automorf.bin tur.autogen.bin tur.autopgen.bin tur.automorf.att.gz tur.autogen.att.gz tur.rlx.bin" || rm -f tur.automorf.hfst tur.autogen.hfst tur.automorf.bin tur.autogen.bin tur.autopgen.bin tur.automorf.att.gz tur.autogen.att.gz tur.rlx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
cat apertium-tur.tur.lexc | grep -v 'Dir/RL' > .deps/tur.LR.lexc | |
hfst-lexc --Werror -v .deps/tur.LR.lexc -o .deps/tur.LR.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tur.LR.lexc, writing to .deps/tur.LR.lexc.hfst | |
Parsing lexc file .deps/tur.LR.lexc | |
Root...18 SQRD...5 NUM-DIGIT...18 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 V-AR-TV...1 V-AR-IV...1 V-IR-IV...1 V-IR-TV...1 V-DERIV-AR...8 V-DERIV-AR-COMMON...2 V-DERIV-IR...8 V-DERIV-IR-COMMON...2 V-GERUNDS...7 V-GERUNDS-AOR-AR...1 V-GERUNDS-AOR-IR...1 V-NONFIN-IR...4 V-NONFIN-AR...4 V-NONFIN-COMMON...4 V-PRC...2 V-AOR-NONFIN-AR...3 V-AOR-NONFIN-IR...3 V-PRC-COMMON...1 V-GNA-COMMON...1 V-GPR...4 V-GPR-DIK-COMMON...2 V-GPR-DIK-PERS...6 V-GPR-COMMON...2 V-GNA-ABIL...1 V-GNA-ABIL-NEG...3 V-GNA...4 V-FIN-AR...2 V-FIN-IR...2 V-AOR-IR...2 V-AOR-AR...2 V-AOR-NEG...1 V-TENSE-COMMON...2 V-TENSE-MA...2 V-TENSE-MA-NEG...1 V-TENSE-MA-COMMON...7 V-IFI-COND...2 V-PROG...1 V-FUT...1 V-NEC...1 V-TENSE-ABIL...6 V-TENSE-ABIL-NEG...3 V-TENSE-ABIL-AFF...3 V-PAST...1 V-POT...1 V-IMP...10 V-IFI-COND-COMMON...1 V-IFI...2 V-COND...3 V-COND-COP...1 V-COND-COP-IFI...1 V-COP-PERS...7 V-COP-IFI-PERS...6 V-IFI-COND-PERS...7 V-IFI-COND-PERS-QST...2 V-INFL-PRE-COP...3 V-DUB...2 V-DUB-COMMON...3 V-IFI-COP...1 V-MI...1 V-MI-COMMON...1 V-COP...5 V-COP-IFI...1 V-IFI-COP-COND...1 COPULA-MIMIS-DUB...2 COPULA-MIMIS-COMMON...2 COPULA-MIMIS-COP...3 COPULA-P3-PERS...3 COPULA-MIMIS-MI...2 COPULA-MIMIS...1 COPULA-IFI-KEN...2 COPULA-KEN...1 COPULA-AOR...1 PERS-COP-PRES...13 COPULA-IFI-PRS...7 COPULA-IFI...1 COPULA-COND...1 CLIT...2 CLIT-NOPERS...2 V-NOPERS-COP...2 CLIT-GENERAL...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...4 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 GER-CASE-ETC...2 GER-GENPOSS-ETC...1 POSS-REAL...8 GER-POSS-REAL...6 N-INFL-COMMON...2 GER-N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 GER-SUBST...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PP-PERS...7 FULL-NOMINAL-INFLECTION...3 N1...3 N2...2 N3...4 N4...1 N5...5 NP-TOP...7 NP2-TOP...2 NP3-TOP...2 NP4-TOP...2 NP-ORG...3 NP-ORG-COMPOUND-PX...2 NP-ANT-M...5 NP-ANT-F...5 NP-COG-ZADE...11 NP-COG-MF...6 NP-COG-OV...12 NP-PAT-VICH...12 NP-AL-PL...5 NP-AL...4 NP-TOP-ACR...4 PRON-PERS...90 PRON-DEM-BU...12 PRON-ITG-NERE...8 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...13 PRON-QNT...2 PRON-QNT-ÇOĞU...2 PRON-RECIP...1 PRON-NEG...1 PRON-REF...8 PRON-ADV...1 CA...1 CS...1 CC...1 POSTADV...1 NUM...4 ADV1...3 ADV2...3 ADV3...2 ADV4...3 ADV-ITG...2 ADJ-CLIT...2 A1...3 A2...2 A3...2 A4...2 V-PERS-COP-G2-NOSG3-FINAL...6 INTERJ...1 POST...1 DET-REF...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 TIT...1 NUM-ROMAN...1 SYM-HASH...1 SYM-HASH-TAG...1 SYM...1 ABBR...1 Miscellaneous...10 Postadverbs...3 Postpositions...71 Conjunctions...134 Pronouns...41 Determiners...56 Numerals...51 Titles...1 Nouns...8554 ProperNouns...8551 Adjectives...2311 Adverbs...621 Verbs...1980 Interjections...71 Symbols...3 Abbreviations...44 Punctuation...24 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADJ-CLIT Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... COPULA-AOR Morphotaxing... COPULA-COND Morphotaxing... COPULA-IFI Morphotaxing... COPULA-IFI-KEN Morphotaxing... COPULA-IFI-PRS Morphotaxing... COPULA-KEN Morphotaxing... COPULA-MIMIS Morphotaxing... COPULA-MIMIS-COMMON Morphotaxing... COPULA-MIMIS-COP Morphotaxing... COPULA-MIMIS-DUB Morphotaxing... COPULA-MIMIS-MI Morphotaxing... COPULA-P3-PERS Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GER-CASE-ETC Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-POSS-REAL Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-ZADE Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND-PX Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ACR Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PERS-COP-PRES Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-ÇOĞU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-AOR-AR Morphotaxing... V-AOR-IR Morphotaxing... V-AOR-NEG Morphotaxing... V-AOR-NONFIN-AR Morphotaxing... V-AOR-NONFIN-IR Morphotaxing... V-AR-IV Morphotaxing... V-AR-TV Morphotaxing... V-COND Morphotaxing... V-COND-COP Morphotaxing... V-COND-COP-IFI Morphotaxing... V-COP Morphotaxing... V-COP-IFI Morphotaxing... V-COP-IFI-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-DERIV-AR Morphotaxing... V-DERIV-AR-COMMON Morphotaxing... V-DERIV-IR Morphotaxing... V-DERIV-IR-COMMON Morphotaxing... V-DUB Morphotaxing... V-DUB-COMMON Morphotaxing... V-FIN-AR Morphotaxing... V-FIN-IR Morphotaxing... V-FUT Morphotaxing... V-GERUNDS Morphotaxing... V-GERUNDS-AOR-AR Morphotaxing... V-GERUNDS-AOR-IR Morphotaxing... V-GNA Morphotaxing... V-GNA-ABIL Morphotaxing... V-GNA-ABIL-NEG Morphotaxing... V-GNA-COMMON Morphotaxing... V-GPR Morphotaxing... V-GPR-COMMON Morphotaxing... V-GPR-DIK-COMMON Morphotaxing... V-GPR-DIK-PERS Morphotaxing... V-IFI Morphotaxing... V-IFI-COND Morphotaxing... V-IFI-COND-COMMON Morphotaxing... V-IFI-COND-PERS Morphotaxing... V-IFI-COND-PERS-QST Morphotaxing... V-IFI-COP Morphotaxing... V-IFI-COP-COND Morphotaxing... V-IMP Morphotaxing... V-INFL-PRE-COP Morphotaxing... V-IR-IV Morphotaxing... V-IR-TV Morphotaxing... V-MI Morphotaxing... V-MI-COMMON Morphotaxing... V-NEC Morphotaxing... V-NONFIN-AR Morphotaxing... V-NONFIN-COMMON Morphotaxing... V-NONFIN-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PAST Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-POT Morphotaxing... V-PRC Morphotaxing... V-PRC-COMMON Morphotaxing... V-PROG Morphotaxing... V-TENSE-ABIL Morphotaxing... V-TENSE-ABIL-AFF Morphotaxing... V-TENSE-ABIL-NEG Morphotaxing... V-TENSE-COMMON Morphotaxing... V-TENSE-MA Morphotaxing... V-TENSE-MA-COMMON Morphotaxing... V-TENSE-MA-NEG Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-twolc apertium-tur.tur.twol -o .deps/tur.twol.hfst | |
Reading input from apertium-tur.tur.twol. | |
Writing output to .deps/tur.twol.hfst. | |
Reading alphabet. | |
Reading sets. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tur.LR.lexc.hfst -2 .deps/tur.twol.hfst -o .deps/tur.LR.hfst | |
hfst-twolc dev/spellrelax.twol -o .deps/spellrelax.hfst | |
Reading input from dev/spellrelax.twol. | |
Writing output to .deps/spellrelax.hfst. | |
Reading alphabet. | |
Reading rules and compiling their contexts and centers. | |
Compiling rules. | |
Storing rules. | |
hfst-compose-intersect -1 .deps/tur.LR.hfst -2 .deps/spellrelax.hfst | hfst-invert | hfst-fst2fst -O -o tur.automorf.hfst | |
cat apertium-tur.tur.lexc | grep -v 'Dir/LR' > .deps/tur.RL.lexc | |
hfst-lexc --Werror -v .deps/tur.RL.lexc -o .deps/tur.RL.lexc.hfst | |
hfst-lexc: warning: Defaulting to OpenFst tropical type | |
Reading from .deps/tur.RL.lexc, writing to .deps/tur.RL.lexc.hfst | |
Parsing lexc file .deps/tur.RL.lexc | |
Root...18 SQRD...3 NUM-DIGIT...14 LASTDIGIT...9 LASTDIGIT-REST...9 POWERS...2 LOOP...12 DIGITLEX...10 V-AR-TV...1 V-AR-IV...1 V-IR-IV...1 V-IR-TV...1 V-DERIV-AR...7 V-DERIV-AR-COMMON...2 V-DERIV-IR...7 V-DERIV-IR-COMMON...2 V-GERUNDS...7 V-GERUNDS-AOR-AR...1 V-GERUNDS-AOR-IR...1 V-NONFIN-IR...4 V-NONFIN-AR...4 V-NONFIN-COMMON...4 V-PRC...2 V-AOR-NONFIN-AR...3 V-AOR-NONFIN-IR...3 V-PRC-COMMON...1 V-GNA-COMMON...1 V-GPR...4 V-GPR-DIK-COMMON...2 V-GPR-DIK-PERS...6 V-GPR-COMMON...2 V-GNA-ABIL...1 V-GNA-ABIL-NEG...3 V-GNA...4 V-FIN-AR...2 V-FIN-IR...2 V-AOR-IR...2 V-AOR-AR...2 V-AOR-NEG...1 V-TENSE-COMMON...2 V-TENSE-MA...2 V-TENSE-MA-NEG...1 V-TENSE-MA-COMMON...7 V-IFI-COND...2 V-PROG...1 V-FUT...1 V-NEC...1 V-TENSE-ABIL...6 V-TENSE-ABIL-NEG...3 V-TENSE-ABIL-AFF...3 V-PAST...1 V-POT...1 V-IMP...9 V-IFI-COND-COMMON...1 V-IFI...2 V-COND...3 V-COND-COP...1 V-COND-COP-IFI...1 V-COP-PERS...7 V-COP-IFI-PERS...6 V-IFI-COND-PERS...7 V-IFI-COND-PERS-QST...2 V-INFL-PRE-COP...3 V-DUB...2 V-DUB-COMMON...3 V-IFI-COP...1 V-MI...1 V-MI-COMMON...1 V-COP...5 V-COP-IFI...1 V-IFI-COP-COND...1 COPULA-MIMIS-DUB...2 COPULA-MIMIS-COMMON...2 COPULA-MIMIS-COP...3 COPULA-P3-PERS...3 COPULA-MIMIS-MI...2 COPULA-MIMIS...1 COPULA-IFI-KEN...2 COPULA-KEN...1 COPULA-AOR...1 PERS-COP-PRES...13 COPULA-IFI-PRS...7 COPULA-IFI...1 COPULA-COND...1 CLIT...2 CLIT-NOPERS...2 V-NOPERS-COP...2 CLIT-GENERAL...2 ATTR...2 ATTR-SUBST...3 CASE-NONOM...6 GENPOSS-ETC-NONOM...4 CASE-ETC-NONOM...2 N-INFL-COMMON-NONOM...2 CASE...7 GENPOSS-ETC...3 CASE-ETC...2 GER-CASE-ETC...2 GER-GENPOSS-ETC...1 POSS-REAL...8 GER-POSS-REAL...6 N-INFL-COMMON...2 GER-N-INFL-COMMON...2 SUBST-NONOM...2 SUBST...2 GER-SUBST...2 ABESSIVE-POSTPOSITION...1 LI-POSTPOSITION...1 PP-PERS...7 FULL-NOMINAL-INFLECTION...3 N1...3 N2...2 N3...4 N4...1 N5...5 NP-TOP...8 NP2-TOP...3 NP3-TOP...3 NP4-TOP...3 NP-ORG...3 NP-ORG-COMPOUND-PX...2 NP-ANT-M...5 NP-ANT-F...5 NP-COG-ZADE...6 NP-COG-MF...6 NP-COG-OV...12 NP-PAT-VICH...12 NP-AL-PL...5 NP-AL...4 NP-TOP-ACR...4 PRON-PERS...90 PRON-DEM-BU...12 PRON-ITG-NERE...7 PRON-IND...1 PRON-ITG-INFL...1 PRON-ITG...13 PRON-QNT...2 PRON-QNT-ÇOĞU...2 PRON-RECIP...1 PRON-NEG...1 PRON-REF...8 PRON-ADV...1 CA...1 CS...1 CC...1 POSTADV...1 NUM...4 ADV1...3 ADV2...3 ADV3...2 ADV4...3 ADV-ITG...2 ADJ-CLIT...2 A1...3 A2...2 A3...2 A4...2 V-PERS-COP-G2-NOSG3-FINAL...6 INTERJ...1 POST...1 DET-REF...1 DET-DEM...1 DET-QNT...1 DET-IND...1 DET-ITG...1 DET-NEG...1 TIT...1 NUM-ROMAN...1 SYM-HASH...1 SYM-HASH-TAG...1 SYM...1 ABBR...1 Miscellaneous...8 Postadverbs...2 Postpositions...70 Conjunctions...130 Pronouns...39 Determiners...56 Numerals...50 Titles...1 Nouns...8494 ProperNouns...8547 Adjectives...2319 Adverbs...626 Verbs...1995 Interjections...69 BARB...1 Symbols...5 Abbreviations...44 Punctuation...24 Digits...Compiling... Morphotaxing... # Morphotaxing... A1 Morphotaxing... A2 Morphotaxing... A3 Morphotaxing... A4 Morphotaxing... ABBR Morphotaxing... ABESSIVE-POSTPOSITION Morphotaxing... ADJ-CLIT Morphotaxing... ADV-ITG Morphotaxing... ADV1 Morphotaxing... ADV2 Morphotaxing... ADV3 Morphotaxing... ADV4 Morphotaxing... ATTR Morphotaxing... ATTR-SUBST Morphotaxing... Abbreviations Morphotaxing... Adjectives Morphotaxing... Adverbs Morphotaxing... BARB Morphotaxing... CA Morphotaxing... CASE Morphotaxing... CASE-ETC Morphotaxing... CASE-ETC-NONOM Morphotaxing... CASE-NONOM Morphotaxing... CC Morphotaxing... CLIT Morphotaxing... CLIT-GENERAL Morphotaxing... CLIT-NOPERS Morphotaxing... COPULA-AOR Morphotaxing... COPULA-COND Morphotaxing... COPULA-IFI Morphotaxing... COPULA-IFI-KEN Morphotaxing... COPULA-IFI-PRS Morphotaxing... COPULA-KEN Morphotaxing... COPULA-MIMIS Morphotaxing... COPULA-MIMIS-COMMON Morphotaxing... COPULA-MIMIS-COP Morphotaxing... COPULA-MIMIS-DUB Morphotaxing... COPULA-MIMIS-MI Morphotaxing... COPULA-P3-PERS Morphotaxing... CS Morphotaxing... Conjunctions Morphotaxing... DET-DEM Morphotaxing... DET-IND Morphotaxing... DET-ITG Morphotaxing... DET-NEG Morphotaxing... DET-QNT Morphotaxing... DET-REF Morphotaxing... DIGITLEX Morphotaxing... Determiners Morphotaxing... Digits Morphotaxing... FULL-NOMINAL-INFLECTION Morphotaxing... GENPOSS-ETC Morphotaxing... GENPOSS-ETC-NONOM Morphotaxing... GER-CASE-ETC Morphotaxing... GER-GENPOSS-ETC Morphotaxing... GER-N-INFL-COMMON Morphotaxing... GER-POSS-REAL Morphotaxing... GER-SUBST Morphotaxing... INTERJ Morphotaxing... Interjections Morphotaxing... LASTDIGIT Morphotaxing... LASTDIGIT-REST Morphotaxing... LI-POSTPOSITION Morphotaxing... LOOP Morphotaxing... Miscellaneous Morphotaxing... N-INFL-COMMON Morphotaxing... N-INFL-COMMON-NONOM Morphotaxing... N1 Morphotaxing... N2 Morphotaxing... N3 Morphotaxing... N4 Morphotaxing... N5 Morphotaxing... NP-AL Morphotaxing... NP-AL-PL Morphotaxing... NP-ANT-F Morphotaxing... NP-ANT-M Morphotaxing... NP-COG-MF Morphotaxing... NP-COG-OV Morphotaxing... NP-COG-ZADE Morphotaxing... NP-ORG Morphotaxing... NP-ORG-COMPOUND-PX Morphotaxing... NP-PAT-VICH Morphotaxing... NP-TOP Morphotaxing... NP-TOP-ACR Morphotaxing... NP2-TOP Morphotaxing... NP3-TOP Morphotaxing... NP4-TOP Morphotaxing... NUM Morphotaxing... NUM-DIGIT Morphotaxing... NUM-ROMAN Morphotaxing... Nouns Morphotaxing... Numerals Morphotaxing... PERS-COP-PRES Morphotaxing... POSS-REAL Morphotaxing... POST Morphotaxing... POSTADV Morphotaxing... POWERS Morphotaxing... PP-PERS Morphotaxing... PRON-ADV Morphotaxing... PRON-DEM-BU Morphotaxing... PRON-IND Morphotaxing... PRON-ITG Morphotaxing... PRON-ITG-INFL Morphotaxing... PRON-ITG-NERE Morphotaxing... PRON-NEG Morphotaxing... PRON-PERS Morphotaxing... PRON-QNT Morphotaxing... PRON-QNT-ÇOĞU Morphotaxing... PRON-RECIP Morphotaxing... PRON-REF Morphotaxing... Postadverbs Morphotaxing... Postpositions Morphotaxing... Pronouns Morphotaxing... ProperNouns Morphotaxing... Punctuation Morphotaxing... Root Morphotaxing... SQRD Morphotaxing... SUBST Morphotaxing... SUBST-NONOM Morphotaxing... SYM Morphotaxing... SYM-HASH Morphotaxing... SYM-HASH-TAG Morphotaxing... Symbols Morphotaxing... TIT Morphotaxing... Titles Morphotaxing... V-AOR-AR Morphotaxing... V-AOR-IR Morphotaxing... V-AOR-NEG Morphotaxing... V-AOR-NONFIN-AR Morphotaxing... V-AOR-NONFIN-IR Morphotaxing... V-AR-IV Morphotaxing... V-AR-TV Morphotaxing... V-COND Morphotaxing... V-COND-COP Morphotaxing... V-COND-COP-IFI Morphotaxing... V-COP Morphotaxing... V-COP-IFI Morphotaxing... V-COP-IFI-PERS Morphotaxing... V-COP-PERS Morphotaxing... V-DERIV-AR Morphotaxing... V-DERIV-AR-COMMON Morphotaxing... V-DERIV-IR Morphotaxing... V-DERIV-IR-COMMON Morphotaxing... V-DUB Morphotaxing... V-DUB-COMMON Morphotaxing... V-FIN-AR Morphotaxing... V-FIN-IR Morphotaxing... V-FUT Morphotaxing... V-GERUNDS Morphotaxing... V-GERUNDS-AOR-AR Morphotaxing... V-GERUNDS-AOR-IR Morphotaxing... V-GNA Morphotaxing... V-GNA-ABIL Morphotaxing... V-GNA-ABIL-NEG Morphotaxing... V-GNA-COMMON Morphotaxing... V-GPR Morphotaxing... V-GPR-COMMON Morphotaxing... V-GPR-DIK-COMMON Morphotaxing... V-GPR-DIK-PERS Morphotaxing... V-IFI Morphotaxing... V-IFI-COND Morphotaxing... V-IFI-COND-COMMON Morphotaxing... V-IFI-COND-PERS Morphotaxing... V-IFI-COND-PERS-QST Morphotaxing... V-IFI-COP Morphotaxing... V-IFI-COP-COND Morphotaxing... V-IMP Morphotaxing... V-INFL-PRE-COP Morphotaxing... V-IR-IV Morphotaxing... V-IR-TV Morphotaxing... V-MI Morphotaxing... V-MI-COMMON Morphotaxing... V-NEC Morphotaxing... V-NONFIN-AR Morphotaxing... V-NONFIN-COMMON Morphotaxing... V-NONFIN-IR Morphotaxing... V-NOPERS-COP Morphotaxing... V-PAST Morphotaxing... V-PERS-COP-G2-NOSG3-FINAL Morphotaxing... V-POT Morphotaxing... V-PRC Morphotaxing... V-PRC-COMMON Morphotaxing... V-PROG Morphotaxing... V-TENSE-ABIL Morphotaxing... V-TENSE-ABIL-AFF Morphotaxing... V-TENSE-ABIL-NEG Morphotaxing... V-TENSE-COMMON Morphotaxing... V-TENSE-MA Morphotaxing... V-TENSE-MA-COMMON Morphotaxing... V-TENSE-MA-NEG Morphotaxing... Verbs | |
Inserting regular expressions... | |
Writing... done | |
hfst-compose-intersect -1 .deps/tur.RL.lexc.hfst -2 .deps/tur.twol.hfst -o .deps/tur.RL.hfst | |
hfst-fst2fst -O .deps/tur.RL.hfst -o tur.autogen.hfst | |
hfst-fst2txt tur.automorf.hfst | gzip -9 -c -n > tur.automorf.att.gz | |
zcat < tur.automorf.att.gz > .deps/tur.automorf.att | |
lt-comp lr .deps/tur.automorf.att tur.automorf.bin | |
main@standard 25060 57093 | |
final@inconditional 635 2021 | |
hfst-fst2txt tur.autogen.hfst | gzip -9 -c -n > tur.autogen.att.gz | |
zcat < tur.autogen.att.gz > .deps/tur.autogen.att | |
lt-comp lr .deps/tur.autogen.att tur.autogen.bin | |
main@standard 58746 1073824 | |
final@inconditional 2376 3848 | |
lt-comp lr apertium-tur.post-tur.dix tur.autopgen.bin | |
main@standard 14 218 | |
/usr/bin/cg-comp apertium-tur.tur.rlx tur.rlx.bin | |
Sections: 4, Rules: 102, Sets: 129, Tags: 127 | |
2 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nog: commit 6f65e512b45e04ef9f177ea8e1adf6ba26cb648e | |
stems: 1367 | |
bible coverage | |
Number of tokenised words in the corpus: 189329 | |
Coverage: 81.88% | |
Top unknown words in the corpus: | |
343 Масих | |
341 а | |
306 Раббий | |
233 Кие | |
230 иман | |
194 аркалы | |
189 баьриси | |
176 Масихтинъ | |
148 Петер | |
146 Паул | |
143 А | |
128 дува | |
127 Раббийдинъ | |
123 Рух | |
120 солай | |
116 оьким | |
105 баьрисин | |
85 сокталары | |
85 болынъыз | |
83 Масихке | |
Translation time: 1.6776916980743408 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
341 ^а/*а$ | |
335 ^Масих/*Масих$ | |
287 ^Раббий/*Раббий$ | |
233 ^Кие/*Кие$ | |
230 ^иман/*иман$ | |
194 ^аркалы/*аркалы$ | |
189 ^баьриси/*баьриси$ | |
176 ^Масихтинъ/*Масихтинъ$ | |
148 ^Петер/*Петер$ | |
146 ^Паул/*Паул$ | |
142 ^А/*А$ | |
128 ^дува/*дува$ | |
125 ^Раббийдинъ/*Раббийдинъ$ | |
123 ^Рух/*Рух$ | |
116 ^оьким/*оьким$ | |
105 ^баьрисин/*баьрисин$ | |
85 ^сокталары/*сокталары$ | |
85 ^болынъыз/*болынъыз$ | |
83 ^Таурат/*Таурат$ | |
83 ^себепли/*себепли$ | |
coverage: 146745 / 180918 (~0.81111332205750671575) | |
remaining unknown forms: 34173 | |
bible corpus size (tokens): 138010 ../../../data4apertium/corpora/bible/nog.txt | |
sah: commit 46b66f6f3e90a766d13647d00e1a6bcf03f1b25e | |
stems: 9505 | |
bible coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 1107 | |
Coverage: 91.06% | |
Top unknown words in the corpus: | |
5 Апостоллар | |
3 Евангелие | |
2 Спасскай | |
2 миссионердар | |
2 Аланд | |
1 Annotation | |
1 НОВЫЙ | |
1 ЗАВЕТ | |
1 якутском | |
1 языке | |
1 in | |
1 c | |
1 эҕэрдэлиибин | |
1 Тэнгри | |
1 чочуобунаны | |
1 сүрэхтэнэр | |
1 бэргэһэлэнэр | |
1 Дежнев | |
1 Абакайааданы | |
1 бэргэһэлээбит | |
Translation time: 0.040807485580444336 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
94 ^буоллун/*буоллун$ | |
92 ^илгэлээх/*илгэлээх$ | |
91 ^Израиль/*Израиль$ | |
90 ^Аанньал/*Аанньал$ | |
76 ^Пс/*Пс$ | |
75 ^пророк/*пророк$ | |
75 ^илдьэ/*илдьэ$ | |
74 ^иудейдар/*иудейдар$ | |
66 ^Аминь/*Аминь$ | |
62 ^Ирод/*Ирод$ | |
61 ^Евангелиены/*Евангелиены$ | |
60 ^эбитэ/*эбитэ$ | |
60 ^аньыылаах/*аньыылаах$ | |
58 ^Пилат/*Пилат$ | |
56 ^фарисейдар/*фарисейдар$ | |
56 ^иудей/*иудей$ | |
55 ^этилэр/*этилэр$ | |
55 ^киэр/*киэр$ | |
51 ^Саарыстыбатын/*Саарыстыбатын$ | |
49 ^Саарыстыбатыгар/*Саарыстыбатыгар$ | |
coverage: 183762 / 203176 (~0.90444737567429223924) | |
remaining unknown forms: 19414 | |
bible corpus size (tokens): 146801 ../../../data4apertium/corpora/bible/sah.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 3672 | |
Coverage: 90.36% | |
Top unknown words in the corpus: | |
5 Орест | |
4 якутского | |
4 языка | |
3 Вейсенбург | |
2 Ромулус | |
2 киириитиэр | |
2 саарар | |
2 фон | |
2 монастырыгар | |
2 рукопись | |
2 этилэр | |
2 биллибитэ | |
2 К | |
2 Пеллерин | |
2 Кустуктуурап | |
2 буоланнар | |
2 Максимовы | |
2 Маҥаачыйа | |
2 Поликарпов | |
2 сорохторун | |
Translation time: 0.07758116722106934 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
4230 ^и/*и$ | |
3285 ^в/*в$ | |
1983 ^с/*с$ | |
1665 ^formula/*formula$ | |
1593 ^Якутии/*Якутии$ | |
1542 ^c/*c$ | |
1506 ^к/*к$ | |
1347 <^br/*br$ | |
1290 ^на/*на$ | |
1155 ^этилэр/*этилэр$ | |
1140 ^оҥорума/*оҥорума$ | |
963 ^сыллаахтан/*сыллаахтан$ | |
954 ^для/*для$ | |
885 ^по/*по$ | |
867 ^илдьэ/*илдьэ$ | |
813 ^өттүн/*өттүн$ | |
744 ^др/*др$ | |
702 ^ISBN/*ISBN$ | |
693 ^диэни/*диэни$ | |
690 ^не/*не$ | |
coverage: 6155610 / 6860112 (~0.89730459211161567041) | |
remaining unknown forms: 704502 | |
wikipedia corpus size (tokens): 5082510 wiki.txt | |
chv: commit 16c6cacbb54cd238566d5da2b7a807085bb9d6cd | |
stems: 62530 | |
bible coverage | |
Number of tokenised words in the corpus: 196268 | |
Coverage: 94.08% | |
Top unknown words in the corpus: | |
1432 Иисус | |
272 Эй | |
248 Иисуса | |
136 Святой | |
125 Иоанн | |
86 Моисей | |
86 пӗтӗмпех | |
75 кирек | |
67 тӳрре | |
61 шыва | |
61 Симон | |
60 Пилат | |
56 Давид | |
54 тунине | |
53 Павела | |
52 Ирод | |
50 самантрах | |
49 ҫавнашкалах | |
48 Аминь | |
48 пулнӑран | |
Translation time: 3.924166440963745 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
1428 ^Иисус/*Иисус$ | |
248 ^Иисуса/*Иисуса$ | |
244 ^Эй/*Эй$ | |
136 ^Святой/*Святой$ | |
124 ^Иоанн/*Иоанн$ | |
86 ^пӗтӗмпех/*пӗтӗмпех$ | |
86 ^Моисей/*Моисей$ | |
75 ^кирек/*кирек$ | |
67 ^тӳрре/*тӳрре$ | |
61 ^Симон/*Симон$ | |
60 ^Пилат/*Пилат$ | |
56 ^Давид/*Давид$ | |
54 ^тунине/*тунине$ | |
53 ^Павела/*Павела$ | |
52 ^Ирод/*Ирод$ | |
50 ^самантрах/*самантрах$ | |
49 ^ҫавнашкалах/*ҫавнашкалах$ | |
48 ^пулнӑран/*пулнӑран$ | |
47 ^Иуда/*Иуда$ | |
47 ^ӗненекенсем/*ӗненекенсем$ | |
coverage: 175762 / 187417 (~0.93781247165411888996) | |
remaining unknown forms: 11655 | |
bible corpus size (tokens): 133632 ../../../data4apertium/corpora/bible/chv.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 686 | |
Coverage: 92.57% | |
Top unknown words in the corpus: | |
2 Хуть | |
2 тĕрлĕрен | |
2 идиомсем | |
2 тĕпченин | |
2 каяп | |
1 мĕшĕнче | |
1 нимпех | |
1 уйралса | |
1 талккăшпех | |
1 ыттисенчен | |
1 идиомсенчен | |
1 паллăраххисем | |
1 этнографилле | |
1 ыттисемшĕн | |
1 радиокăларăмсемпе | |
1 телепередачăсем | |
1 тулăшĕнче | |
1 кодлăхĕсем | |
1 кодлăхĕсене | |
1 Ăнлантаркăч | |
Translation time: 0.07531213760375977 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
510 ^çултанпа/*çултанпа$ | |
508 ^юпа уйăхĕн/*юпа уйăхĕн$ | |
436 ^пуш уйăхĕн/*пуш уйăхĕн$ | |
382 ^В/*В$ | |
370 ^И/*И$ | |
366 ^çулчен/*çулчен$ | |
318 ^Н/*Н$ | |
258 ^утă уйăхĕн/*утă уйăхĕн$ | |
246 ^чӳк уйăхĕн/*чӳк уйăхĕн$ | |
244 ^ÇП/*ÇП$ | |
224 ^С/*С$ | |
176 ^П/*П$ | |
150 ^çу уйăхĕн/*çу уйăхĕн$ | |
142 ^çурла уйăхĕн/*çурла уйăхĕн$ | |
138 ^и/*и$ | |
128 ^пĕрлешĕвĕн/*пĕрлешĕвĕн$ | |
128 ^çĕртме уйăхĕн/*çĕртме уйăхĕн$ | |
126 ^Я/*Я$ | |
126 ^Г/*Г$ | |
124 ^ç/*ç$ | |
coverage: 374396 / 412594 (~0.90741988492319326020) | |
remaining unknown forms: 38198 | |
wikipedia corpus size (tokens): 295582 wiki.txt | |
kum: commit 162d6e69a4e860d4057489f2fcd97105ce99d9d9 | |
stems: 4949 | |
bible coverage | |
Number of tokenised words in the corpus: 207468 | |
Coverage: 93.33% | |
Top unknown words in the corpus: | |
191 Месигьни | |
144 оьзлени | |
90 ягьудилени | |
90 ягьудилер | |
79 Месигьге | |
79 Я | |
76 таби | |
69 Месигьден | |
62 каламын | |
62 чакъы | |
59 оьзлеге | |
58 сужда | |
57 Шолайлыкъда | |
55 инкар | |
55 Устаз | |
55 Къанунну | |
54 эсе | |
50 я | |
49 сюннет | |
45 ягьуди | |
Translation time: 3.0654819011688232 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
189 ^Месигьни/*Месигьни$ | |
144 ^оьзлени/*оьзлени$ | |
90 ^ягьудилер/*ягьудилер$ | |
90 ^ягьудилени/*ягьудилени$ | |
79 ^Месигьге/*Месигьге$ | |
76 ^Я/*Я$ | |
76 ^таби/*таби$ | |
69 ^Месигьден/*Месигьден$ | |
62 ^чакъы/*чакъы$ | |
62 ^каламын/*каламын$ | |
59 ^оьзлеге/*оьзлеге$ | |
58 ^сужда/*сужда$ | |
57 ^Шолайлыкъда/*Шолайлыкъда$ | |
55 ^Устаз/*Устаз$ | |
55 ^Къанунну/*Къанунну$ | |
55 ^инкар/*инкар$ | |
54 ^эсе/*эсе$ | |
50 ^я/*я$ | |
49 ^сюннет/*сюннет$ | |
45 ^ягьуди/*ягьуди$ | |
coverage: 185086 / 198978 (~0.93018323633768557328) | |
remaining unknown forms: 13892 | |
bible corpus size (tokens): 153845 ../../../data4apertium/corpora/bible/kum.txt | |
kaa: commit 85249552c43627efee4c754ccc7954ac4c8a953e | |
stems: 28474 | |
bible coverage | |
Number of tokenised words in the corpus: 190814 | |
Coverage: 93.79% | |
Top unknown words in the corpus: | |
520 Muxaddes | |
408 ytkeni | |
353 Masix | |
346 A | |
214 z | |
183 Masixtıń | |
172 ǵo | |
161 Petr | |
148 Pavel | |
142 atırǵan | |
139 zi | |
108 Háy | |
106 muxaddes | |
105 Ruwx | |
85 atanaq | |
81 Masixqa | |
75 haq | |
75 ziniń | |
68 bolǵanlıqtan | |
65 Erusalimge | |
Translation time: 4.82056188583374 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
520 ^Muxaddes/*Muxaddes$ | |
408 ^ytkeni/*ytkeni$ | |
283 ^İyemiz/*İyemiz$ | |
257 ^Masix/*Masix$ | |
214 ^z/*z$ | |
172 ^ǵo/*ǵo$ | |
160 ^Petr/*Petr$ | |
148 ^Pavel/*Pavel$ | |
142 ^atırǵan/*atırǵan$ | |
139 ^zi/*zi$ | |
119 ^İyemizdiń/*İyemizdiń$ | |
113 ^İyem/*İyem$ | |
108 ^Háy/*Háy$ | |
106 ^muxaddes/*muxaddes$ | |
105 ^Ruwx/*Ruwx$ | |
105 ^Masixtıń/*Masixtıń$ | |
85 ^atanaq/*atanaq$ | |
75 ^ziniń/*ziniń$ | |
75 ^haq/*haq$ | |
68 ^İysa Masix/*İysa Masix$ | |
coverage: 165508 / 179753 (~0.92075236574632968574) | |
remaining unknown forms: 14245 | |
bible corpus size (tokens): 145429 ../../../data4apertium/corpora/bible/kaa.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4 | |
Coverage: 100.00% | |
Top unknown words in the corpus: | |
Translation time: 0.018476009368896484 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
7550 ^m/*m$ | |
7040 ^a/*a$ | |
6870 ^an/*an$ | |
4240 ^ko/*ko$ | |
3494 ^ı/*ı$ | |
1584 ^bolg/*bolg$ | |
1556 ^z/*z$ | |
1456 ^shıg/*shıg$ | |
1362 ^ın/*ın$ | |
1280 ^bo/*bo$ | |
1220 ^i/*i$ | |
1126 ^g/*g$ | |
1066 ^ku/*ku$ | |
1024 ^du/*du$ | |
1004 ^ju/*ju$ | |
858 ^n/*n$ | |
776 ^r/*r$ | |
748 ^mu/*mu$ | |
722 ^su/*su$ | |
722 ^jag/*jag$ | |
coverage: 429566 / 639422 (~0.67180359762410426917) | |
remaining unknown forms: 209856 | |
wikipedia corpus size (tokens): 337430 wiki.txt | |
tuk: commit c1493edb237396bcc0432743c9ca16b6439fc541 | |
stems: 2986 | |
bible coverage | |
Number of tokenised words in the corpus: 598585 | |
Coverage: 70.38% | |
Top unknown words in the corpus: | |
3337 Reb | |
2415 Rebbiň | |
2359 Ol | |
2228 Men | |
2132 ol | |
1424 olar | |
1366 Olar | |
1309 olaryň | |
1070 oňa | |
1056 Sen | |
1053 Rebbe | |
1048 men | |
1041 olary | |
923 meniň | |
850 Meniň | |
828 seniň | |
782 maňa | |
772 siz | |
768 çünki | |
761 Eý | |
Translation time: 5.660989284515381 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
3167 ^Reb/*Reb$ | |
2289 ^Rebbiň/*Rebbiň$ | |
999 ^Rebbe/*Rebbe$ | |
685 ^Musa/*Musa$ | |
675 ^Ysraýyl/*Ysraýyl$ | |
656 ^Onsoň/*Onsoň$ | |
655 ^Eý/*Eý$ | |
606 ^gurbanlyk/*gurbanlyk$ | |
585 ^Dawut/*Dawut$ | |
556 ^ýanyna/*ýanyna$ | |
548 ^Çünki/*Çünki$ | |
541 ^çünki/*çünki$ | |
531 ^Şeýdip/*Şeýdip$ | |
524 ^bolsun/*bolsun$ | |
515 ^Hökmürowan/*Hökmürowan$ | |
512 ^ysraýyl/*ysraýyl$ | |
435 ^Ýahuda/*Ýahuda$ | |
425 ^kimin/*kimin$ | |
367 ^Dawudyň/*Dawudyň$ | |
350 ^gulak/*gulak$ | |
coverage: 425393 / 571743 (~0.74402834840129218897) | |
remaining unknown forms: 146350 | |
bible corpus size (tokens): 401307 ../../../data4apertium/corpora/bible/tuk.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 129 | |
Coverage: 82.17% | |
Top unknown words in the corpus: | |
2 inženerligi | |
1 Sahypa | |
1 Kimýä | |
1 ähtimal | |
1 şire | |
1 çyg | |
1 tagam | |
1 splawy | |
1 guýmak | |
1 garylmak | |
1 tebigat | |
1 iň | |
1 wajyp | |
1 olaryň | |
1 üýtgeýişleri | |
1 üýtgeýişleriň | |
1 tabyn | |
1 baradaky | |
1 algoritm | |
1 giňişleýin | |
Translation time: 0.012516975402832031 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
17620 ^nji/*nji$ | |
5770 ^njy/*njy$ | |
4258 <^noinclude/*noinclude$ | |
4226 ^iň/*iň$ | |
3610 ^e/*e$ | |
2514 ^I/*I$ | |
2190 ^ady/*ady$ | |
1852 ^B/*B$ | |
1852 ^b/*b$ | |
1654 ^emele/*emele$ | |
1594 ^II/*II$ | |
1558 ^ABŞ/*ABŞ$ | |
1286 ^A/*A$ | |
1164 ^m/*m$ | |
1128 ^ýagny/*ýagny$ | |
1126 ^ýurduň/*ýurduň$ | |
1100 ^la/*la$ | |
1026 ^baradaky/*baradaky$ | |
982 ^SSSR/*SSSR$ | |
970 ^Soltan/*Soltan$ | |
coverage: 1918732 / 2767036 (~0.69342502229822814015) | |
remaining unknown forms: 848304 | |
wikipedia corpus size (tokens): 2021374 wiki.txt | |
bak: commit 2cb89f7bc78526f47da6c6de1b1420475ca85b58 | |
stems: 56463 | |
bible coverage | |
Number of tokenised words in the corpus: 197315 | |
Coverage: 94.29% | |
Top unknown words in the corpus: | |
144 Һөйөнөслө | |
114 китте | |
94 имандаштар | |
75 үҙҙәре | |
71 шундай | |
63 алдына | |
58 ҡыуып | |
54 арҡысаҡҡа | |
53 киткән | |
52 фарисейҙар | |
51 бөтөнөһө | |
50 ҡисса | |
49 дусар | |
49 өҫтөнән | |
48 Ирод | |
48 береһенә | |
48 Имандаштар | |
46 Йәһүҙә | |
46 халҡы | |
45 Яҡуб | |
Translation time: 4.695083379745483 seconds | |
Generating hitparade (might take a bit)! | |
!! Warning: Transducer contains one or more multi-character symbols made up of | |
ASCII characters which are also available as single-character symbols. The | |
input stream will always be tokenised using the longest symbols available. | |
Use the -t option to view the tokenisation. The problematic symbol(s): | |
йә | |
TOP UNKNOWN WORDS: | |
144 ^Һөйөнөслө/*Һөйөнөслө$ | |
122 ^йәки/*йәки$ | |
114 ^китте/*китте$ | |
94 ^имандаштар/*имандаштар$ | |
91 ^йәһүдтәр/*йәһүдтәр$ | |
76 ^йәһүд/*йәһүд$ | |
75 ^үҙҙәре/*үҙҙәре$ | |
71 ^шундай/*шундай$ | |
66 ^йәшәгән/*йәшәгән$ | |
63 ^алдына/*алдына$ | |
62 ^Мәрйәм/*Мәрйәм$ | |
54 ^арҡысаҡҡа/*арҡысаҡҡа$ | |
53 ^киткән/*киткән$ | |
52 ^фарисейҙар/*фарисейҙар$ | |
51 ^бөтөнөһө/*бөтөнөһө$ | |
50 ^эйә/*эйә$ | |
50 ^ҡисса/*ҡисса$ | |
49 ^өҫтөнән/*өҫтөнән$ | |
48 ^Ирод/*Ирод$ | |
48 ^Имандаштар/*Имандаштар$ | |
coverage: 174024 / 186957 (~0.93082366533480960863) | |
remaining unknown forms: 12933 | |
bible corpus size (tokens): 145707 ../../../data4apertium/corpora/bible/bak.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 474 | |
Coverage: 96.20% | |
Top unknown words in the corpus: | |
4 власы | |
2 ө | |
2 н | |
1 ноябрендә | |
1 октябрендә | |
1 суверенитеты | |
1 февраленән | |
1 ТӨРКСОЙ | |
1 Халҡы | |
1 ын | |
1 тауҙарының | |
1 Ямантау | |
1 мәмерйәләре | |
Translation time: 0.058484792709350586 seconds | |
Generating hitparade (might take a bit)! | |
!! Warning: Transducer contains one or more multi-character symbols made up of | |
ASCII characters which are also available as single-character symbols. The | |
input stream will always be tokenised using the longest symbols available. | |
Use the -t option to view the tokenisation. The problematic symbol(s): | |
йә | |
TOP UNKNOWN WORDS: | |
25416 ^се/*се$ | |
14994 ^йәки/*йәки$ | |
13802 ^йәшәй/*йәшәй$ | |
9382 ^formula/*formula$ | |
8564 ^б./*б.$ | |
8318 ^эйә/*эйә$ | |
8228 ^октябренә/*октябренә$ | |
7900 ^йәшәгән/*йәшәгән$ | |
6676 ^һ/*һ$ | |
5590 ^ының/*ының$ | |
5586 ^С/*С$ | |
5256 ^халҡы/*халҡы$ | |
5198 ^сәйәси/*сәйәси$ | |
5080 ^ның/*ның$ | |
4804 ^Н/*Н$ | |
4616 ^ы/*ы$ | |
4510 ^декабрендә/*декабрендә$ | |
4392 ^onlyinclude/*onlyinclude$ | |
4392 <^onlyinclude/*onlyinclude$ | |
4388 ^йә/*йә$ | |
coverage: 20326928 / 23045184 (~0.88204667838625198219) | |
remaining unknown forms: 2718256 | |
wikipedia corpus size (tokens): 17443832 wiki.txt | |
kaz: commit 04f31c3d337e1fa69420b6ffbcab7cc826490032 | |
stems: 37801 | |
bible coverage | |
Number of tokenised words in the corpus: 210008 | |
Coverage: 98.09% | |
Top unknown words in the corpus: | |
66 яһудилер | |
65 парызшылдар | |
63 немесе | |
50 Пилат | |
49 Жохан | |
41 Яһудея | |
36 яһудилердің | |
32 Ғалилея | |
29 Қорынттықтарга | |
27 Лұқа | |
24 Марқа | |
23 Яһудилердің | |
23 Філіп | |
23 дұғай | |
20 Менмін | |
20 Барнаба | |
19 тағзым | |
17 Ыбырайымға | |
17 Тоқтының | |
16 Тімоте | |
Translation time: 9.735079765319824 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
66 ^яһудилер/*яһудилер$ | |
65 ^парызшылдар/*парызшылдар$ | |
63 ^немесе/*немесе$ | |
54 ^сұрақ қойды/*сұрақ қойды$ | |
50 ^Пилат/*Пилат$ | |
49 ^Жохан/*Жохан$ | |
45 ^тығыз байланыста/*тығыз байланыста$ | |
41 ^Яһудея/*Яһудея$ | |
36 ^яһудилердің/*яһудилердің$ | |
32 ^Ғалилея/*Ғалилея$ | |
29 ^Қорынттықтарга/*Қорынттықтарга$ | |
28 ^қызметкерлер мен/*қызметкерлер мен$ | |
27 ^тәлім беріп/*тәлім беріп$ | |
27 ^Лұқа/*Лұқа$ | |
26 ^қатты дауыспен/*қатты дауыспен$ | |
23 ^Яһудилердің/*Яһудилердің$ | |
23 ^Філіп/*Філіп$ | |
23 ^дұғай/*дұғай$ | |
22 ^Марқа/*Марқа$ | |
20 ^тәлім берді/*тәлім берді$ | |
coverage: 175025 / 181646 (~0.96354998183279565749) | |
remaining unknown forms: 6621 | |
bible corpus size (tokens): 151631 ../../../data4apertium/corpora/bible/kaz.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2889 | |
Coverage: 96.16% | |
Top unknown words in the corpus: | |
3 оңт | |
2 тайпалық | |
2 жоспарлық | |
2 Беловеж | |
2 респ | |
2 жоғ | |
2 өкілеттігі | |
2 мореналық | |
2 тен | |
2 ке | |
2 сағ | |
1 Бaтысында | |
1 төмeнгі | |
1 Мұхитқа | |
1 жəне | |
1 aлуан | |
1 Хaлықтың | |
1 православты | |
1 номинал | |
1 Стан | |
Translation time: 0.3648803234100342 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
64394 ^немесе/*немесе$ | |
22897 ^Ресей мемлекеттік/*Ресей мемлекеттік$ | |
16822 ^геоақпараттық/*геоақпараттық$ | |
13675 ^құйылысына/*құйылысына$ | |
12261 ^зерттеулер мен/*зерттеулер мен$ | |
8755 ^Федеративтік/*Федеративтік$ | |
8653 ^FIPS/*FIPS$ | |
8629 ^Дереккөздер/*Дереккөздер$ | |
8297 ^ОКАТО/*ОКАТО$ | |
6619 ^ге/*ге$ | |
5943 ^жылдан бастап/*жылдан бастап$ | |
5871 ^Ока/*Ока$ | |
5753 ^ның/*ның$ | |
5348 ^құйылысынан/*құйылысынан$ | |
4964 ^ЕКАТТЕ/*ЕКАТТЕ$ | |
4884 ^дың/*дың$ | |
4851 ^ду/*ду$ | |
4779 <^br/*br$ | |
4694 ^нің/*нің$ | |
4690 ^formula/*formula$ | |
coverage: 40881272 / 45120039 (~0.90605577712377420596) | |
remaining unknown forms: 4238767 | |
wikipedia corpus size (tokens): 33782767 wiki.txt | |
tat: commit 3c854811ec1251b005529a2da9df8a2d81b93680 | |
stems: 59755 | |
bible coverage | |
Number of tokenised words in the corpus: 196538 | |
Coverage: 98.61% | |
Top unknown words in the corpus: | |
52 фарисейләр | |
30 кайберләре | |
29 Corinthians | |
23 Фарисейләр | |
22 Revelation | |
21 1st | |
20 Петернең | |
17 кайберәүләр | |
17 Тимуте | |
16 2nd | |
15 Антиухеягә | |
14 Һанани | |
14 Әгрип | |
13 Яһүдиядә | |
13 кинаяле | |
13 саддукейлар | |
13 Петергә | |
13 Леви | |
13 Көрнили | |
13 Фисте | |
Translation time: 7.389329671859741 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
52 ^фарисейләр/*фарисейләр$ | |
30 ^кайберләре/*кайберләре$ | |
29 ^Corinthians/*Corinthians$ | |
23 ^Фарисейләр/*Фарисейләр$ | |
22 ^Revelation/*Revelation$ | |
21 ^1st/*1st$ | |
20 ^Петернең/*Петернең$ | |
17 ^Тимуте/*Тимуте$ | |
17 ^кайберәүләр/*кайберәүләр$ | |
16 ^2nd/*2nd$ | |
15 ^Антиухеягә/*Антиухеягә$ | |
14 ^Һанани/*Һанани$ | |
14 ^ле/*ле$ | |
14 ^Әгрип/*Әгрип$ | |
13 ^Яһүдиядә/*Яһүдиядә$ | |
13 ^Фисте/*Фисте$ | |
13 ^саддукейлар/*саддукейлар$ | |
13 ^Петергә/*Петергә$ | |
13 ^Көрнили/*Көрнили$ | |
12 ^Яһүдия/*Яһүдия$ | |
coverage: 183869 / 187028 (~0.98310948093333618496) | |
remaining unknown forms: 3159 | |
bible corpus size (tokens): 144953 ../../../data4apertium/corpora/bible/tat.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 69.23% | |
Top unknown words in the corpus: | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 İnternetı | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
Translation time: 0.12184739112854004 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
23295 ^Русия дәүләт/*Русия дәүләт$ | |
3098 ^yılda/*yılda$ | |
2478 ^нче/*нче$ | |
2002 ^belän/*belän$ | |
1550 ^гә/*гә$ | |
1426 <^br/*br$ | |
1293 ^formula/*formula$ | |
1198 ^00/*00$ | |
1007 ^öçen/*öçen$ | |
972 ^урынган/*урынган$ | |
904 ^bulğan/*bulğan$ | |
867 ^buyınça/*buyınça$ | |
837 ^bula/*bula$ | |
827 ^soñ/*soñ$ | |
779 ^елга Ука/*елга Ука$ | |
766 ^енче/*енче$ | |
766 ^iñ/*iñ$ | |
728 ^үлсәү/*үлсәү$ | |
710 ^каласынан/*каласынан$ | |
707 ^ul/*ul$ | |
coverage: 8704273 / 9437312 (~0.92232544605921686175) | |
remaining unknown forms: 733039 | |
wikipedia corpus size (tokens): 6884329 wiki.txt | |
gag: commit 3c6bf03fcdcb84bf35831d6e5ebc39f28e74087c | |
stems: 6470 | |
bible coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2694 | |
Coverage: 89.35% | |
Top unknown words in the corpus: | |
7 vaatіz | |
5 Matthew | |
5 bіlgіçlerі | |
3 Vavіlon | |
3 gebä | |
3 angіl | |
3 İudeyanın | |
3 Vіfleem | |
3 Galіleya | |
3 dіavol | |
3 şafk | |
3 hertürlü | |
2 esіrlііnä | |
2 İudanın | |
2 Vіfleemä | |
2 İudeyadan | |
2 yakışıklı | |
2 meyva | |
2 Galіleyadan | |
2 göl | |
Translation time: 0.06863141059875488 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
129 ^daava/*daava$ | |
126 ^İі/*İі$ | |
106 ^bіrkіmsey/*bіrkіmsey$ | |
75 ^vaatіz/*vaatіz$ | |
73 ^hertürlü/*hertürlü$ | |
70 ^angіl/*angіl$ | |
62 ^beterіnä/*beterіnä$ | |
56 ^іudeylär/*іudeylär$ | |
50 ^Pіlat/*Pіlat$ | |
47 ^stavroza/*stavroza$ | |
46 ^İnsan/*İnsan$ | |
46 ^deyärdіlär/*deyärdіlär$ | |
46 ^cumertesі/*cumertesі$ | |
44 ^іşіdіp/*іşіdіp$ | |
43 ^deyärdі/*deyärdі$ | |
40 ^olasınız/*olasınız$ | |
40 ^güüdä/*güüdä$ | |
39 ^іnanç/*іnanç$ | |
39 ^butürlü/*butürlü$ | |
38 ^İuda/*İuda$ | |
coverage: 169064 / 184869 (~0.91450702930182994445) | |
remaining unknown forms: 15805 | |
bible corpus size (tokens): 131082 ../../../data4apertium/corpora/bible/gag.txt | |
wikipedia coverage | |
Number of tokenised words in the corpus: 478 | |
Coverage: 93.72% | |
Top unknown words in the corpus: | |
2 Aarı | |
2 mikrotemaları | |
2 abzaț | |
1 notoc | |
1 noeditsection | |
1 Ağrı | |
1 viridis | |
1 gruz | |
1 აფხაზეთი | |
1 kismi | |
1 Topraaın | |
1 sunnü | |
1 mikrotema | |
1 abzațın | |
1 ercääz | |
1 başlıkları | |
1 Rhodeus | |
1 sericeus | |
1 akarlarda | |
1 göllerde | |
Translation time: 0.03508162498474121 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
522 ^edelir/*edelir$ | |
61 ^İnsannar/*İnsannar$ | |
38 ^İngiliz/*İngiliz$ | |
32 ^onlyinclude/*onlyinclude$ | |
32 ^kasabasiTürkiyenın/*kasabasiTürkiyenın$ | |
31 <^onlyinclude/*onlyinclude$ | |
29 ^İlk/*İlk$ | |
28 ^gösterier/*gösterier$ | |
25 ^İki/*İki$ | |
24 ^İslam/*İslam$ | |
22 ^İspan/*İspan$ | |
21 ^İnsan/*İnsan$ | |
20 ^İkinci/*İkinci$ | |
19 ^İşbirlii/*İşbirlii$ | |
19 ^İnsannarı/*İnsannarı$ | |
18 ^yazier/*yazier$ | |
17 ^Karadaa/*Karadaa$ | |
17 ^İngilizçe/*İngilizçe$ | |
16 ^VORONİN/*VORONİN$ | |
15 ^br/*br$ | |
coverage: 159054 / 173563 (~0.91640499415197939653) | |
remaining unknown forms: 14509 | |
wikipedia corpus size (tokens): 123741 wiki.txt | |
uzb: commit b5f2b1242b784271ed4c30acee83048e97e109bc | |
stems: 36684 | |
bible coverage | |
Number of tokenised words in the corpus: 198551 | |
Coverage: 95.11% | |
Top unknown words in the corpus: | |
185 ko | |
71 g | |
61 so | |
48 cho | |
41 Kimki | |
36 lasizlar | |
31 bilasizlar | |
30 emasmi | |
28 qiladigan | |
28 Acts | |
27 go | |
26 lur | |
26 Shoul | |
24 emasman | |
23 vahiy | |
23 III | |
22 Isha | |
22 yozilganidek | |
22 Revelation | |
21 qilasizlar | |
Translation time: 2.5924930572509766 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
130 ^Iso Masih/*Iso Masih$ | |
78 ^Iso Masihning/*Iso Masihning$ | |
38 ^Kimki/*Kimki$ | |
33 ^bo‘lasizlar/*bo‘lasizlar$ | |
31 ^bilasizlar/*bilasizlar$ | |
30 ^emasmi/*emasmi$ | |
28 ^qiladigan/*qiladigan$ | |
28 ^Iso Masihga/*Iso Masihga$ | |
28 ^Acts/*Acts$ | |
26 ^bo‘lur/*bo‘lur$ | |
24 ^emasman/*emasman$ | |
23 ^vahiy/*vahiy$ | |
23 ^Shoul/*Shoul$ | |
23 ^III/*III$ | |
22 ^yozilganidek/*yozilganidek$ | |
22 ^Revelation/*Revelation$ | |
22 ^bo‘la/*bo‘la$ | |
21 ^qilasizlar/*qilasizlar$ | |
21 ^Isha/*Isha$ | |
21 ^1st/*1st$ | |
coverage: 176301 / 185949 (~0.94811480567252311118) | |
remaining unknown forms: 9648 | |
bible corpus size (tokens): 131151 ../../../data4apertium/corpora/bible/uzb.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4163 | |
Coverage: 90.37% | |
Top unknown words in the corpus: | |
8 sr | |
7 dan | |
6 srlarda | |
5 Tuproqqalʼa | |
4 2ming | |
4 Herirud | |
3 MDH | |
3 shyo | |
3 reytingida | |
3 GFP | |
3 Tajan | |
3 3ming | |
3 xorazmiylar | |
3 Kot | |
2 Global | |
2 vertolyot | |
2 reytingga | |
2 Murgʻob | |
2 Gekatey | |
2 Gerodot | |
Translation time: 0.08690857887268066 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
10320 ^dan/*dan$ | |
7504 ^G/*G$ | |
7308 ^B/*B$ | |
6516 ^b/*b$ | |
2853 ^g/*g$ | |
2627 ^ishlab chiqarish/*ishlab chiqarish$ | |
1539 ^y/*y$ | |
1100 ^ko/*ko$ | |
1095 ^qishlogʻi/*qishlogʻi$ | |
1020 ^qiladigan/*qiladigan$ | |
923 ^the/*the$ | |
909 ^ishlab chiqariladi/*ishlab chiqariladi$ | |
890 ^в/*в$ | |
880 ^boshligʻi/*boshligʻi$ | |
848 ^an/*an$ | |
843 ^beradigan/*beradigan$ | |
837 ^ishlatiladigan/*ishlatiladigan$ | |
798 ^tarmogʻi/*tarmogʻi$ | |
759 ^der/*der$ | |
730 ^Gʻ/*Gʻ$ | |
coverage: 11813681 / 13141843 (~0.89893639727700292874) | |
remaining unknown forms: 1328162 | |
wikipedia corpus size (tokens): 9183827 wiki.txt | |
crh: commit e64d105662e9f4776368fbfdf47de37635e557bf | |
stems: 13631 | |
bible coverage | |
Number of tokenised words in the corpus: 118941 | |
Coverage: 37.10% | |
Top unknown words in the corpus: | |
1566 ве | |
1022 Иса | |
910 бир | |
880 деди | |
729 ичюн | |
677 исе | |
624 эди | |
578 да | |
556 деп | |
505 Мен | |
501 бу | |
464 де | |
420 адам | |
352 оларгъа | |
339 не | |
336 Онынъ | |
319 Алланынъ | |
315 сонъ | |
296 Бу | |
285 оны | |
Translation time: 0.378948450088501 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
1566 ^ве/*ве$ | |
1022 ^Иса/*Иса$ | |
910 ^бир/*бир$ | |
880 ^деди/*деди$ | |
729 ^ичюн/*ичюн$ | |
677 ^исе/*исе$ | |
624 ^эди/*эди$ | |
578 ^да/*да$ | |
556 ^деп/*деп$ | |
504 ^Мен/*Мен$ | |
501 ^бу/*бу$ | |
464 ^де/*де$ | |
420 ^адам/*адам$ | |
352 ^оларгъа/*оларгъа$ | |
339 ^не/*не$ | |
336 ^Онынъ/*Онынъ$ | |
319 ^Алланынъ/*Алланынъ$ | |
315 ^сонъ/*сонъ$ | |
296 ^Бу/*Бу$ | |
285 ^оны/*оны$ | |
coverage: 39153 / 113961 (~0.34356490378287308816) | |
remaining unknown forms: 74808 | |
bible corpus size (tokens): 82456 ../../../data4apertium/corpora/bible/crh.txt | |
wikipedia coverage | |
Number of tokenised words in the corpus: 5006 | |
Coverage: 92.75% | |
Top unknown words in the corpus: | |
12 Amdi | |
10 Abibulla | |
8 Odabaş | |
5 Giraybay | |
5 nemse | |
4 Ablây | |
4 افغانستان | |
4 Afġānistān | |
3 ci | |
3 Abeşistan | |
3 Aluston | |
2 ac | |
2 ae | |
2 af | |
2 ag | |
2 ai | |
2 am | |
2 ao | |
2 Antarktidanıñ | |
2 au | |
Translation time: 0.2036139965057373 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
160 ^br/*br$ | |
67 ^i/*i$ | |
61 ^İçki/*İçki$ | |
56 ^bir devlet/*bir devlet$ | |
27 ^İmperiyası/*İmperiyası$ | |
23 ^Edil/*Edil$ | |
22 ^yıl devamında/*yıl devamında$ | |
21 ^Tavriya/*Tavriya$ | |
21 ^ocalıq/*ocalıq$ | |
21 ^İmperiyasınıñ/*İmperiyasınıñ$ | |
19 ^Osmanlı Devletiniñ/*Osmanlı Devletiniñ$ | |
19 ^İnternet/*İnternet$ | |
19 ^Azaq/*Azaq$ | |
18 ^the/*the$ | |
18 ^of/*of$ | |
18 ^latn/*latn$ | |
18 ^cyrl/*cyrl$ | |
18 ^crh/*crh$ | |
17 ^Toqtamış/*Toqtamış$ | |
17 ^İnd/*İnd$ | |
coverage: 226439 / 243821 (~0.92870999626775380299) | |
remaining unknown forms: 17382 | |
wikipedia corpus size (tokens): 173704 wiki.txt | |
kir: commit caec6e6e4bd6e33be07b36820bd06ca349423497 | |
stems: 15886 | |
bible coverage | |
Number of tokenised words in the corpus: 201319 | |
Coverage: 94.95% | |
Top unknown words in the corpus: | |
946 Кудай | |
597 Кудайдын | |
305 Кудайга | |
94 Кудайды | |
90 Кудайдан | |
58 Ысман | |
43 Ыбрайым | |
38 Жүйүт | |
38 расмисинен | |
29 Corinthians | |
28 Барнап | |
28 Шабыл | |
27 чөмүлдүрүү | |
24 Кудайыбыз | |
23 Ыбрайымдын | |
23 чөмүлүү | |
22 Revelation | |
21 аян | |
21 алышпады | |
21 1st | |
Translation time: 6.416393756866455 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
935 ^Кудай/*Кудай$ | |
593 ^Кудайдын/*Кудайдын$ | |
302 ^Кудайга/*Кудайга$ | |
93 ^Кудайды/*Кудайды$ | |
90 ^Кудайдан/*Кудайдан$ | |
58 ^Ысман/*Ысман$ | |
43 ^Ыбрайым/*Ыбрайым$ | |
38 ^расмисинен/*расмисинен$ | |
38 ^Жүйүт/*Жүйүт$ | |
36 ^мына бул/*мына бул$ | |
29 ^Corinthians/*Corinthians$ | |
28 ^Шабыл/*Шабыл$ | |
28 ^Барнап/*Барнап$ | |
27 ^чөмүлдүрүү/*чөмүлдүрүү$ | |
23 ^Ыбрайымдын/*Ыбрайымдын$ | |
23 ^чөмүлүү/*чөмүлүү$ | |
22 ^Revelation/*Revelation$ | |
21 ^Кудайыбыз/*Кудайыбыз$ | |
21 ^аян/*аян$ | |
21 ^1st/*1st$ | |
coverage: 180457 / 191337 (~0.94313697821121894877) | |
remaining unknown forms: 10880 | |
bible corpus size (tokens): 148445 ../../../data4apertium/corpora/bible/kir.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 9198 | |
Coverage: 91.01% | |
Top unknown words in the corpus: | |
15 С | |
10 К | |
7 комплекстик | |
7 Н | |
6 закон | |
6 Кыргызжер | |
5 П | |
5 В | |
5 масштабдагы | |
5 Д | |
5 Памир | |
5 каганаты | |
4 Ч | |
4 Гумбольдт | |
4 Риттер | |
4 чарбалык | |
4 Тескей | |
4 ч | |
4 Арсланбаб | |
4 жаңгак | |
Translation time: 0.32999253273010254 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
21306 <^br/*br$ | |
7264 ^айрыгы/*айрыгы$ | |
6973 ^К/*К$ | |
6399 ^В/*В$ | |
6069 ^к/*к$ | |
5462 ^Орусиядагы дарыя/*Орусиядагы дарыя$ | |
5231 ^31-декабрь/*31-декабрь$ | |
4556 ^И/*И$ | |
3850 ^и/*и$ | |
3606 – ^Ф/*Ф$ | |
3434 ^Ф/*Ф$ | |
3345 ^С./*С.$ | |
3209 ^ж/*ж$ | |
3189 ^Н/*Н$ | |
2796 ^Г/*Г$ | |
2355 ^Д/*Д$ | |
2181 ^П/*П$ | |
2159 ^в/*в$ | |
2157 ^с./*с.$ | |
2109 ^Ү/*Ү$ | |
coverage: 9903219 / 11390642 (~0.86941710572591079590) | |
remaining unknown forms: 1487423 | |
wikipedia corpus size (tokens): 8321420 wiki.txt | |
tyv: commit f89afc383b03e30638da11fb296d93d7da2f7a0e | |
stems: 11845 | |
bible coverage | |
Number of tokenised words in the corpus: 219959 | |
Coverage: 96.11% | |
Top unknown words in the corpus: | |
82 Бижилгеде | |
62 бараалгакчылары | |
49 бараалгакчызы | |
45 угаадыглыг | |
45 шыдажып | |
41 израиль | |
41 экиртип | |
37 бузуттуг | |
34 согур | |
33 эккеп | |
32 эрлик | |
32 дирлип | |
32 хевин | |
29 Аминь | |
29 Варнава | |
29 Corinthians | |
28 шыдамык | |
26 доңгая | |
26 алгыржып | |
26 соп | |
Translation time: 3.948421001434326 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
82 ^Бижилгеде/*Бижилгеде$ | |
62 ^бараалгакчылары/*бараалгакчылары$ | |
49 ^бараалгакчызы/*бараалгакчызы$ | |
45 ^шыдажып/*шыдажып$ | |
45 ^угаадыглыг/*угаадыглыг$ | |
41 ^экиртип/*экиртип$ | |
41 ^израиль/*израиль$ | |
37 ^бузуттуг/*бузуттуг$ | |
34 ^согур/*согур$ | |
33 ^эккеп/*эккеп$ | |
32 ^эрлик/*эрлик$ | |
32 ^хевин/*хевин$ | |
32 ^дирлип/*дирлип$ | |
29 ^Варнава/*Варнава$ | |
29 ^Аминь/*Аминь$ | |
29 ^Corinthians/*Corinthians$ | |
28 ^шыдамык/*шыдамык$ | |
26 ^соп/*соп$ | |
26 ^доңгая/*доңгая$ | |
26 ^алгыржып/*алгыржып$ | |
coverage: 200626 / 209953 (~0.95557577172033740885) | |
remaining unknown forms: 9327 | |
bible corpus size (tokens): 156126 ../../../data4apertium/corpora/bible/tyv.txt | |
wikipedia coverage | |
Number of tokenised words in the corpus: 413 | |
Coverage: 94.19% | |
Top unknown words in the corpus: | |
4 quot | |
2 калмык | |
1 х | |
1 талакы | |
1 глобус | |
1 шиштейин | |
1 Бажин | |
1 субурган | |
1 топограф | |
1 Каррутерс | |
1 Михаилның | |
1 мрамор | |
1 силбип | |
1 үндүсүн | |
1 тоолдап | |
1 Гэсэр | |
1 эпостуң | |
1 1990чч | |
1 ля | |
1 минор | |
Translation time: 0.022209882736206055 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
364 ^и/*и$ | |
331 ^в/*в$ | |
330 -^ниң/*ниң$ | |
146 -^ның/*ның$ | |
130 ^на/*на$ | |
120 ^анаа/*анаа$ | |
112 ^poem/*poem$ | |
112 <^poem/*poem$ | |
104 ^о/*о$ | |
102 ^с/*с$ | |
84 ^болгaш/*болгaш$ | |
78 ^кү/*кү$ | |
77 ^арай/*арай$ | |
71 ^В/*В$ | |
68 ^артизи/*артизи$ | |
63 ^Истaнбул/*Истaнбул$ | |
61 ^чуртап/*чуртап$ | |
58 ^е/*е$ | |
53 ^по/*по$ | |
51 ^гол/*гол$ | |
coverage: 410599 / 465779 (~0.88153179941560267852) | |
remaining unknown forms: 55180 | |
wikipedia corpus size (tokens): 337589 wiki.txt | |
uig: commit 7ce96d726371b41ac371745ae5267fa246557144 | |
stems: 25385 | |
bible coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 690462 | |
Coverage: 91.64% | |
Top unknown words in the corpus: | |
2541 ئۇالر | |
1345 ئۇالرنىڭ | |
914 ئۇالرغا | |
894 ئۇالرنى | |
448 ئىسرائىلالر | |
288 ئىشالرنى | |
271 ئېتىقادچىالر | |
251 ئىسرائىلالرنىڭ | |
240 ئاڭالپ | |
229 يوشۇۋا | |
228 قىلىڭالر | |
225 ئەۋالدلىرى | |
208 باشالپ | |
205 قۇالق | |
199 بوالر | |
185 ئىسرائىلالرنى | |
184 شۇنداقال | |
181 يەھۇدىيالر | |
180 قىالر | |
178 ئىسرائىلالرغا | |
Translation time: 13.998081922531128 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
1534 ^ئۇالر/*ئۇالر$ | |
649 ^ئۇالر/*ئۇالر$ | |
615 ^ئۇالرغا/*ئۇالرغا$ | |
605 ^ئۇالرنىڭ/*ئۇالرنىڭ$ | |
521 ^ئۇالرنىڭ/*ئۇالرنىڭ$ | |
521 ^ئۇالرنى/*ئۇالرنى$ | |
343 ^ئۇالر/*ئۇالر$ | |
272 ^ئۇالرنى/*ئۇالرنى$ | |
258 ^ئىشالرنى/*ئىشالرنى$ | |
225 ^ئىسرائىلالر/*ئىسرائىلالر$ | |
216 ^ئۇالرغا/*ئۇالرغا$ | |
213 ^ئۇالرنىڭ/*ئۇالرنىڭ$ | |
212 ^ئەۋالدلىرى/*ئەۋالدلىرى$ | |
210 ^ئاڭالپ/*ئاڭالپ$ | |
185 ^ئېتىقادچىالر/*ئېتىقادچىالر$ | |
184 ^باشالپ/*باشالپ$ | |
181 ^بوالر/*بوالر$ | |
178 ^قىالر/*قىالر$ | |
154 ^ئىسرائىلالر/*ئىسرائىلالر$ | |
144 ^ئىسرائىلالرنىڭ/*ئىسرائىلالرنىڭ$ | |
coverage: 567721 / 627986 (~0.90403448484520355549) | |
remaining unknown forms: 60265 | |
bible corpus size (tokens): 413990 ../../../data4apertium/corpora/bible/uig.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 203 | |
Coverage: 86.21% | |
Top unknown words in the corpus: | |
3 كومپۇتەر | |
1 ۋىكىپىدىيە | |
1 ۋىكىپېدىيەنىڭ | |
1 نۇسخاسىغا | |
1 نەۋرۇز | |
1 بايرامى | |
1 بیلگیسايار | |
1 مۈھەندیسلیغی | |
1 ھەلقی | |
1 نھايیتی | |
1 ۋەئی | |
1 شلیتیشیمیزگە | |
1 ھیتاي | |
1 كیشیلیریمیزئو | |
1 قۇۋاتقان | |
1 يیتیشیۋاتقان | |
1 مما | |
1 بیزنیڭئو | |
1 مۇمی | |
1 سەلیشتۇرغاندا | |
Translation time: 0.056775808334350586 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
4284 ^بولۇپ،/*بولۇپ،$ | |
1108 ^كېيىن،/*كېيىن،$ | |
1076 ^/*$ | |
1040 ^بولسا،/*بولسا،$ | |
917 ^ﯞﻩ/*ﯞﻩ$ | |
868 ^قىلىپ،/*قىلىپ،$ | |
791 ^كەنتى،/*كەنتى،$ | |
720 ^ـ/*ـ$ | |
691 ^بار،/*بار،$ | |
552 ^ئەمەس،/*ئەمەس،$ | |
511 ^بولسىمۇ،/*بولسىمۇ،$ | |
499 ^گە/*گە$ | |
471 ^بىلەن،/*بىلەن،$ | |
459 ^ئۈچۈن،/*ئۈچۈن،$ | |
455 ^بولىدۇ،/*بولىدۇ،$ | |
446 ^غا/*غا$ | |
424 ^مەسىلەن،/*مەسىلەن،$ | |
399 ^يۇقىرى،/*يۇقىرى،$ | |
371 ^بولغاچقا،/*بولغاچقا،$ | |
353 ^ئەزاسى،/*ئەزاسى،$ | |
coverage: 1816083 / 2124718 (~0.85474072323950754877) | |
remaining unknown forms: 308635 | |
wikipedia corpus size (tokens): 1791416 wiki.txt | |
aze: commit da572614b8d54f1caef8d0eabe11ca2e669edf42 | |
stems: 11583 | |
bible coverage | |
Number of tokenised words in the corpus: 753060 | |
Coverage: 56.79% | |
Top unknown words in the corpus: | |
12538 və | |
3642 Rəbb | |
3569 də | |
2634 ilə | |
2451 Rəbbin | |
2397 görə | |
2021 idi | |
1971 hər | |
1834 Çünki | |
1813 oğlu | |
1729 Mən | |
1624 isə | |
1347 etdi | |
1277 qədər | |
1265 İsa | |
1207 Allah | |
1151 çünki | |
1136 Allahın | |
1080 Ey | |
940 yanına | |
Translation time: 6.118170738220215 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
12524 ^və/*və$ | |
3629 ^Rəbb/*Rəbb$ | |
3573 ^də/*də$ | |
2630 ^ilə/*ilə$ | |
2430 ^Rəbbin/*Rəbbin$ | |
2397 ^görə/*görə$ | |
2020 ^idi/*idi$ | |
1833 ^Çünki/*Çünki$ | |
1813 ^oğlu/*oğlu$ | |
1718 ^Mən/*Mən$ | |
1623 ^isə/*isə$ | |
1277 ^qədər/*qədər$ | |
1265 ^İsa/*İsa$ | |
1204 ^Allah/*Allah$ | |
1147 ^çünki/*çünki$ | |
1124 ^Allahın/*Allahın$ | |
1078 ^Ey/*Ey$ | |
1044 ^etdi/*etdi$ | |
940 ^yanına/*yanına$ | |
923 ^mənə/*mənə$ | |
coverage: 386030 / 709145 (~0.54435975717236954361) | |
remaining unknown forms: 323115 | |
bible corpus size (tokens): 534925 ../../../data4apertium/corpora/bible/aze.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 41 | |
Coverage: 75.61% | |
Top unknown words in the corpus: | |
1 Səhifə | |
1 ing | |
1 Inet | |
1 I | |
1 ru | |
1 Инт | |
1 Сеть | |
1 tr | |
1 Genel | |
1 TCP | |
Translation time: 0.03316617012023926 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
762570 ^və/*və$ | |
225632 ^ci/*ci$ | |
224064 ^ilə/*ilə$ | |
221050 ^ildə/*ildə$ | |
148666 ^də/*də$ | |
110270 ^Azərbaycan/*Azərbaycan$ | |
98792 ^isə/*isə$ | |
72252 ^cü/*cü$ | |
67521 ^tərəfindən/*tərəfindən$ | |
64576 ^görə/*görə$ | |
58573 ^idi/*idi$ | |
57227 ^cı/*cı$ | |
54097 ^olaraq/*olaraq$ | |
50809 ^cu/*cu$ | |
47618 ^olmuşdur/*olmuşdur$ | |
43528 ^qədər/*qədər$ | |
36268 ^illərdə/*illərdə$ | |
30970 ^üzrə/*üzrə$ | |
30823 ^ildən/*ildən$ | |
30705 ^olub/*olub$ | |
coverage: 16105440 / 35125322 (~0.45851366145483306886) | |
remaining unknown forms: 19019882 | |
wikipedia corpus size (tokens): 26727831 wiki.txt | |
kjh: commit b624f2e589f1421d15c962506943abd360894742 | |
stems: 710 | |
bible coverage | |
Number of tokenised words in the corpus: 175448 | |
Coverage: 47.63% | |
Top unknown words in the corpus: | |
1926 паза | |
1210 Иисус | |
1085 даа | |
979 тізең | |
957 тіп | |
851 дее | |
720 ниме | |
681 ӱчӱн | |
659 прай | |
625 Хан | |
607 Че | |
577 теен | |
525 че | |
497 хада | |
436 нимес | |
426 парған | |
342 киліп | |
334 нооза | |
329 Аннаңар | |
321 ағаа | |
Translation time: 0.7587523460388184 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
1909 ^паза/*паза$ | |
1180 ^Иисус/*Иисус$ | |
1084 ^даа/*даа$ | |
978 ^тізең/*тізең$ | |
850 ^дее/*дее$ | |
771 ^тіп/*тіп$ | |
718 ^ниме/*ниме$ | |
681 ^ӱчӱн/*ӱчӱн$ | |
643 ^прай/*прай$ | |
570 ^Че/*Че$ | |
532 ^Хан/*Хан$ | |
521 ^че/*че$ | |
496 ^хада/*хада$ | |
442 ^теен/*теен$ | |
436 ^нимес/*нимес$ | |
426 ^парған/*парған$ | |
342 ^киліп/*киліп$ | |
334 ^нооза/*нооза$ | |
317 ^ағаа/*ағаа$ | |
315 ^кӧп/*кӧп$ | |
coverage: 92210 / 184094 (~0.50088541723250078764) | |
remaining unknown forms: 91884 | |
bible corpus size (tokens): 137272 ../../../data4apertium/corpora/bible/kjh.txt | |
krc: commit e9f9e9c1406aae02a973147cce1b1f49e21b282c | |
stems: 8551 | |
bible coverage | |
Number of tokenised words in the corpus: 193680 | |
Coverage: 85.41% | |
Top unknown words in the corpus: | |
802 Исса | |
444 Иссаны | |
416 Масих | |
313 Раббий | |
287 юсюнден | |
242 Кесини | |
217 кесини | |
168 санга | |
156 Раббийни | |
148 муну | |
144 Масихни | |
123 Иссагъа | |
121 жууапха | |
119 Муну | |
115 Пауул | |
113 жууап | |
110 этигиз | |
109 махтау | |
96 Нюр | |
96 Раббийибиз | |
Translation time: 1.7640955448150635 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
801 ^Исса/*Исса$ | |
444 ^Иссаны/*Иссаны$ | |
414 ^Масих/*Масих$ | |
295 ^Раббий/*Раббий$ | |
287 ^юсюнден/*юсюнден$ | |
241 ^Кесини/*Кесини$ | |
217 ^кесини/*кесини$ | |
168 ^санга/*санга$ | |
156 ^Раббийни/*Раббийни$ | |
148 ^муну/*муну$ | |
144 ^Масихни/*Масихни$ | |
123 ^Иссагъа/*Иссагъа$ | |
121 ^жууапха/*жууапха$ | |
116 ^Муну/*Муну$ | |
115 ^Пауул/*Пауул$ | |
113 ^жууап/*жууап$ | |
109 ^махтау/*махтау$ | |
101 ^этигиз/*этигиз$ | |
96 ^Раббийибиз/*Раббийибиз$ | |
95 ^Нюр/*Нюр$ | |
coverage: 156940 / 185154 (~0.84761873899564686693) | |
remaining unknown forms: 28214 | |
bible corpus size (tokens): 142337 ../../../data4apertium/corpora/bible/krc.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 4944 | |
Coverage: 86.06% | |
Top unknown words in the corpus: | |
98 домениди | |
5 de | |
3 af | |
3 ни | |
3 et | |
3 uk | |
3 pe | |
3 tl | |
3 рф | |
2 ac | |
2 ad | |
2 ae | |
2 ag | |
2 ai | |
2 al | |
2 am | |
2 an | |
2 ao | |
2 aq | |
2 ar | |
Translation time: 0.035471439361572266 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
398 ^кюнюдю/*кюнюдю$ | |
344 ^юсюнден/*юсюнден$ | |
234 ^кесини/*кесини$ | |
176 ^ни/*ни$ | |
110 ^в/*в$ | |
104 ^бириди/*бириди$ | |
99 ^кеслерини/*кеслерини$ | |
98 ^домениди/*домениди$ | |
76 <^br/*br$ | |
56 ^the/*the$ | |
55 ^ну/*ну$ | |
49 ^ючюнчю/*ючюнчю$ | |
48 ^халкъыны/*халкъыны$ | |
47 ^аралыгъыды/*аралыгъыды$ | |
44 ^ге/*ге$ | |
43 ^чи/*чи$ | |
43 ^къралларыны/*къралларыны$ | |
41 ^бёлеклери/*бёлеклери$ | |
40 ^на/*на$ | |
38 ^шахарыды/*шахарыды$ | |
coverage: 272350 / 306707 (~0.88798103727661905336) | |
remaining unknown forms: 34357 | |
wikipedia corpus size (tokens): 227261 wiki.txt | |
ota: commit 788a52c454b3e6e815df89e7b09069da16a40a44 | |
stems: 77 | |
bible coverage | |
Number of tokenised words in the corpus: 1 | |
Coverage: 100.00% | |
Top unknown words in the corpus: | |
Translation time: 0.0038721561431884766 seconds | |
cat: ../../../data4apertium/corpora/bible/ota.txt: Datei oder Verzeichnis nicht gefunden | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible corpus size (tokens): | |
alt: commit 9fd53d1efb6e6556848ccb6695d7d7a597164f73 | |
stems: 182 | |
bible coverage | |
Number of tokenised words in the corpus: 194244 | |
Coverage: 61.89% | |
Top unknown words in the corpus: | |
354 ончо | |
335 1 | |
313 12 | |
302 13 | |
300 9 | |
293 14 | |
290 8 | |
289 6 | |
288 11 | |
286 2 | |
284 10 | |
283 3 | |
281 4 | |
280 5 | |
272 15 | |
272 Кайракан | |
268 7 | |
261 ажыра | |
258 18 | |
256 17 | |
Translation time: 1.035318374633789 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
354 ^ончо/*ончо$ | |
335 ^1/*1$ | |
313 ^12/*12$ | |
302 ^13/*13$ | |
300 ^9/*9$ | |
293 ^14/*14$ | |
290 ^8/*8$ | |
289 ^6/*6$ | |
288 ^11/*11$ | |
286 ^2/*2$ | |
284 ^10/*10$ | |
283 ^3/*3$ | |
281 ^4/*4$ | |
280 ^5/*5$ | |
272 ^Кайракан/*Кайракан$ | |
272 ^15/*15$ | |
268 ^7/*7$ | |
261 ^ажыра/*ажыра$ | |
258 ^18/*18$ | |
256 ^17/*17$ | |
coverage: 110751 / 185013 (~0.59861198942776994049) | |
remaining unknown forms: 74262 | |
bible corpus size (tokens): 133151 ../../../data4apertium/corpora/bible/alt.txt | |
bible coverage | |
Number of tokenised words in the corpus: 481376 | |
Coverage: 93.90% | |
Top unknown words in the corpus: | |
829 nın | |
809 ın | |
627 a | |
407 na | |
289 ı | |
268 i | |
267 nun | |
203 dan | |
187 Kâhin | |
179 ndan | |
174 yı | |
161 nı | |
159 Irmağı | |
154 Filistliler | |
152 Efrayim | |
151 nin | |
142 Yoav | |
137 Manaşşe | |
127 Moav | |
122 nde | |
Translation time: 11.894779682159424 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
842 ^nın/*nın$ | |
810 ^ın/*ın$ | |
639 ^a/*a$ | |
407 ^na/*na$ | |
293 ^ı/*ı$ | |
269 ^i/*i$ | |
267 ^nun/*nun$ | |
238 ^dan/*dan$ | |
223 ^şöyle dedi/*şöyle dedi$ | |
187 ^Kâhin/*Kâhin$ | |
179 ^ndan/*ndan$ | |
176 ^yı/*yı$ | |
161 ^nı/*nı$ | |
159 ^Irmağı/*Irmağı$ | |
154 ^Filistliler/*Filistliler$ | |
152 ^Efrayim/*Efrayim$ | |
151 ^nin/*nin$ | |
142 ^Yoav/*Yoav$ | |
137 ^Manaşşe/*Manaşşe$ | |
126 ^Moav/*Moav$ | |
coverage: 408805 / 439457 (~0.93025028614858791645) | |
remaining unknown forms: 30652 | |
bible corpus size (tokens): 309293 ../../../data4apertium/corpora/bible/tur.txt | |
wikipedia coverage | |
Error: Malformed input stream.Number of tokenised words in the corpus: 16711 | |
Coverage: 89.29% | |
Top unknown words in the corpus: | |
134 ın | |
124 Temuçin | |
40 nin | |
38 ı | |
38 a | |
36 i | |
34 Camuka | |
33 Jin | |
33 nın | |
29 Cuci | |
27 Harezmşah | |
22 Cebe | |
17 Mukhulai | |
17 Subutay | |
16 Yesügey | |
14 Börte | |
14 Alaeddin | |
13 Höelin | |
13 Suphi | |
12 Şira | |
Translation time: 0.6098487377166748 seconds | |
Generating hitparade (might take a bit)! | |
TOP UNKNOWN WORDS: | |
119498 ^nin/*nin$ | |
96881 ^ın/*ın$ | |
82561 ^nın/*nın$ | |
66451 ^d/*d$ | |
62944 ^a/*a$ | |
59557 ^nde/*nde$ | |
58118 ^nda/*nda$ | |
56944 ^align/*align$ | |
56718 ^center/*center$ | |
42788 ^i/*i$ | |
39632 ^nun/*nun$ | |
34430 ^he/*he$ | |
33372 ^colspan/*colspan$ | |
31157 ^ı/*ı$ | |
30527 ^na/*na$ | |
30206 ^dir/*dir$ | |
29703 ^the/*the$ | |
25298 ^dan/*dan$ | |
17530 ^ö/*ö$ | |
16704 ^s/*s$ | |
coverage: 62166742 / 71104730 (~0.87429826398328212483) | |
remaining unknown forms: 8937988 | |
wikipedia corpus size (tokens): 54337641 wiki.txt | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apertium-eng/bible.destxt <= cut -f2 https://github.com/taruen/apertiumpp-corpora/blob/master/eng/59-esv-english-standard-version.csv | apertium-destxt | |
apertium-rus/bible.destxt <= cut -f2 https://github.com/taruen/apertiumpp-corpora/blob/master/rus/1999-srp-2-sovremennyj-russkij-perevod-2-e-izd-dot-.csv | apertium-destxt | |
apertium-rus/bible.destxt <= cat ~/turkiccorpora/khk.bible.gospelgo.txt | apertium-destxt | |
eng kaz | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 749f844c19dfe247c687b0c4f9281a3459bd3be3 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
configure: WARNING: unrecognized options: --with-lang1 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
configure: WARNING: unrecognized options: --with-lang1 | |
test -z "eng-kaz.automorf.bin kaz-eng.automorf.bin eng-kaz.autogen.bin kaz-eng.autogen.bin eng-kaz.autogen.hfst eng-kaz.autobil.bin kaz-eng.autobil.bin eng-kaz.t1x.bin kaz-eng.t1x.bin eng-kaz.t2x.bin kaz-eng.t2x.bin eng-kaz.t3x.bin kaz-eng.t3x.bin eng-kaz.t4x.bin eng-kaz.rlx.bin kaz-eng.rlx.bin eng-kaz.lrx.bin kaz-eng.lrx.bin" || rm -f eng-kaz.automorf.bin kaz-eng.automorf.bin eng-kaz.autogen.bin kaz-eng.autogen.bin eng-kaz.autogen.hfst eng-kaz.autobil.bin kaz-eng.autobil.bin eng-kaz.t1x.bin kaz-eng.t1x.bin eng-kaz.t2x.bin kaz-eng.t2x.bin eng-kaz.t3x.bin kaz-eng.t3x.bin eng-kaz.t4x.bin eng-kaz.rlx.bin kaz-eng.rlx.bin eng-kaz.lrx.bin kaz-eng.lrx.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-comp lr apertium-eng-kaz.eng.dix .deps/eng.automorf.bin apertium-eng-kaz.eng.acx | |
apostrophes@preblank 61 75 | |
final@inconditional 120 497 | |
main@standard 57342 99505 | |
regexp@standard 141 6747 | |
apertium-validate-dictionary apertium-eng-kaz.eng-kaz.dix | |
lt-comp lr apertium-eng-kaz.eng-kaz.dix eng-kaz.autobil.bin | |
main@standard 86032 116889 | |
lt-trim .deps/eng.automorf.bin eng-kaz.autobil.bin eng-kaz.automorf.bin | |
apostrophes@preblank 61 75 | |
final@inconditional 121 499 | |
main@standard 57343 99729 | |
regexp@standard 141 6747 | |
apertium-validate-dictionary apertium-eng-kaz.eng-kaz.dix | |
lt-comp rl apertium-eng-kaz.eng-kaz.dix kaz-eng.autobil.bin | |
main@standard 86042 116921 | |
lt-print kaz-eng.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-eng.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-eng.autobil.att > .deps/kaz-eng.autobil.hfst | |
hfst-project -p upper .deps/kaz-eng.autobil.hfst > .deps/kaz-eng.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-eng.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-eng.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-eng.autobil.prefixes -o .deps/kaz-eng.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-eng.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-eng.automorf.trimmed -o .deps/kaz-eng.automorf.trimmed.att | |
lt-comp lr .deps/kaz-eng.automorf.trimmed.att kaz-eng.automorf.bin | |
main@standard 304161 679928 | |
final@inconditional 40 65 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.bin eng-kaz.autogen.bin | |
lt-comp rl apertium-eng-kaz.eng.dix kaz-eng.autogen.bin | |
final@inconditional 23 127 | |
main@standard 56652 97707 | |
regexp@standard 141 6747 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.hfst eng-kaz.autogen.hfst | |
apertium-validate-transfer apertium-eng-kaz.eng-kaz.t1x | |
apertium-preprocess-transfer apertium-eng-kaz.eng-kaz.t1x eng-kaz.t1x.bin | |
Warning (17043): Paths to rule 164 blocked by rule 163. | |
Warning (17069): Paths to rule 165 blocked by rule 163. | |
Warning (17762): Paths to rule 174 blocked by rule 19. | |
apertium-validate-transfer apertium-eng-kaz.kaz-eng.t1x | |
apertium-preprocess-transfer apertium-eng-kaz.kaz-eng.t1x kaz-eng.t1x.bin | |
Warning (7084): Paths to rule 63 blocked by rule 59. | |
Warning (7224): Paths to rule 68 blocked by rule 52. | |
Warning (11404): Paths to rule 124 blocked by rule 4. | |
Warning (11404): Paths to rule 124 blocked by rule 4. | |
Warning (11404): Paths to rule 124 blocked by rule 4. | |
Warning (11705): Paths to rule 127 blocked by rule 4. | |
Warning (11705): Paths to rule 127 blocked by rule 4. | |
Warning (11705): Paths to rule 127 blocked by rule 4. | |
Warning (11705): Paths to rule 127 blocked by rule 124. | |
Warning (11705): Paths to rule 127 blocked by rule 124. | |
Warning (11705): Paths to rule 127 blocked by rule 124. | |
Warning (13656): assignment to 'sl' side has no effect. | |
Warning (13754): assignment to 'sl' side has no effect. | |
Warning (13887): assignment to 'sl' side has no effect. | |
apertium-validate-interchunk apertium-eng-kaz.eng-kaz.t2x | |
apertium-preprocess-transfer apertium-eng-kaz.eng-kaz.t2x eng-kaz.t2x.bin | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (5310): Paths to rule 88 blocked by rule 69. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
Warning (8687): Paths to rule 150 blocked by rule 73. | |
apertium-validate-interchunk apertium-eng-kaz.kaz-eng.t2x | |
apertium-preprocess-transfer apertium-eng-kaz.kaz-eng.t2x kaz-eng.t2x.bin | |
apertium-validate-postchunk apertium-eng-kaz.eng-kaz.t3x | |
apertium-preprocess-transfer apertium-eng-kaz.eng-kaz.t3x eng-kaz.t3x.bin | |
apertium-validate-postchunk apertium-eng-kaz.kaz-eng.t3x | |
apertium-preprocess-transfer apertium-eng-kaz.kaz-eng.t3x kaz-eng.t3x.bin | |
apertium-validate-transfer apertium-eng-kaz.eng-kaz.t4x | |
apertium-preprocess-transfer apertium-eng-kaz.eng-kaz.t4x eng-kaz.t4x.bin | |
cg-comp apertium-eng-kaz.eng-kaz.rlx eng-kaz.rlx.bin | |
Sections: 1, Rules: 148, Sets: 154, Tags: 153 | |
4 rules cannot be skipped by index. | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-eng.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
lrx-comp apertium-eng-kaz.eng-kaz.lrx eng-kaz.lrx.bin | |
77: 1650@1828 | |
lrx-comp apertium-eng-kaz.kaz-eng.lrx kaz-eng.lrx.bin | |
97: 2263@2544 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage eng -> kaz | |
Number of tokenised words in the corpus: 821188 | |
Coverage: 96.15% | |
Top unknown words in the corpus: | |
1027 O | |
529 Moses | |
265 offerings | |
252 covenant | |
239 wilderness | |
237 cubits | |
235 righteous | |
220 Philistines | |
211 unclean | |
176 steadfast | |
157 lest | |
149 fathered | |
124 rejoice | |
122 firstborn | |
117 garments | |
116 Beth | |
116 Jeremiah | |
114 Samaria | |
106 Absalom | |
103 Esau | |
Translation time: 3.8052830696105957 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./eng-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage eng -> kaz | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-eng/wiki.destxt' | |
bible coverage kaz -> eng | |
Number of tokenised words in the corpus: 212236 | |
Coverage: 95.97% | |
Top unknown words in the corpus: | |
77 сай | |
71 іспетті | |
70 шомылдыру | |
66 яһудилер | |
65 парызшылдар | |
63 немесе | |
53 сиынып | |
50 Пилат | |
49 Жохан | |
48 бетер | |
48 әлгі | |
43 ертіп | |
43 бері | |
41 Яһудея | |
39 әзәзіл | |
36 гөр | |
36 яһудилердің | |
35 дүниелік | |
34 Матай | |
34 Уа | |
Translation time: 7.624895811080933 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-eng.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> eng | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2908 | |
Coverage: 93.60% | |
Top unknown words in the corpus: | |
8 оңт | |
3 VI | |
3 жж | |
3 одақтық | |
3 континенттік | |
2 тайпалық | |
2 ғ | |
2 жоспарлық | |
2 Беловеж | |
2 с | |
2 қоңыржай | |
2 ш | |
2 б | |
2 респ | |
2 жоғ | |
2 өкілеттігі | |
2 мореналық | |
2 қуаң | |
2 тен | |
2 ке | |
Translation time: 0.2980377674102783 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-eng.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
kaz rus | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit b4895d82b972c4fe2eb5755143296d06e60d102e | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-kaz from ../../apertium-languages/apertium-kaz/ | |
Using apertium-rus from ../../apertium-languages/apertium-rus/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "kaz-rus.autobil.bin kaz-rus.automorf.bin kaz-rus.autogen.bin kaz-rus.t1x.bin kaz-rus.t2x.bin kaz-rus.t3x.bin kaz-rus.t4x.bin rus-kaz.automorf.bin kaz-rus.autopgen.bin kaz-rus.lrx.bin rus-kaz.lrx.bin kaz-rus.rlx.bin rus-kaz.t1x.bin rus-kaz.t2x.bin rus-kaz.t3x.bin rus-kaz.t4x.bin rus-kaz.autobil.bin rus-kaz.autogen.hfst rus-kaz.rlx.bin" || rm -f kaz-rus.autobil.bin kaz-rus.automorf.bin kaz-rus.autogen.bin kaz-rus.t1x.bin kaz-rus.t2x.bin kaz-rus.t3x.bin kaz-rus.t4x.bin rus-kaz.automorf.bin kaz-rus.autopgen.bin kaz-rus.lrx.bin rus-kaz.lrx.bin kaz-rus.rlx.bin rus-kaz.t1x.bin rus-kaz.t2x.bin rus-kaz.t3x.bin rus-kaz.t4x.bin rus-kaz.autobil.bin rus-kaz.autogen.hfst rus-kaz.rlx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-kaz-rus.kaz-rus.dix | |
lt-comp lr apertium-kaz-rus.kaz-rus.dix kaz-rus.autobil.bin | |
main@standard 72363 99709 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print kaz-rus.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/kaz-rus.autobil.att | |
hfst-txt2fst -e ε < .deps/kaz-rus.autobil.att > .deps/kaz-rus.autobil.hfst | |
hfst-project -p upper .deps/kaz-rus.autobil.hfst > .deps/kaz-rus.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/kaz-rus.autobil.upper -2 .deps/any-symbol.hfst -o .deps/kaz-rus.autobil.prefixes | |
zcat ../../apertium-languages/apertium-kaz//kaz.automorf.att.gz | hfst-txt2fst > .deps/kaz.automorf.hfst | |
hfst-compose-intersect -1 .deps/kaz.automorf.hfst -2 .deps/kaz-rus.autobil.prefixes -o .deps/kaz-rus.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<ltr>") in | |
transducer in file .deps/kaz.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/kaz-rus.autobil.prefixes. | |
hfst-fst2txt -i .deps/kaz-rus.automorf.trimmed -o .deps/kaz-rus.automorf.trimmed.att | |
lt-comp lr .deps/kaz-rus.automorf.trimmed.att kaz-rus.automorf.bin | |
main@standard 277592 631605 | |
final@inconditional 40 66 | |
cp ../../apertium-languages/apertium-rus//rus.autogen.bin kaz-rus.autogen.bin | |
apertium-validate-transfer apertium-kaz-rus.kaz-rus.t1x | |
apertium-preprocess-transfer apertium-kaz-rus.kaz-rus.t1x kaz-rus.t1x.bin | |
Warning (2912): Paths to rule 8 blocked by rule 1. | |
Warning (4930): assignment to 'sl' side has no effect. | |
Warning (4930): assignment to 'sl' side has no effect. | |
Warning (5028): assignment to 'sl' side has no effect. | |
Warning (5028): assignment to 'sl' side has no effect. | |
Warning (5129): assignment to 'sl' side has no effect. | |
Warning (5129): assignment to 'sl' side has no effect. | |
Warning (5226): assignment to 'sl' side has no effect. | |
Warning (5226): assignment to 'sl' side has no effect. | |
Warning (5306): Paths to rule 43 blocked by rule 1. | |
Warning (5336): assignment to 'sl' side has no effect. | |
Warning (5336): assignment to 'sl' side has no effect. | |
Warning (5523): assignment to 'sl' side has no effect. | |
Warning (5523): assignment to 'sl' side has no effect. | |
Warning (5565): assignment to 'sl' side has no effect. | |
Warning (5565): assignment to 'sl' side has no effect. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5679): Paths to rule 50 blocked by rule 44. | |
Warning (5703): Paths to rule 51 blocked by rule 45. | |
Warning (5703): Paths to rule 51 blocked by rule 45. | |
Warning (5703): Paths to rule 51 blocked by rule 45. | |
Warning (5703): Paths to rule 51 blocked by rule 45. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8339): Paths to rule 93 blocked by rule 58. | |
Warning (8392): Paths to rule 94 blocked by rule 61. | |
Warning (8392): Paths to rule 94 blocked by rule 61. | |
Warning (8392): Paths to rule 94 blocked by rule 90. | |
Warning (8451): Paths to rule 95 blocked by rule 61. | |
Warning (8451): Paths to rule 95 blocked by rule 61. | |
Warning (8451): Paths to rule 95 blocked by rule 90. | |
Warning (8451): Paths to rule 95 blocked by rule 94. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 58. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (8538): Paths to rule 97 blocked by rule 60. | |
Warning (9240): Paths to rule 112 blocked by rule 63. | |
Warning (9240): Paths to rule 112 blocked by rule 63. | |
Warning (9240): Paths to rule 112 blocked by rule 63. | |
Warning (9240): Paths to rule 112 blocked by rule 63. | |
Warning (9260): Paths to rule 113 blocked by rule 66. | |
Warning (9260): Paths to rule 113 blocked by rule 66. | |
Warning (9260): Paths to rule 113 blocked by rule 66. | |
Warning (9260): Paths to rule 113 blocked by rule 66. | |
Warning (9331): Paths to rule 115 blocked by rule 56. | |
Warning (9412): Paths to rule 117 blocked by rule 116. | |
Warning (9451): Paths to rule 118 blocked by rule 114. | |
Warning (10056): Paths to rule 129 blocked by rule 91. | |
Warning (10056): Paths to rule 129 blocked by rule 59. | |
Warning (10056): Paths to rule 129 blocked by rule 59. | |
Warning (10056): Paths to rule 129 blocked by rule 59. | |
Warning (10150): Paths to rule 131 blocked by rule 73. | |
Warning (10150): Paths to rule 131 blocked by rule 73. | |
Warning (10150): Paths to rule 131 blocked by rule 73. | |
Warning (10260): Paths to rule 132 blocked by rule 96. | |
Warning (10260): Paths to rule 132 blocked by rule 96. | |
Warning (11165): Paths to rule 145 blocked by rule 1. | |
Warning (11345): Paths to rule 147 blocked by rule 1. | |
Warning (11345): Paths to rule 147 blocked by rule 1. | |
Warning (11345): Paths to rule 147 blocked by rule 18. | |
Warning (11345): Paths to rule 147 blocked by rule 33. | |
Warning (11345): Paths to rule 147 blocked by rule 42. | |
Warning (11345): Paths to rule 147 blocked by rule 145. | |
Warning (11345): Paths to rule 147 blocked by rule 145. | |
Warning (11345): Paths to rule 147 blocked by rule 145. | |
Warning (11345): Paths to rule 147 blocked by rule 145. | |
Warning (11372): assignment to 'sl' side has no effect. | |
Warning (11372): assignment to 'sl' side has no effect. | |
Warning (11404): Paths to rule 148 blocked by rule 1. | |
Warning (12802): Paths to rule 155 blocked by rule 1. | |
Warning (12802): Paths to rule 155 blocked by rule 45. | |
Warning (12802): Paths to rule 155 blocked by rule 45. | |
Warning (12802): Paths to rule 155 blocked by rule 46. | |
Warning (12802): Paths to rule 155 blocked by rule 152. | |
Warning (12802): Paths to rule 155 blocked by rule 45. | |
Warning (12802): Paths to rule 155 blocked by rule 46. | |
Warning (12802): Paths to rule 155 blocked by rule 45. | |
Warning (12802): Paths to rule 155 blocked by rule 154. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 6. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 44. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 47. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (12862): Paths to rule 156 blocked by rule 153. | |
Warning (13089): Paths to rule 158 blocked by rule 155. | |
Warning (13209): Paths to rule 159 blocked by rule 61. | |
Warning (13209): Paths to rule 159 blocked by rule 61. | |
Warning (13209): Paths to rule 159 blocked by rule 61. | |
Warning (13209): Paths to rule 159 blocked by rule 90. | |
Warning (13209): Paths to rule 159 blocked by rule 94. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13664): Paths to rule 165 blocked by rule 164. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13736): Paths to rule 167 blocked by rule 166. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 64. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
Warning (13776): Paths to rule 168 blocked by rule 65. | |
apertium-validate-interchunk apertium-kaz-rus.kaz-rus.t2x | |
apertium-preprocess-transfer apertium-kaz-rus.kaz-rus.t2x kaz-rus.t2x.bin | |
apertium-validate-interchunk apertium-kaz-rus.kaz-rus.t3x | |
apertium-preprocess-transfer apertium-kaz-rus.kaz-rus.t3x kaz-rus.t3x.bin | |
apertium-validate-postchunk apertium-kaz-rus.kaz-rus.t4x | |
apertium-preprocess-transfer apertium-kaz-rus.kaz-rus.t4x kaz-rus.t4x.bin | |
cp ../../apertium-languages/apertium-rus//rus.automorf.bin rus-kaz.automorf.bin | |
apertium-validate-dictionary ../../apertium-languages/apertium-rus//apertium-rus.post-rus.dix | |
lt-comp lr ../../apertium-languages/apertium-rus//apertium-rus.post-rus.dix kaz-rus.autopgen.bin | |
main@standard 18 74 | |
lrx-comp apertium-kaz-rus.kaz-rus.lrx kaz-rus.lrx.bin | |
33: 951@1055 | |
lrx-comp apertium-kaz-rus.rus-kaz.lrx rus-kaz.lrx.bin | |
22: 505@559 | |
cg-comp ../../apertium-languages/apertium-kaz//apertium-kaz.kaz.rlx kaz-rus.rlx.bin | |
Sections: 3, Rules: 150, Sets: 204, Tags: 234 | |
1 rules cannot be skipped by index. | |
apertium-validate-transfer apertium-kaz-rus.rus-kaz.t1x | |
apertium-preprocess-transfer apertium-kaz-rus.rus-kaz.t1x rus-kaz.t1x.bin | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (7092): Paths to rule 85 blocked by rule 83. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (8795): Paths to rule 119 blocked by rule 5. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9593): Paths to rule 132 blocked by rule 13. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (9938): Paths to rule 139 blocked by rule 9. | |
Warning (11313): Paths to rule 157 blocked by rule 62. | |
apertium-validate-interchunk apertium-kaz-rus.rus-kaz.t2x | |
apertium-preprocess-transfer apertium-kaz-rus.rus-kaz.t2x rus-kaz.t2x.bin | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1495): Paths to rule 30 blocked by rule 17. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
Warning (1548): Paths to rule 31 blocked by rule 29. | |
apertium-validate-postchunk apertium-kaz-rus.rus-kaz.t3x | |
apertium-preprocess-transfer apertium-kaz-rus.rus-kaz.t3x rus-kaz.t3x.bin | |
apertium-validate-transfer apertium-kaz-rus.rus-kaz.t4x | |
apertium-preprocess-transfer apertium-kaz-rus.rus-kaz.t4x rus-kaz.t4x.bin | |
apertium-validate-dictionary apertium-kaz-rus.kaz-rus.dix | |
lt-comp rl apertium-kaz-rus.kaz-rus.dix rus-kaz.autobil.bin | |
main@standard 72340 99688 | |
cp ../../apertium-languages/apertium-kaz//kaz.autogen.hfst rus-kaz.autogen.hfst | |
cg-comp ../../apertium-languages/apertium-rus//apertium-rus.rus.rlx rus-kaz.rlx.bin | |
Sections: 4, Rules: 309, Sets: 441, Tags: 572 | |
47 rules cannot be skipped by index. | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage kaz -> rus | |
Number of tokenised words in the corpus: 211751 | |
Coverage: 93.13% | |
Top unknown words in the corpus: | |
1268 Иса | |
323 Мәсіх | |
284 Исаның | |
246 Мәсіхтің | |
175 Исаға | |
156 жоқ | |
151 Исаны | |
150 Петір | |
138 Осылай | |
136 Пауыл | |
129 Таурат | |
103 Мәсіхке | |
101 осылай | |
85 біреу | |
83 әркім | |
82 еш | |
79 Осылайша | |
79 Мұса | |
77 яһуди | |
74 шақырып | |
Translation time: 7.587065696716309 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-rus.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage kaz -> rus | |
Error: Malformed input stream.Number of tokenised words in the corpus: 2937 | |
Coverage: 91.90% | |
Top unknown words in the corpus: | |
8 оңт | |
6 жылғы | |
5 ның | |
5 солт | |
4 саяси | |
3 ге | |
3 жж | |
3 ядролық | |
2 мыңжылдық | |
2 тайпалық | |
2 әр | |
2 жоспарлық | |
2 РКФСР | |
2 Минск | |
2 Беловеж | |
2 Тәжікстан | |
2 ны | |
2 с | |
2 е | |
2 ш | |
Translation time: 0.2721889019012451 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./kaz-rus.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage rus -> kaz | |
Number of tokenised words in the corpus: 175392 | |
Coverage: 98.76% | |
Top unknown words in the corpus: | |
38 Пилат | |
37 Моисей | |
32 Израиля | |
31 Симон | |
29 Авраама | |
29 Иакова | |
27 Авраам | |
24 Иаков | |
24 Моисея | |
23 н | |
20 ниц | |
19 Мариам | |
17 Илия | |
17 Савл | |
16 Симона | |
15 Иису | |
15 вовеки | |
14 й | |
14 са | |
14 Варнава | |
Translation time: 11.233875036239624 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./rus-kaz.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage rus -> kaz | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-rus/wiki.destxt' | |
tat eng | |
Bereits auf 'master' | |
M streamparser | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 19e9e143d378e1eb0166aa806bf62c1d0071abbd | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
Using apertium-eng from ../../apertium-languages/apertium-eng/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tat-eng.automorf.bin tat-eng.prob tat-eng.rlx.bin tat-eng.mb.rlx.bin tat-eng.autobil.bin tat-eng.autolex.bin tat-eng.autogen.bin tat-eng.autopgen.bin tat-eng.t1x.bin tat-eng.t2x.bin tat-eng.t3x.bin eng-tat.automorf.bin eng-tat.prob eng-tat.rlx.bin eng-tat.autobil.bin eng-tat.autolex.bin eng-tat.autogen.bin eng-tat.autopgen.bin eng-tat.t1x.bin eng-tat.t2x.bin eng-tat.t3x.bin" || rm -f tat-eng.automorf.bin tat-eng.prob tat-eng.rlx.bin tat-eng.mb.rlx.bin tat-eng.autobil.bin tat-eng.autolex.bin tat-eng.autogen.bin tat-eng.autopgen.bin tat-eng.t1x.bin tat-eng.t2x.bin tat-eng.t3x.bin eng-tat.automorf.bin eng-tat.prob eng-tat.rlx.bin eng-tat.autobil.bin eng-tat.autolex.bin eng-tat.autogen.bin eng-tat.autopgen.bin eng-tat.t1x.bin eng-tat.t2x.bin eng-tat.t3x.bin | |
rm -rf .deps modes | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
/bin/zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
apertium-validate-dictionary apertium-tat-eng.tat-eng.dix | |
lt-comp lr apertium-tat-eng.tat-eng.dix tat-eng.autobil.bin | |
main@standard 32918 47221 | |
lt-print tat-eng.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-eng.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-eng.autobil.att > .deps/tat-eng.autobil.hfst | |
hfst-project -p upper .deps/tat-eng.autobil.hfst > .deps/tat-eng.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-eng.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-eng.autobil.prefixes | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-eng.autobil.prefixes -o .deps/tat-eng.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-eng.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-eng.automorf.trimmed -o .deps/tat-eng.automorf.trimmed.att | |
lt-comp lr .deps/tat-eng.automorf.trimmed.att tat-eng.automorf.bin | |
main@standard 118878 217610 | |
final@inconditional 26 35 | |
cp ../../apertium-languages/apertium-tat//tat.prob tat-eng.prob | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-eng.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.mb.rlx tat-eng.mb.rlx.bin | |
Sections: 1, Rules: 6, Sets: 10, Tags: 105 | |
lrx-comp apertium-tat-eng.tat-eng.lrx tat-eng.autolex.bin | |
13: 211@236 | |
cp ../../apertium-languages/apertium-eng//eng.autogen.bin tat-eng.autogen.bin | |
cp ../../apertium-languages/apertium-tat//tat.autopgen.bin tat-eng.autopgen.bin | |
apertium-validate-transfer apertium-tat-eng.tat-eng.t1x | |
apertium-preprocess-transfer apertium-tat-eng.tat-eng.t1x tat-eng.t1x.bin | |
apertium-validate-interchunk apertium-tat-eng.tat-eng.t2x | |
apertium-preprocess-transfer apertium-tat-eng.tat-eng.t2x tat-eng.t2x.bin | |
apertium-validate-postchunk apertium-tat-eng.tat-eng.t3x | |
apertium-preprocess-transfer apertium-tat-eng.tat-eng.t3x tat-eng.t3x.bin | |
cp ../../apertium-languages/apertium-eng//eng.automorf.bin eng-tat.automorf.bin | |
cp ../../apertium-languages/apertium-eng//eng.prob eng-tat.prob | |
cg-comp ../../apertium-languages/apertium-eng//apertium-eng.eng.rlx eng-tat.rlx.bin | |
Sections: 1, Rules: 203, Sets: 85, Tags: 119 | |
1 rules cannot be skipped by index. | |
apertium-validate-dictionary apertium-tat-eng.tat-eng.dix | |
lt-comp rl apertium-tat-eng.tat-eng.dix eng-tat.autobil.bin | |
main@standard 32918 47221 | |
lrx-comp apertium-tat-eng.eng-tat.lrx eng-tat.autolex.bin | |
13: 211@236 | |
cp ../../apertium-languages/apertium-tat//tat.autogen.bin eng-tat.autogen.bin | |
cp ../../apertium-languages/apertium-eng//eng.autopgen.bin eng-tat.autopgen.bin | |
apertium-validate-transfer apertium-tat-eng.eng-tat.t1x | |
apertium-preprocess-transfer apertium-tat-eng.eng-tat.t1x eng-tat.t1x.bin | |
apertium-validate-interchunk apertium-tat-eng.eng-tat.t2x | |
apertium-preprocess-transfer apertium-tat-eng.eng-tat.t2x eng-tat.t2x.bin | |
apertium-validate-postchunk apertium-tat-eng.eng-tat.t3x | |
apertium-preprocess-transfer apertium-tat-eng.eng-tat.t3x eng-tat.t3x.bin | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
apertium-createmodes.awk: modes/tat-eng-disam.mode seen twice | |
apertium-createmodes.awk: modes/@tat-eng-disam.mode seen twice | |
lt-comp lr .deps/tat.automorf.bin.att .deps/tat.automorf.bin | |
main@standard 242055 497437 | |
final@inconditional 805 1769 | |
bible coverage tat -> eng | |
Number of tokenised words in the corpus: 193605 | |
Coverage: 83.37% | |
Top unknown words in the corpus: | |
607 алар | |
551 сез | |
511 ә | |
427 Ә | |
420 чөнки | |
419 аны | |
400 сезгә | |
390 Чөнки | |
384 Алар | |
370 аларга | |
349 сезнең | |
337 Әмма | |
314 янына | |
299 инде | |
295 аңа | |
288 Изге | |
264 Аны | |
256 Сез | |
245 бәлки | |
237 Аңа | |
Translation time: 3.9440994262695312 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-eng.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> eng | |
Error: Malformed input stream.Number of tokenised words in the corpus: 23 | |
Coverage: 39.13% | |
Top unknown words in the corpus: | |
3 Tatnet | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 Tatar | |
1 İnternetı | |
1 Tatarstan | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.05642390251159668 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-eng.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage eng -> tat | |
Number of tokenised words in the corpus: 794831 | |
Coverage: 97.42% | |
Top unknown words in the corpus: | |
1027 O | |
493 behold | |
441 Behold | |
233 Levites | |
196 toward | |
151 Moab | |
135 Manasseh | |
122 firstborn | |
117 Hezekiah | |
106 Absalom | |
103 Esau | |
96 Gilead | |
90 shekels | |
89 Ammonites | |
85 Edom | |
83 Baal | |
82 Jeroboam | |
80 Ahab | |
77 Jehoshaphat | |
76 Gentiles | |
Translation time: 6.163485288619995 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./eng-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage eng -> tat | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-eng/wiki.destxt' | |
tat rus | |
Bereits auf 'master' | |
Ihr Branch ist auf demselben Stand wie 'origin/master'. | |
Bereits aktuell. | |
commit 738faa8609d84f29e61710c7901bb9bce07013f9 | |
configure.ac:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: | |
configure.ac:4: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether ln -s works... yes | |
checking for gawk... (cached) gawk | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking for APERTIUM... yes | |
checking for hfst-lexc... /usr/bin/hfst-lexc | |
checking for hfst-twolc... /usr/bin/hfst-twolc | |
checking for cg-comp... /usr/bin/cg-comp | |
checking for cg-proc... /usr/bin/cg-proc | |
checking for lrx-comp... /usr/bin/lrx-comp | |
checking for lrx-proc... /usr/bin/lrx-proc | |
checking for gzcat... no | |
checking for zcat... /bin/zcat | |
Using apertium-tat from ../../apertium-languages/apertium-tat/ | |
Using apertium-rus from ../../apertium-languages/apertium-rus/ | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
test -z "tat-rus.autobil.bin tat-rus.automorf.bin tat-rus.autogen.bin tat-rus.t1x.bin tat-rus.t2x.bin tat-rus.t3x.bin tat-rus.t4x.bin rus-tat.automorf.bin tat-rus.autopgen.bin tat-rus.lrx.bin tat-rus.rlx.bin " || rm -f tat-rus.autobil.bin tat-rus.automorf.bin tat-rus.autogen.bin tat-rus.t1x.bin tat-rus.t2x.bin tat-rus.t3x.bin tat-rus.t4x.bin rus-tat.automorf.bin tat-rus.autopgen.bin tat-rus.lrx.bin tat-rus.rlx.bin | |
rm -rf .deps modes | |
apertium-validate-dictionary apertium-tat-rus.tat-rus.dix | |
lt-comp lr apertium-tat-rus.tat-rus.dix tat-rus.autobil.bin | |
main@standard 14246 20061 | |
/bin/mkdir -p .deps | |
touch .deps/.d | |
lt-print tat-rus.autobil.bin | sed 's/ /@_SPACE_@/g' > .deps/tat-rus.autobil.att | |
hfst-txt2fst -e ε < .deps/tat-rus.autobil.att > .deps/tat-rus.autobil.hfst | |
hfst-project -p upper .deps/tat-rus.autobil.hfst > .deps/tat-rus.autobil.upper | |
echo " ?* " | hfst-regexp2fst > .deps/any-symbol.hfst | |
hfst-concatenate -1 .deps/tat-rus.autobil.upper -2 .deps/any-symbol.hfst -o .deps/tat-rus.autobil.prefixes | |
zcat ../../apertium-languages/apertium-tat//tat.automorf.att.gz | hfst-txt2fst > .deps/tat.automorf.hfst | |
hfst-compose-intersect -1 .deps/tat.automorf.hfst -2 .deps/tat-rus.autobil.prefixes -o .deps/tat-rus.automorf.trimmed | |
hfst-compose-intersect: warning: | |
Found output multi-char symbols ("<punct>") in | |
transducer in file .deps/tat.automorf.hfst which are not found on the | |
input tapes of transducers in file .deps/tat-rus.autobil.prefixes. | |
hfst-fst2txt -i .deps/tat-rus.automorf.trimmed -o .deps/tat-rus.automorf.trimmed.att | |
lt-comp lr .deps/tat-rus.automorf.trimmed.att tat-rus.automorf.bin | |
main@standard 70148 125004 | |
final@inconditional 752 1602 | |
cp ../../apertium-languages/apertium-rus//rus.autogen.bin tat-rus.autogen.bin | |
apertium-validate-transfer apertium-tat-rus.tat-rus.t1x | |
apertium-preprocess-transfer apertium-tat-rus.tat-rus.t1x tat-rus.t1x.bin | |
apertium-validate-interchunk apertium-tat-rus.tat-rus.t2x | |
apertium-preprocess-transfer apertium-tat-rus.tat-rus.t2x tat-rus.t2x.bin | |
apertium-validate-interchunk apertium-tat-rus.tat-rus.t3x | |
apertium-preprocess-transfer apertium-tat-rus.tat-rus.t3x tat-rus.t3x.bin | |
apertium-validate-postchunk apertium-tat-rus.tat-rus.t4x | |
apertium-preprocess-transfer apertium-tat-rus.tat-rus.t4x tat-rus.t4x.bin | |
cp ../../apertium-languages/apertium-rus//rus.autogen.bin rus-tat.automorf.bin | |
apertium-validate-dictionary ../../apertium-languages/apertium-rus//apertium-rus.post-rus.dix | |
lt-comp lr ../../apertium-languages/apertium-rus//apertium-rus.post-rus.dix tat-rus.autopgen.bin | |
main@standard 18 74 | |
lrx-comp apertium-tat-rus.tat-rus.lrx tat-rus.lrx.bin | |
63: 934@1043 | |
cg-comp ../../apertium-languages/apertium-tat//apertium-tat.tat.rlx tat-rus.rlx.bin | |
Sections: 11, Rules: 123, Sets: 154, Tags: 194 | |
apertium-validate-modes modes.xml | |
apertium-gen-modes modes.xml | |
bible coverage tat -> rus | |
Number of tokenised words in the corpus: 194388 | |
Coverage: 90.88% | |
Top unknown words in the corpus: | |
420 чөнки | |
403 Мәсих | |
390 Чөнки | |
290 Раббы | |
190 Паул | |
177 Әгәр | |
159 Петер | |
159 яки | |
112 яһүдләр | |
108 берсе | |
100 ләкин | |
96 Ләкин | |
91 Раббыбыз | |
91 яһүд | |
90 шаһитлек | |
89 Мәсихнең | |
80 әллә | |
76 Раббының | |
73 Иерусалимга | |
69 руханилар | |
Translation time: 4.780414581298828 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-rus.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage tat -> rus | |
Error: Malformed input stream.Number of tokenised words in the corpus: 26 | |
Coverage: 46.15% | |
Top unknown words in the corpus: | |
3 Tatnet | |
1 Tatarça | |
1 İnternet | |
1 tulısınça | |
1 Tatar | |
1 İnternetı | |
1 Tatarstan | |
1 Respublikası | |
1 däwlät | |
1 tellärendä | |
1 tatar | |
1 häm | |
Translation time: 0.03628134727478027 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./tat-rus.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
bible coverage rus -> tat | |
Number of tokenised words in the corpus: 125986 | |
Coverage: 0.00% | |
Top unknown words in the corpus: | |
5449 и | |
2793 в | |
2547 не | |
1996 что | |
1238 с | |
1160 на | |
964 Он | |
863 И | |
841 к | |
802 Я | |
794 а | |
775 кто | |
770 они | |
765 вы | |
761 из | |
744 как | |
697 я | |
686 Иисус | |
672 все | |
646 Его | |
Translation time: 0.7320828437805176 seconds | |
Generating hitparade (might take a bit)! | |
Could not open transducer file ./rus-tat.automorf.hfst | |
TOP UNKNOWN WORDS: | |
coverage: 0 / 0 (Error 10002) | |
remaining unknown forms: 0 | |
wikipedia coverage rus -> tat | |
[Errno 2] No such file or directory: '../../apertium-languages/apertium-rus/wiki.destxt' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment