diff options
| author | Chris Dyer <redpony@gmail.com> | 2013-11-13 18:08:03 -0800 | 
|---|---|---|
| committer | Chris Dyer <redpony@gmail.com> | 2013-11-13 18:08:03 -0800 | 
| commit | f2fb69b10a897e8beb4e6e6d6cbb4327096235ef (patch) | |
| tree | bb14849f101a9e96939ec73c8d82ef40c128a435 /word-aligner/makefiles/makefile.grammars | |
| parent | 9972fc6db6bd816f464dff90741c36f6be137f96 (diff) | |
| parent | 8bdea2036a924302a569722359106a2d8a51fb17 (diff) | |
Merge pull request #29 from wammar/wordpairfeatures2
1) fix the call to ibm model 1 aligner, 2) create a makefile target for ...
Diffstat (limited to 'word-aligner/makefiles/makefile.grammars')
| -rw-r--r-- | word-aligner/makefiles/makefile.grammars | 12 | 
1 files changed, 7 insertions, 5 deletions
| diff --git a/word-aligner/makefiles/makefile.grammars b/word-aligner/makefiles/makefile.grammars index 8d3ea8cb..1db516f1 100644 --- a/word-aligner/makefiles/makefile.grammars +++ b/word-aligner/makefiles/makefile.grammars @@ -19,6 +19,8 @@ MAKE_LEX_GRAMMAR = $(SUPPORT_DIR)/make_lex_grammar.pl  MODEL1 = $(SCRIPT_DIR)/fast_align  MERGE_CORPUS = $(SUPPORT_DIR)/merge_corpus.pl +USE_AFFIXES = 0 +  e.voc: corpus.e  	$(EXTRACT_VOCAB) < corpus.e > $@ @@ -66,20 +68,20 @@ corpus.e-f: corpus.f corpus.e  	$(MERGE_CORPUS) corpus.e corpus.f > $@  corpus.f-e.model1: corpus.f-e -	$(MODEL1) -p -v -i corpus.f-e > $@ +	$(MODEL1) -p corpus.f-e.model1 -v -i corpus.f-e > $@  corpus.e-f.model1: corpus.e-f -	$(MODEL1) -p -v -V -i corpus.e-f > $@ +	$(MODEL1) -p corpus.e-f.model1 -v -V -i corpus.e-f > $@  corpus.f-e.full-model1: corpus.f-e -	$(MODEL1) -p -t -999999 -v -V -i corpus.f-e > $@ +	$(MODEL1) -p corpus.f-e.full-model1 -t -999999 -v -V -i corpus.f-e > $@  corpus.e-f.full-model1: corpus.e-f -	$(MODEL1) -p -t -999999 -v -V -i corpus.e-f > $@ +	$(MODEL1) -p corpus.e-f.full-model1 -t -999999 -v -V -i corpus.e-f > $@  corpus.f-e.lex-grammar.gz: corpus.f-e corpus.f-e.model1 corpus.e-f.model1  	$(MAKE_LEX_GRAMMAR) corpus.f-e corpus.f-e.model1 corpus.e-f.model1 | $(GZIP) -9 > $@  wordpairs.f-e.features.gz: corpus.f-e corpus.f-e.full-model1 corpus.e-f.full-model1 orthonorm-dict.f orthonorm-dict.e voc2class.e voc2class.f corpus.f-e.model1 -	$(GENERATE_WORDPAIR_FEATURES) corpus.f-e corpus.f-e.full-model1 corpus.e-f.full-model1 orthonorm-dict.f orthonorm-dict.e voc2class.e voc2class.f corpus.f-e.model1 | $(GZIP) -9 > $@ +	$(GENERATE_WORDPAIR_FEATURES) corpus.f-e corpus.f-e.full-model1 corpus.e-f.full-model1 orthonorm-dict.f orthonorm-dict.e voc2class.e voc2class.f corpus.f-e.model1 $(USE_AFFIXES) $(USE_AFFIXES) | $(GZIP) -9 > $@ | 
