The Urls in its 'readme' file is not valid (http://www.fjoch.com/mkcls.html and http://www.fjoch.com/GIZA++.html). Is there a good tutorial about giza++? Or is there some alternatives that have complete documentation?
feedback
|
|
The following is excerpted from a tutorial I'm putting together for a class. I'll post a link when I have something more. (NB: This assumes you have successfully installed GIZA++-v2 on a *nix system.) 1) Start with two data files containing parallel sentences, one sentence per line. For example, a pair of parallel English-French files might read as follows. Sample 1 - train.en
Sample 2 - train.fr
2) Run these files through plain2snt.out to get target and source vocabulary files (.vcb) as well as a sentence pair file (.snt). From the GIZA++ directory, run:
where TEXT1 and TEXT2 are the data files described in step 1. This produces four files in the same directory as TEXT1 and TEXT2 (assuming they are in the same directory):
The vocab files contain a unique (integer) ID for each word in the text (NB: not tokenized/lemmatized), the word/string, and the number of times that string occurred. These are separated by a single space character. The sentence files contain numbers. For each sentence pair, there are three lines: the first is a count of the number of times that sentence pair occurs in the corpus and the second and third are a string of (space-separated) numbers corresponding to the entries for words in the vocab files. Based on the naming convention for *.snt files, the first file is assumed to be the source, and the second is assumed to be the target language. For example, in the file TEXT1_TEXT2.snt, the first line will be a count of the number of times the first sentence-pair occurred in the corpus, the second line will be a string of numbers corresponding to words in the TEXT1.vcb file, and the third line will be a string of numbers corresponding to words in the TEXT2.vcb file. (NB: There are samples of this format at http://code.google.com/p/giza-pp/issues/attachmentText?id=8&aid=697742396599277757&name=README-rst&token=40fba3d449abc12366b98b04cfe7dbc1 .) 3) Now TEXT1.vcb, TEXT2.vcb, and either of the two *.snt files can be used as input to GIZA++ to produce an alignment. For example:
But note that when I tried to run this, I had to rename TEXT1_TEXT2.snt to something without an underscore in the name in order to get any proper output. | |||
|
feedback
|
|
This one maybe ? Full source : http://code.google.com/p/giza-pp/issues/detail?id=8 | |||
|
feedback
|
|
There is a supplemental explanation of how to format input files and how to run GIZA++ over here: http://www.tc.umn.edu/~bthomson/wordalignment/GIZAREADME.txt | |||
|
feedback
|