utt/nawszelkiwypadek/tools/gue_dic
2008-03-11 12:54:35 +00:00
..
attr.pm git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
canon.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
compile_user_dict.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
count_prefs.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
cut_prefs.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
gue.bin git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
labels.lab git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
labels.scl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
labels.sym git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
makeLabels.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
prep_user_dict.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
prep.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
README git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
rmDup.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
stat_pre.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00:00
stat.pl git-svn-id: svn://atos.wmid.amu.edu.pl/utt@3 e293616e-ec6a-49c2-aa92-f4a8b91c5d16 2008-03-11 12:54:35 +00: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.