utt/_old/nawszelkiwypadek/tools/gue_dic
2010-10-26 10:57:54 +02:00
..
attr.pm Move old files to _old dir. 2009-10-17 14:48:21 +02:00
canon.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
compile_user_dict.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
count_prefs.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
cut_prefs.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
gue.bin Move old files to _old dir. 2009-10-17 14:48:21 +02:00
labels.lab Move old files to _old dir. 2009-10-17 14:48:21 +02:00
labels.scl Move old files to _old dir. 2009-10-17 14:48:21 +02:00
labels.sym Move old files to _old dir. 2009-10-17 14:48:21 +02:00
makeLabels.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
prep_user_dict.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
prep.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
README Move old files to _old dir. 2009-10-17 14:48:21 +02:00
rmDup.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
stat_pre.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00
stat.pl Replacing old implementation with working implementation 2010-10-26 10:57:54 +02:00

How to prepare gue dictionary?

1. Preparing input file.

Lines in input file should look like this:

prefix*suffix~weight;description

where:
prefix - is the prefix of a word
suffix - is the suffix of a word
weight - is the weight saying how importand information in this line is
description - is a description of the word
	(in any format - description will be in output of gue)


2. Compiling a dictionary.

Let's say we have input file named "dict.in".
Commands compiling dictionary:

prep_user_dict.pl < dict.in > dict.temp
compile_user_dict.pl dict.temp

Those should create file called "gue.bin" which is dictionary
for gue component.

Good luck.