- Timestamp:
- 04/23/08 16:48:12 (17 years ago)
- Branches:
- master, help
- Children:
- 19dfa5c
- Parents:
- cfed5c1
- git-author:
- pawelk <pawelk@…> (04/23/08 16:48:12)
- git-committer:
- pawelk <pawelk@…> (04/23/08 16:48:12)
- Location:
- app
- Files:
-
- 6 added
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
app/conf/cor.conf
rf1563c0 ra5fdde9 1 # Plik konfiguracyjny dla komponentu cor. 2 3 # kazda linia ma postac: 4 # nazwa_parametru [=] wartosc 5 6 # PRZYKLAD: analizuj tylko slowa 7 # p = W 1 # ************************************************************ 2 # * This file was created automatically during installation. * 3 # * If you don't need do not change it. * 4 # * * 5 # * UAM Text Tools * 6 # * Adam Mickiewicz University, Poland * 7 # * http://utt.amu.edu.pl * 8 # ************************************************************ 9 # 10 # All lines must looks like: 11 # parameter_name [=] value 12 # 13 dictionary-home = /usr/local/share/utt 14 process = W -
app/conf/gue.conf
rf1563c0 ra5fdde9 1 # Plik konfiguracyjny dla komponentu gue. 2 3 # kazda linia ma postac: 4 # nazwa_parametru [=] wartosc 5 6 # PRZYKLAD: analizuj tylko slowa 7 # p = W 8 1 # ************************************************************ 2 # * This file was created automatically during installation. * 3 # * If you don't need do not change it. * 4 # * * 5 # * UAM Text Tools * 6 # * Adam Mickiewicz University, Poland * 7 # * http://utt.amu.edu.pl * 8 # ************************************************************ 9 # 10 # All lines must looks like: 11 # parameter_name [=] value 12 # -
app/conf/lem.conf
rf1563c0 ra5fdde9 1 # Plik konfiguracyjny dla komponentu lem. 2 3 # kazda linia ma postac: 4 # nazwa_parametru [=] wartosc 5 6 # PRZYKLAD: analizuj tylko slowa 7 # p = W 1 # ************************************************************ 2 # * This file was created automatically during installation. * 3 # * If you don't need do not change it. * 4 # * * 5 # * UAM Text Tools * 6 # * Adam Mickiewicz University, Poland * 7 # * http://utt.amu.edu.pl * 8 # ************************************************************ 9 # 10 # All lines must looks like: 11 # parameter_name [=] value 12 # 13 dictionary-home = /usr/local/share/utt 14 process = W -
app/dist/common/utt_make_config.pl
rff0fc99 ra5fdde9 14 14 conf_utt(catfile($usr_home, 'utt.conf'), $sys_home); 15 15 16 conf_compiledic(catfile($usr_home, 'compiledic.conf'), $sys_home); 16 17 conf_cor(catfile($usr_home, 'cor.conf'), $sys_home); 17 conf_kor(catfile($usr_home, 'kor.conf'), $sys_home); 18 conf_compiledic(catfile($usr_home, 'compiledic.conf'), $sys_home); 18 conf_dgc(catfile($usr_home, 'dgc.conf'), $sys_home); 19 19 conf_grp(catfile($usr_home, 'grp.conf'), $sys_home); 20 20 conf_gue(catfile($usr_home, 'gue.conf'), $sys_home); 21 conf_kor(catfile($usr_home, 'kor.conf'), $sys_home); 21 22 conf_lem(catfile($usr_home, 'lem.conf'), $sys_home); 22 23 conf_ser(catfile($usr_home, 'ser.conf'), $sys_home); 23 conf_dgc(catfile($usr_home, 'dgc.conf'), $sys_home);24 24 25 25 print "UTT user configuration created in $usr_home\n"; … … 34 34 35 35 if(-d $dir) { 36 print "Old configuration detected. ";37 my $cnt = unlink <$dir/*>;38 print "($cnt files deleted)\n";36 print "Old configuration detected. "; 37 my $cnt = unlink <$dir/*>; 38 print "($cnt files deleted)\n"; 39 39 } 40 40 else { 41 print "Creating directory $dir\n";42 if(1 != mkdir $dir) {43 die "Unable to create UTT user configuration!\n";44 }41 print "Creating directory $dir\n"; 42 if(1 != mkdir $dir) { 43 die "Unable to create UTT user configuration!\n"; 44 } 45 45 } 46 46 } … … 108 108 print FILE makeConfigHeader(); 109 109 print FILE "dictionary-home=", abs_path("$utthome/share/utt"), "\n"; 110 print FILE "weights=", abs_path("$utthome/lib/utt/weights. cor"), "\n";110 print FILE "weights=", abs_path("$utthome/lib/utt/weights.kor"), "\n"; 111 111 print FILE "threshold=1.0\n"; 112 112 -
app/dist/struktura.txt
rff0fc99 ra5fdde9 33 33 /usr/local/etc/utt/grp.conf 34 34 /usr/local/etc/utt/gue.conf 35 /usr/local/etc/utt/kor.conf 35 36 /usr/local/etc/utt/kot.conf 36 37 /usr/local/etc/utt/lem.conf … … 53 54 /usr/local/lib/utt/ser.l.template 54 55 /usr/local/lib/utt/terms.m4 55 /usr/local/lib/utt/weights. cor56 /usr/local/lib/utt/weights.kor 56 57 /usr/local/lib/utt/seg.rb 57 58 /usr/local/lib/utt/cats.dgc -
app/src/dgp/Makefile
rcfed5c1 ra5fdde9 44 44 # ponizsza linijka jest do usuniecia 45 45 cp go attr.pm seg.rb $(UTT_BIN_DIR)/ 46 cp $(LIB_PATH)/*.dgc $(UTT_BIN_DIR)/../lib/utt/47 46 endif
Note: See TracChangeset
for help on using the changeset viewer.