Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Jamfile « training « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ca408d079ba17d1a97fdf4921690bd47e775374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build-project compact-rule-table ;
build-project phrase-extract ;
build-project lexical-reordering ;
build-project symal ;

if $(WITH-GIZA) != no || $(CLEANING) != no {
  make train-model.perl : train-model.perl.missing_bin_dir : @missing_bin_dir ;
  actions missing_bin_dir {
    sed 's#^my \$BINDIR\s*=.*#my\ \$BINDIR=\"$(WITH-GIZA)\";#' $(>) >$(<)
    chmod +x $(<)
  }

  install legacy : train-model.perl : <location>. ;
}